:root {
    --primary-gold: #d4af37;
    --deep-navy: #1a1f36;
    --soft-cream: #f8f5f0;
    --charcoal: #2d3748;
    --light-gray: #e2e8f0;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--soft-cream);
    color: var(--charcoal);
    line-height: 1.6;
  }
  
  .hero-section {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #2d3748 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1544468266-6a8948001c78?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.1;
  }
  
  .fragrance-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: none;
  }
  
  .fragrance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  }
  
  .fragrance-image {
    height: 400px;
    object-fit: contain;
    object-position: center;
    width: 100%;
    display: block;
  }
  
  /* Ensure image container maintains aspect ratio */
  .fragrance-card .col-md-6:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  /* Responsive image sizing */
  @media (max-width: 768px) {
    .fragrance-image {
      height: 300px;
    }
  }
  
  @media (max-width: 576px) {
    .fragrance-image {
      height: 250px;
    }
  }
  
  .fragrance-brand {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  
  .fragrance-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
  }
  
  .notes-section {
    background: var(--soft-cream);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
  }
  
  .note-category {
    margin-bottom: 2rem;
  }
  
  .note-category:last-child {
    margin-bottom: 0;
  }
  
  .note-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 0.5rem;
    display: inline-block;
  }
  
  .note-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  
  .note-badge {
    display: inline-flex;           /* makes it flexible for layout */
    align-items: center;            /* vertically centers image + text */
    gap: 0.5rem;                    /* space between image and text */
    
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 25px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .note-badge:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
  }
  
  .note-badge img {
    width: 18px;        /* adjust size as needed */
    height: 18px;
    border-radius: 50%; /* optional, for circular icons */
    object-fit: cover;  /* keeps proportions */
  }
  
  
  .price-section {
    background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
  }
  
  .price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .btn-gold {
    background: var(--primary-gold);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .btn-gold:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    color: white;
  }
  
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-navy);
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--deep-navy) !important;
    font-size: 1.5rem;
  }
  
  .navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  }
  
  .footer {
    background: var(--deep-navy);
    color: white;
    padding: 3rem 0;
    margin-top: 5rem;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .fragrance-name {
      font-size: 2rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .hero-section {
      padding: 80px 0;
    }
    
    .hero-section h1 {
      font-size: 2.5rem;
    }
    
    /* Ensure proper image container on mobile */
    .fragrance-card .row {
      flex-direction: column;
    }
    
    .fragrance-card .col-md-6:first-child {
      order: 1;
    }
    
    .fragrance-card .col-md-6:last-child {
      order: 2;
    }
  }
  