    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --ivory:    #1c1c1e;
      --ivory-d:  #252527;
      --ivory-dd: #2d2b2c;
      --white:    #2a2a2c;
      --gold:     #c0876e;
      --gold-l:   #d4a48a;
      --gold-d:   #8a5a48;
      --gold-xl:  #2a1e18;
      --charcoal: #ede8e4;
      --brown:    #b8b0a8;
      --mid:      #908880;
      --light:    #68605c;
      --pale:     #38343a;
      --black:    #0a0a0c;
      --red:      #c0392b;
      --green:    #2e7d52;
      /* Department accent colours */
      --men-frag:   #1a2535;
      --men-care:   #1a2820;
      --women-frag: #2d1a22;
      --women-care: #2a1a2d;
      --unisex-frag: #12201a;
      --unisex-care: #1a1a0d;
      --aromamist:   #2a3a1a;
      --r:  0.5rem; --r2: 1rem; --r3: 1.5rem;
      --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    }

    html { scroll-behavior: smooth; }
    body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; background: var(--ivory); color: var(--charcoal); overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; border: none; outline: none; }
    img { max-width: 100%; display: block; }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: #141416; }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ HEADER Ξ²β€β‚¬Ξ²β€β‚¬ */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(28,28,30,0.96); backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(192,135,110,0.2);
      transition: var(--transition);
    }
    header.scrolled { box-shadow: 0 4px 30px rgba(28,28,30,0.08); }

    .header-top {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 2.5rem; height: 160px;
    }
    .logo-img { height: 144px; width: auto; object-fit: contain; }

    /* NAV with dropdowns */
    .main-nav { display: flex; align-items: center; gap: 0; }
    .nav-item { position: relative; }
    .nav-link {
      display: flex; align-items: center; gap: 0.3rem;
      color: var(--brown); font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 0 1.2rem; height: 160px;
      transition: color var(--transition); cursor: pointer;
      border: none; background: none; font-family: inherit;
    }
    .nav-link:hover { color: var(--gold-d); }
    .nav-link svg { transition: transform var(--transition); }
    .nav-item:hover .nav-link svg { transform: rotate(180deg); }

    .dropdown {
      position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
      background: var(--black); border: 1px solid rgba(192,135,110,0.15);
      border-radius: 0; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
      padding: 0.4rem 0; min-width: 210px;
      opacity: 0; pointer-events: none;
      transform: translateX(-50%) translateY(8px);
      transition: all var(--transition);
    }
    .nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
    .dropdown-item {
      display: flex; align-items: center;
      padding: 0.72rem 1.2rem; cursor: pointer;
      transition: all var(--transition); white-space: nowrap;
      color: var(--mid); font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      border-left: 2px solid transparent;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .dropdown-item:last-child { border-bottom: none; }
    .dropdown-item:hover { background: rgba(192,135,110,0.07); color: var(--charcoal); border-left-color: var(--gold-d); padding-left: 1.5rem; }
    .dropdown-dot { display: none; }

    .header-actions { display: flex; align-items: center; gap: 0.75rem; }
    .icon-btn {
      background: none; color: var(--brown); width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: all var(--transition); position: relative;
    }
    .icon-btn:hover { background: var(--gold-xl); color: var(--gold-d); }
    .cart-count {
      position: absolute; top: 2px; right: 2px;
      background: var(--gold-d); color: var(--white);
      width: 18px; height: 18px; border-radius: 50%;
      font-size: 0.62rem; font-weight: 700;
      display: none; align-items: center; justify-content: center;
    }
    .cart-count.show { display: flex; }

    /* Mobile hamburger */
    .hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; }
    .hamburger span { width: 22px; height: 2px; background: var(--brown); border-radius: 2px; transition: var(--transition); display: block; }

    /* Mobile nav drawer */
    .mobile-nav {
      display: none; flex-direction: column;
      border-top: 1px solid var(--pale); padding: 1rem 2rem 1.5rem;
      max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    }
    .mobile-nav.open { max-height: 500px; }
    .mobile-nav-group { margin-bottom: 1rem; }
    .mobile-nav-label { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.5rem; }
    .mobile-nav-link {
      display: block; padding: 0.5rem 0; color: var(--brown); font-size: 0.85rem;
      font-weight: 500; transition: color var(--transition); cursor: pointer;
    }
    .mobile-nav-link:hover { color: var(--gold-d); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh; display: flex; flex-direction: column;
      position: relative; overflow: hidden;
      background-position: center center; background-size: cover; background-repeat: no-repeat; /* background-image set dynamically by header.php from the Customizer */
      /* .hero has no children of its own (buttons/stats live in the sibling
         .hero-below), so animating the whole section is a safe way to do a
         continuous Ken Burns drift without disturbing background-size:cover
         coverage. Runs forever (alternate loop) so the bottle image reads
         as slow, ambient motion rather than a one-off load animation —
         the "motion video" effect, with zero video file needed. */
      animation: heroKenBurns 10s cubic-bezier(0.45,0,0.55,1) infinite alternate;
    }
    @keyframes heroKenBurns {
      0%   { transform: scale(1.04) translate(0, 0); }
      50%  { transform: scale(1.18) translate(-1.8%, -1.2%); }
      100% { transform: scale(1.04) translate(1.5%, 1%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero { animation: none; transform: none; }
      .hero::after { animation: none; display: none; }
    }
    .hero::before {
      content: ''; position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(180deg,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.6) 100%);
    }
    /* Cinematic light sweep — a soft diagonal highlight that drifts across
       the bottle every few seconds, like light catching glass/metal. */
    .hero::after {
      content: ''; position: absolute; z-index: 2;
      top: -50%; left: -60%; width: 60%; height: 200%;
      background: linear-gradient(100deg,
        rgba(255,255,255,0) 0%,
        rgba(245,224,200,0.06) 45%,
        rgba(245,224,200,0.14) 50%,
        rgba(245,224,200,0.06) 55%,
        rgba(255,255,255,0) 100%);
      transform: rotate(8deg);
      animation: heroShimmer 7s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes heroShimmer {
      0%   { left: -60%; opacity: 0; }
      15%  { opacity: 1; }
      45%  { opacity: 1; }
      60%  { left: 120%; opacity: 0; }
      100% { left: 120%; opacity: 0; }
    }
    .hero-top {
      position: relative; z-index: 3;
      flex: 1; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: calc(160px + 1rem) 2rem 4rem;
    }
    .hero-lower { display: none; }
    .hero-eyebrow {
      display: flex; align-items: center; gap: 1.2rem;
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.45em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
    }
    .hero-eyebrow::before, .hero-eyebrow::after {
      content: ''; display: block; width: 50px; height: 1px;
      background: var(--gold); opacity: 0.7;
    }
    h1 {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: clamp(2.8rem, 5vw, 4.8rem);
      font-weight: 400; line-height: 1.1; color: #fff;
      margin-bottom: 2.2rem; letter-spacing: 0.01em;
    }
    h1 em { color: var(--gold); font-style: italic; font-weight: 400; }
    .hero-btns {
      display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
    }
    .hero-below {
      background: #0a0a0c;
      padding: 4rem 4rem 0;
      display: flex; flex-direction: column; align-items: center; gap: 4rem;
    }
    .hero-stats {
      width: 100%; padding: 2rem 0;
      display: flex; flex-wrap: wrap; justify-content: space-between;
      border-top: 1px solid rgba(192,135,110,0.18);
    }
    
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(192,135,110,0.15); border: 1px solid rgba(192,135,110,0.4);
      color: var(--gold-d); padding: 0.4rem 1.1rem; border-radius: 100px;
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .hero-eyebrow { display:flex; align-items:center; gap:0.9rem; font-size:0.56rem; font-weight:700; letter-spacing:0.48em; text-transform:uppercase; color:var(--gold); margin-bottom:0.65rem; }
    .hero-eyebrow::after { content:''; display:block; width:36px; height:1px; background:var(--gold); opacity:0.65; }
    h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.3rem, 1.8vw, 1.9rem); font-weight: 300; line-height: 1.2; color: rgba(255,255,255,0.78); margin-bottom: 0; letter-spacing: 0.1em; }
    h1 em { color: var(--gold); font-style: italic; font-weight:400; }
    .hero-sub { font-size:0.9rem; color:rgba(255,255,255,0.52); line-height:1.9; margin-bottom:2.8rem; letter-spacing:0.06em; max-width:460px; }
    .hero-btns { display:flex; gap:1.2rem; flex-wrap:wrap; justify-content:center; }

    .btn-primary { background: var(--gold); color: #0a0a0c; padding: 1rem 2.8rem; border-radius: 0; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; transition: all var(--transition); display: inline-flex; align-items: center; gap: 0.6rem; }
    .btn-primary:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(192,135,110,0.35); }
    .btn-outline { background: transparent; color: rgba(255,255,255,0.85); padding: 1rem 2.8rem; border-radius: 0; border: 1px solid rgba(255,255,255,0.35); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; transition: all var(--transition); display: inline-flex; align-items: center; gap: 0.6rem; }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

    .hero-visual { display: flex; gap: 1rem; align-items: flex-end; justify-content: center; }
    .hero-product-card {
      background: rgba(42,42,44,0.75); border: 1px solid rgba(192,135,110,0.25);
      border-radius: var(--r2); overflow: hidden; backdrop-filter: blur(8px);
      box-shadow: 0 8px 32px rgba(28,28,30,0.08); transition: transform var(--transition);
    }
    .hero-product-card:hover { transform: translateY(-8px); }
    .hero-product-card:first-child { transform: translateY(28px); }
    .hero-product-card:first-child:hover { transform: translateY(20px); }
    .hero-card-img { height: 190px; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
    .hero-card-info { padding: 0.9rem 1.1rem 1.2rem; }
    .hero-card-dept { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.2rem; }
    .hero-card-name { font-weight: 700; font-size: 0.8rem; color: var(--charcoal); margin-bottom: 0.15rem; }
    .hero-card-price { color: var(--gold-d); font-weight: 800; font-size: 0.95rem; }

    .hero-stats { position:relative; z-index:3; width:100%; padding:1.8rem 4rem; display:flex; gap:0; flex-wrap:wrap; justify-content:space-between; border-top:1px solid rgba(192,135,110,0.18); }
    .stat-num { font-family: Georgia, serif; font-size: 2rem; font-weight: 300; color: var(--gold); line-height: 1; }
    .stat-label { font-size: 0.62rem; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.16em; margin-top: 0.35rem; }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ TICKER Ξ²β€β‚¬Ξ²β€β‚¬ */
    .ticker { background: var(--charcoal); padding: 0.75rem 0; overflow: hidden; white-space: nowrap; }
    .ticker-track { display: inline-flex; gap: 4rem; animation: tickerScroll 35s linear infinite; }
    @keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    .ticker-item {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
      color: rgba(245,240,232,0.7); display: flex; align-items: center; gap: 1rem;
    }
    .ticker-item::after { content:'Ξ²ΒΒ¦'; font-size:0.45rem; color:var(--gold); }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ SECTIONS Ξ²β€β‚¬Ξ²β€β‚¬ */
    section { padding: 5.5rem 2.5rem; }
    .container { max-width: 1300px; margin: 0 auto; }
    .section-label { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.7rem; }
    .section-title { font-family: Georgia,'Times New Roman',serif; font-size: clamp(1.9rem,3vw,2.7rem); font-weight: 700; line-height: 1.15; margin-bottom: 0.9rem; }
    .section-sub { color: var(--mid); font-size: 0.95rem; line-height: 1.75; max-width: 540px; text-align: justify; }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ DEPARTMENTS Ξ²β€β‚¬Ξ²β€β‚¬ */
    .departments-section { background: var(--charcoal); }
    .dept-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-top: 4rem; }

    .dept-card {
      border-radius: 0; overflow: hidden; position: relative;
      cursor: pointer; aspect-ratio: 4/5;
      display: flex; flex-direction: column; justify-content: flex-end;
      transition: transform var(--transition);
      border: 1px solid rgba(192,135,110,0.15);
    }
    .dept-card:hover { transform: translateY(-6px); }
    .dept-bg {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 5.5rem; opacity: 0.22;
      transition: opacity var(--transition);
    }
    .dept-card:hover .dept-bg { opacity: 0.35; }
    .dept-card:nth-child(1) { background: linear-gradient(145deg, #1a1a1c, #0a0a0c); }
    .dept-card:nth-child(2) { background: linear-gradient(145deg, #1c1a1a, #0a0a0c); }
    .dept-card:nth-child(3) { background: linear-gradient(145deg, #1a1a1c, #0a0a0c); }
    .dept-card:nth-child(4) { background: linear-gradient(145deg, #1c1a1a, #0a0a0c); }
    .dept-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
    }
    .dept-accent {
      position: absolute; top: 1rem; left: 1rem;
      width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.55rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    }
    .dept-info { position: relative; z-index: 2; padding: 1.5rem; }
    .dept-tag { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
    .dept-name { font-family: Georgia,serif; font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
    .dept-count { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-bottom: 0.7rem; }
    .dept-arrow { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--gold); font-size: 0.72rem; font-weight: 600; transition: gap var(--transition); }
    .dept-card:hover .dept-arrow { gap: 0.7rem; }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ PRODUCTS Ξ²β€β‚¬Ξ²β€β‚¬ */
    .products-section { background: var(--ivory); }
    .products-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; gap: 1rem; flex-wrap: wrap; }

    /* Two-level filter */
    .filter-group { display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-end; }
    .filter-row { display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: flex-end; }
    .filter-tab {
      background: var(--white); border: 1.5px solid var(--pale);
      color: var(--mid); padding: 0.42rem 1.1rem; border-radius: 100px;
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
      cursor: pointer; transition: all var(--transition);
    }
    .filter-tab.active, .filter-tab:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--ivory); }
    .filter-tab.men-frag.active   { background: var(--men-frag); border-color: var(--men-frag); }
    .filter-tab.men-care.active   { background: var(--men-care); border-color: var(--men-care); }
    .filter-tab.women-frag.active { background: var(--women-frag); border-color: var(--women-frag); }
    .filter-tab.women-care.active { background: var(--women-care); border-color: var(--women-care); }
    .filter-tab.unisex-frag.active { background: var(--unisex-frag); border-color: var(--unisex-frag); }
    .filter-tab.unisex-care.active { background: var(--unisex-care); border-color: var(--unisex-care); }
    .filter-tab.aromamist.active { background: var(--aromamist); border-color: var(--aromamist); }
    .filter-divider { width: 1px; height: 24px; background: var(--pale); align-self: center; }

    .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 3rem; }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ DEPT BADGE on card Ξ²β€β‚¬Ξ²β€β‚¬ */
    .dept-pill {
      display: inline-flex; align-items: center; gap: 0.35rem;
      padding: 0.2rem 0.6rem; border-radius: 100px;
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      margin-bottom: 0.35rem;
    }
    .dept-pill.men-frag   { background: rgba(26,37,53,0.1);  color: #3a6aaa; }
    .dept-pill.men-care   { background: rgba(26,40,32,0.1);  color: #2e7d52; }
    .dept-pill.women-frag { background: rgba(45,26,34,0.1);  color: #aa3a6a; }
    .dept-pill.women-care   { background: rgba(42,26,45,0.1);  color: #8a3aaa; }
    .dept-pill.unisex-frag  { background: rgba(18,32,26,0.1);  color: #2a8a6a; }
    .dept-pill.unisex-care  { background: rgba(26,26,13,0.1);  color: #7a8a2a; }
    .dept-pill.aromamist    { background: rgba(42,58,26,0.1);  color: #6a9e2a; }

    .product-card {
      background: #141416; border-radius: 0; overflow: hidden;
      position: relative; transition: all var(--transition); cursor: pointer;
      border: 1px solid rgba(192,135,110,0.12);
      box-shadow: none;
    }
    .product-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); border-color: rgba(192,135,110,0.4); }

    .product-badge {
      position: absolute; top: 1rem; left: 1rem; z-index: 3;
      padding: 0.22rem 0.65rem; border-radius: 100px;
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    }
    .product-badge.bestseller { background: var(--gold-d); color: var(--ivory); }
    .product-badge.new        { background: var(--charcoal); color: var(--ivory); }
    .product-badge.sale       { background: var(--red); color: #fff; }

    .product-img-wrap {
      height: 280px; display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
      background: linear-gradient(160deg, #1a1a1c, #0d0d0f);
    }
    .product-img-wrap svg { transition: transform var(--transition); }
    .product-card:hover .product-img-wrap svg { transform: scale(1.05); }
    .product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
    .product-card:hover .product-img-wrap img { transform: scale(1.05); }
    .product-quick-add {
      position: absolute; bottom: 1rem; left: 50%;
      transform: translateX(-50%) translateY(60px);
      background: var(--charcoal); color: var(--ivory);
      padding: 0.52rem 1.3rem; border-radius: 100px;
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
      white-space: nowrap; transition: all var(--transition); opacity: 0;
    }
    .product-card:hover .product-quick-add { transform: translateX(-50%) translateY(0); opacity: 1; }
    .product-quick-add:hover { background: var(--gold-d); }

    .product-info { padding: 1.3rem; }
    .product-inspired { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.3rem; min-height: 1em; }
    .product-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; line-height: 1.3; color: var(--charcoal); }
    .product-desc { font-size: 0.78rem; color: var(--mid); line-height: 1.6; margin-bottom: 0.9rem; }
    .product-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.4rem; }
    .product-price { font-size: 1.05rem; font-weight: 800; color: var(--charcoal); }
    .product-price .old { font-size: 0.8rem; color: var(--light); text-decoration: line-through; margin-right: 0.35rem; font-weight: 400; }
    .saving-pill { background: rgba(46,125,82,0.1); color: var(--green); padding: 0.18rem 0.55rem; border-radius: 100px; font-size: 0.65rem; font-weight: 700; }

    .product-card-admin { display: flex; gap: 0.4rem; padding: 0 1.3rem 1.3rem; }
    .btn-edit, .btn-delete { flex:1; padding:0.45rem; border-radius:var(--r); font-size:0.7rem; font-weight:600; transition:all var(--transition); }
    .btn-edit   { background:var(--ivory-d); color:var(--brown); }
    .btn-edit:hover { background:var(--charcoal); color:var(--ivory); }
    .btn-delete { background:#fde8e8; color:var(--red); }
    .btn-delete:hover { background:var(--red); color:#fff; }
    .no-products { grid-column:1/-1; text-align:center; padding:4rem; color:var(--light); font-size:0.9rem; }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ SAVINGS BANNER Ξ²β€β‚¬Ξ²β€β‚¬ */
    .savings-banner { background: linear-gradient(135deg, var(--charcoal), #0d0d0f); padding: 4rem 2.5rem; }
    .savings-inner { max-width:1300px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:3rem; flex-wrap:wrap; }
    .savings-text p { color:rgba(245,240,232,0.55); font-size:0.95rem; line-height:1.7; max-width:460px; }
    .savings-numbers { display:flex; gap:2.5rem; flex-wrap:wrap; align-items:center; }
    .saving-big-num { font-family:Georgia,serif; font-size:2.8rem; font-weight:700; color:var(--gold); line-height:1; }
    .saving-big-label { font-size:0.7rem; color:rgba(245,240,232,0.42); text-transform:uppercase; letter-spacing:0.1em; margin-top:0.3rem; }
    .vs-text { font-size:1.6rem; color:var(--gold); font-family:Georgia,serif; }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ STORY Ξ²β€β‚¬Ξ²β€β‚¬ */
    .story-section { background: var(--ivory-d); }
    .story-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
    .story-visual {
      background:linear-gradient(135deg,#1c1c1e,#0d0d0f);
      border-radius:var(--r2); aspect-ratio:4/5;
      display:flex; align-items:center; justify-content:center;
      position:relative; overflow:hidden;
      border:1px solid rgba(192,135,110,0.15);
      box-shadow:0 20px 60px rgba(28,28,30,0.15);
    }
    .story-visual::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 30% 40%, rgba(192,135,110,0.12), transparent 60%); }
    .story-big-icon { font-size:9rem; opacity:0.18; }
    .story-card {
      position:absolute; bottom:2rem; left:2rem; right:2rem;
      background:rgba(245,240,232,0.07); border:1px solid rgba(192,135,110,0.2);
      border-radius:var(--r2); padding:1.2rem; backdrop-filter:blur(8px);
    }
    .story-card-label { font-size:0.58rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:0.3rem; }
    .story-card-title { color:var(--ivory); font-weight:700; font-size:0.88rem; }
    .story-card-sub { color:rgba(245,240,232,0.42); font-size:0.75rem; margin-top:0.2rem; }
    .story-features { margin-top:2.5rem; display:flex; flex-direction:column; gap:1.2rem; }
    .story-feature { display:flex; gap:1rem; align-items:flex-start; }
    .feature-icon { width:40px; height:40px; background:rgba(192,135,110,0.1); border:1px solid rgba(192,135,110,0.25); border-radius:var(--r); display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
    .feature-title { font-weight:700; margin-bottom:0.2rem; font-size:0.88rem; }
    .feature-desc { font-size:0.8rem; color:var(--mid); line-height:1.55; }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ TESTIMONIALS Ξ²β€β‚¬Ξ²β€β‚¬ */
    .testimonials-section { background: var(--ivory); }
    .testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
    .testimonial-card { background:var(--white); border-radius:var(--r2); padding:1.8rem; border:1px solid rgba(192,135,110,0.12); box-shadow:0 2px 12px rgba(28,28,30,0.04); transition:transform var(--transition); }
    .testimonial-card:hover { transform:translateY(-4px); }
    .testimonial-stars { color:var(--gold); font-size:0.9rem; margin-bottom:0.9rem; letter-spacing:2px; }
    .testimonial-text { font-size:0.85rem; line-height:1.75; color:var(--brown); margin-bottom:1.3rem; font-style:italic; }
    .testimonial-author { display:flex; align-items:center; gap:0.75rem; }
    .author-avatar { width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:0.82rem; color:var(--ivory); }
    .author-name { font-weight:700; font-size:0.8rem; color:var(--charcoal); }
    .author-meta { font-size:0.7rem; color:var(--light); }
    .testimonial-saving { margin-top:1rem; padding-top:1rem; border-top:1px solid var(--ivory-d); font-size:0.72rem; color:var(--green); font-weight:700; }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ NEWSLETTER Ξ²β€β‚¬Ξ²β€β‚¬ */
    .newsletter-section { background:var(--charcoal); text-align:center; }
    .newsletter-section .section-title { color:var(--ivory); }
    .newsletter-sub { color:rgba(245,240,232,0.5); margin-top:0.5rem; font-size:0.92rem; }
    .newsletter-form { display:flex; max-width:440px; margin:2rem auto 0; background:rgba(245,240,232,0.07); border:1px solid rgba(245,240,232,0.12); border-radius:var(--r); overflow:hidden; }
    .newsletter-input { flex:1; background:none; border:none; outline:none; padding:0.85rem 1.1rem; color:var(--ivory); font-family:inherit; font-size:0.86rem; }
    .newsletter-input::placeholder { color:rgba(245,240,232,0.28); }
    .newsletter-btn { background:var(--gold-d); color:var(--ivory); padding:0.85rem 1.3rem; font-weight:700; font-size:0.76rem; letter-spacing:0.1em; text-transform:uppercase; transition:background var(--transition); white-space:nowrap; }
    .newsletter-btn:hover { background:var(--gold); color:var(--charcoal); }
    .newsletter-note { font-size:0.7rem; color:rgba(245,240,232,0.22); margin-top:0.7rem; }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ FOOTER Ξ²β€β‚¬Ξ²β€β‚¬ */
    footer { background:#0d0d0f; color:rgba(245,240,232,0.48); padding:4rem 2.5rem 2rem; }
    .footer-grid { max-width:1300px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
    .footer-logo { height:138px; margin-bottom:1rem; }
    .footer-desc { font-size:0.8rem; line-height:1.7; max-width:255px; }
    .footer-socials { display:flex; gap:0.75rem; margin-top:1.4rem; }
    .social-btn { width:36px; height:36px; border-radius:50%; background:rgba(245,240,232,0.06); color:rgba(245,240,232,0.45); display:flex; align-items:center; justify-content:center; font-size:0.75rem; font-weight:700; transition:all var(--transition); }
    .social-btn:hover { background:var(--gold-d); color:var(--ivory); }
    .footer-col h4 { color:var(--ivory); font-size:0.74rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; margin-bottom:1.1rem; }
    .footer-col ul { list-style:none; display:flex; flex-direction:column; gap:0.55rem; }
    .footer-col li a { font-size:0.8rem; color:rgba(245,240,232,0.42); transition:color var(--transition); }
    .footer-col li a:hover { color:var(--gold); }
    .footer-bottom { max-width:1300px; margin:0 auto; padding-top:2rem; border-top:1px solid rgba(245,240,232,0.07); display:flex; align-items:center; justify-content:space-between; font-size:0.73rem; flex-wrap:wrap; gap:1rem; }

    /* ── STRIPE PAYMENT MODAL ── */
    .pay-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.88); backdrop-filter:blur(14px); z-index:3500; display:flex; align-items:center; justify-content:center; padding:1rem; opacity:0; pointer-events:none; transition:opacity 0.3s ease; }
    .pay-overlay.open { opacity:1; pointer-events:all; }
    .pay-modal { background:#111113; border-radius:0; width:100%; max-width:480px; max-height:92vh; overflow-y:auto; border:1px solid rgba(192,135,110,0.2); box-shadow:0 40px 100px rgba(0,0,0,0.8); transform:translateY(16px); transition:transform 0.3s ease; display:flex; flex-direction:column; }
    .pay-overlay.open .pay-modal { transform:translateY(0); }
    .pay-header { padding:1.4rem 1.6rem 1.1rem; border-bottom:1px solid rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:space-between; flex-shrink:0; }
    .pay-header-logo { font-family:Georgia,serif; font-size:1.1rem; letter-spacing:0.28em; background:linear-gradient(135deg,#6b3a2a,#c0876e,#edc4a8,#c0876e,#6b3a2a); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
    .pay-header-secure { display:flex; align-items:center; gap:0.35rem; font-size:0.62rem; color:#6359ff; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; }
    .pay-close { width:30px; height:30px; border-radius:50%; background:rgba(255,255,255,0.06); border:none; color:var(--mid); cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:1rem; transition:all 0.2s; }
    .pay-close:hover { background:rgba(255,255,255,0.12); color:var(--charcoal); }
    .pay-summary { padding:1.2rem 1.6rem; border-bottom:1px solid rgba(255,255,255,0.06); background:rgba(192,135,110,0.04); flex-shrink:0; }
    .pay-items { display:flex; flex-direction:column; gap:0.5rem; margin-bottom:0.9rem; }
    .pay-item-row { display:flex; justify-content:space-between; align-items:baseline; gap:1rem; }
    .pay-item-name { font-size:0.82rem; color:var(--charcoal); font-weight:600; }
    .pay-item-qty { font-size:0.72rem; color:var(--mid); }
    .pay-item-price { font-size:0.82rem; color:var(--charcoal); font-weight:700; white-space:nowrap; }
    .pay-divider { height:1px; background:rgba(255,255,255,0.06); margin:0.6rem 0; }
    .pay-subtotal-row { display:flex; justify-content:space-between; font-size:0.78rem; color:var(--mid); margin-bottom:0.3rem; }
    .pay-total-row { display:flex; justify-content:space-between; font-size:1rem; color:var(--charcoal); font-weight:800; margin-top:0.5rem; }
    .pay-free-ship { font-size:0.68rem; color:#2e7d52; font-weight:700; }
    .pay-body { padding:1.4rem 1.6rem; flex:1; }
    .pay-element-wrap { min-height:180px; }
    #stripe-payment-element { min-height:160px; }
    .pay-submit-btn { width:100%; margin-top:1.2rem; background:var(--gold-d); color:#fff; padding:1rem; border-radius:0; font-weight:800; font-size:0.82rem; letter-spacing:0.14em; text-transform:uppercase; border:none; cursor:pointer; transition:all 0.3s ease; display:flex; align-items:center; justify-content:center; gap:0.5rem; }
    .pay-submit-btn:hover:not(:disabled) { background:var(--gold-l); color:#0a0a0c; }
    .pay-submit-btn:disabled { opacity:0.5; cursor:not-allowed; }
    .pay-submit-btn .pay-spinner { width:16px; height:16px; border:2px solid rgba(255,255,255,0.3); border-top-color:#fff; border-radius:50%; animation:spin 0.7s linear infinite; display:none; }
    .pay-submit-btn.loading .pay-spinner { display:block; }
    .pay-submit-btn.loading .pay-btn-text { display:none; }
    @keyframes spin { to { transform:rotate(360deg); } }
    .pay-error { background:rgba(192,57,43,0.12); border:1px solid rgba(192,57,43,0.3); border-radius:var(--r); padding:0.7rem 1rem; margin-top:0.8rem; font-size:0.78rem; color:#e74c3c; display:none; }
    .pay-error.show { display:block; }
    .pay-success { text-align:center; padding:2.5rem 1.6rem; display:none; }
    .pay-success.show { display:block; }
    .pay-success-icon { font-size:3rem; margin-bottom:1rem; }
    .pay-success-title { font-family:Georgia,serif; font-size:1.4rem; color:var(--charcoal); margin-bottom:0.5rem; }
    .pay-success-sub { font-size:0.82rem; color:var(--mid); line-height:1.7; }
    .pay-footer { padding:0.9rem 1.6rem; border-top:1px solid rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center; gap:1rem; flex-shrink:0; }
    .pay-trust { display:flex; align-items:center; gap:0.35rem; font-size:0.62rem; color:var(--light); }
    .pay-loading-init { text-align:center; padding:2rem; color:var(--mid); font-size:0.82rem; }
    @media(max-width:500px) { .pay-modal { max-height:100vh; border-radius:0; } }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ CART DRAWER Ξ²β€β‚¬Ξ²β€β‚¬ */
    .cart-overlay { position:fixed; inset:0; background:rgba(13,13,15,0.5); backdrop-filter:blur(4px); z-index:2000; opacity:0; pointer-events:none; transition:opacity var(--transition); }
    .cart-overlay.open { opacity:1; pointer-events:all; }
    .cart-drawer { position:fixed; top:0; right:0; bottom:0; width:420px; background:var(--ivory); z-index:2001; transform:translateX(100%); transition:transform var(--transition); display:flex; flex-direction:column; box-shadow:-20px 0 60px rgba(13,13,15,0.15); }
    .cart-drawer.open { transform:translateX(0); }
    .cart-header { padding:1.4rem 1.8rem; border-bottom:1px solid var(--pale); display:flex; align-items:center; justify-content:space-between; }
    .cart-title { font-weight:800; font-size:0.95rem; color:var(--charcoal); }
    .cart-close { width:34px; height:34px; border-radius:50%; background:var(--ivory-d); color:var(--brown); display:flex; align-items:center; justify-content:center; font-size:0.9rem; transition:all var(--transition); }
    .cart-close:hover { background:var(--charcoal); color:var(--ivory); }
    .cart-items { flex:1; overflow-y:auto; padding:1.4rem 1.8rem; }
    .cart-empty { text-align:center; padding:3rem 0; color:var(--light); }
    .cart-empty-icon { font-size:2.8rem; margin-bottom:1rem; }
    .cart-item { display:flex; gap:1rem; padding:1.1rem 0; border-bottom:1px solid var(--ivory-d); }
    .cart-item-img { width:68px; height:68px; border-radius:var(--r); flex-shrink:0; display:flex; align-items:center; justify-content:center; overflow:hidden; }
    .cart-item-details { flex:1; }
    .cart-item-name { font-weight:700; font-size:0.85rem; margin-bottom:0.1rem; color:var(--charcoal); }
    .cart-item-dept { font-size:0.62rem; color:var(--gold-d); font-weight:600; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:0.45rem; }
    .cart-item-controls { display:flex; align-items:center; gap:0.65rem; }
    .qty-btn { width:26px; height:26px; border-radius:50%; background:var(--ivory-d); font-size:0.95rem; font-weight:600; display:flex; align-items:center; justify-content:center; transition:all var(--transition); }
    .qty-btn:hover { background:var(--charcoal); color:var(--ivory); }
    .qty-num { font-weight:600; font-size:0.85rem; min-width:18px; text-align:center; }
    .cart-item-price { font-weight:700; font-size:0.9rem; align-self:flex-start; color:var(--charcoal); }
    .cart-item-remove { background:none; color:var(--light); font-size:0.7rem; transition:color var(--transition); }
    .cart-item-remove:hover { color:var(--red); }
    .cart-footer { padding:1.4rem 1.8rem; border-top:1px solid var(--pale); background:var(--white); }
    .cart-totals { margin-bottom:1.1rem; }
    .cart-row { display:flex; justify-content:space-between; font-size:0.8rem; color:var(--mid); margin-bottom:0.45rem; }
    .cart-row.total { font-size:1rem; font-weight:800; color:var(--charcoal); border-top:1px solid var(--pale); padding-top:0.75rem; margin-top:0.45rem; }
    .checkout-btn { width:100%; background:var(--charcoal); color:var(--ivory); padding:0.95rem; border-radius:var(--r); font-weight:700; font-size:0.85rem; letter-spacing:0.08em; text-transform:uppercase; transition:all var(--transition); display:flex; align-items:center; justify-content:center; gap:0.5rem; }
    .checkout-btn:hover { background:var(--gold-d); }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ TOAST Ξ²β€β‚¬Ξ²β€β‚¬ */
.toast-container { position:fixed; bottom:2rem; right:2rem; z-index:5000; display:flex; flex-direction:column; gap:0.5rem; }
    .toast { background:var(--charcoal); color:var(--ivory); padding:0.82rem 1.2rem; border-radius:var(--r); font-size:0.8rem; font-weight:500; display:flex; align-items:center; gap:0.7rem; box-shadow:0 8px 30px rgba(13,13,15,0.25); transform:translateX(120%); transition:transform var(--transition); max-width:310px; }
    .toast.show { transform:translateX(0); }
    .toast.success { border-left:3px solid var(--green); }
    .toast.error { border-left:3px solid var(--red); }
    .toast.info { border-left:3px solid var(--gold); }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ RESPONSIVE Ξ²β€β‚¬Ξ²β€β‚¬ */
    @media (max-width:1100px) {
      .dept-grid { grid-template-columns:1fr; }
      .testimonials-grid { grid-template-columns:repeat(2,1fr); }
      .story-grid { grid-template-columns:1fr; gap:3rem; }
      .story-visual { max-height:280px; }
      .footer-grid { grid-template-columns:1fr 1fr; }
      .hero-upper { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; position:relative; z-index:2; padding:12rem 2.5rem 2rem; text-align:center; }
    .hero-lower { position:relative; z-index:2; padding:0 2.5rem 3.5rem; display:flex; justify-content:center; }
      .hero-visual { display:none; }
      .filter-group { align-items:flex-start; }
      .filter-row { justify-content:flex-start; }
    }
    @media (max-width:768px) {
      .header-top { padding:0 1.2rem; }
      .main-nav { display:none; }
      .hamburger { display:flex; }
      .mobile-nav { display:flex; }
      section { padding:3.5rem 1.5rem; }
      .dept-grid { grid-template-columns:1fr; }
      .testimonials-grid { grid-template-columns:1fr; }
      .footer-grid { grid-template-columns:1fr; }
      .cart-drawer { width:100%; }
      .hero-stats { position:relative; z-index:3; width:100%; padding:1.8rem 4rem; display:flex; gap:0; flex-wrap:wrap; justify-content:space-between; border-top:1px solid rgba(192,135,110,0.18); }
      .savings-inner { flex-direction:column; align-items:flex-start; }
      /* On tall/narrow viewports, background-size:cover crops the 1625x968
         hero photo down to a thin center strip, cutting the copper bottle
         out of frame. Shifting the focal point right re-centers it. */
      .hero { background-position: 68% center; }
    }

    /* ── TEXT LOGO ── */
    .text-logo-link { text-decoration: none; }
    .text-logo {
      display: flex; flex-direction: column; align-items: center; gap: 2px;
      height: 144px; justify-content: center;
    }
    .text-logo-name {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 3rem; font-weight: 400; letter-spacing: 0.32em;
      display: block; text-align: center; padding-left: 0.32em;
      background: linear-gradient(135deg,
        #6b3a2a 0%,
        #c0876e 20%,
        #edc4a8 38%,
        #f5d8c0 50%,
        #edc4a8 62%,
        #c0876e 80%,
        #6b3a2a 100%
      );
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text; line-height: 1;
      filter: drop-shadow(0 0 18px rgba(192,135,110,0.55)) drop-shadow(0 2px 6px rgba(0,0,0,0.6));
    }
    .text-logo-sub {
      font-size: 0.54rem; font-weight: 700; letter-spacing: 0.42em;
      text-transform: uppercase; color: rgba(192,135,110,0.7);
    }
    /* eyebrow line — same as hero */
    .text-logo-tagline {
      display: flex; align-items: center; gap: 0.9rem;
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.45em;
      text-transform: uppercase; color: var(--gold);
      margin-top: 0.5rem;
      -webkit-text-fill-color: var(--gold);
    }
    .text-logo-tagline::before, .text-logo-tagline::after {
      content: ''; display: block; width: 36px; height: 1px;
      background: var(--gold); opacity: 0.65; flex-shrink: 0;
    }
    /* italic heading line — same Georgia serif as hero h1 */
    .logo-taglines {
      display: flex; flex-direction: column; align-items: center; width: 100%;
    }
    .text-logo-tagline--italic {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 1.35rem; font-weight: 400; font-style: italic;
      letter-spacing: 0.04em; text-transform: none; text-align: center;
      color: rgba(255,255,255,0.75); display: block; margin-top: 0.25rem;
      -webkit-text-fill-color: rgba(255,255,255,0.75);
    }
    .text-logo-tagline--italic::before, .text-logo-tagline--italic::after { display: none; }
    .text-logo-tagline--italic em { color: var(--gold); -webkit-text-fill-color: var(--gold); font-style: italic; }
    .text-logo-footer { height: auto; margin-bottom: 1rem; }
    .text-logo-footer .text-logo-name { font-size: 2.2rem; }
    .text-logo-footer .text-logo-sub { color: rgba(192,135,110,0.45); }

    /* PERFORMANCE: content-visibility for below-fold sections */
    .story-section, .testimonials-section, .newsletter-section { content-visibility: auto; contain-intrinsic-size: 0 520px; }

    /* CLS: reserve grid height while JS renders */
    #productsGrid:empty { min-height: 600px; }

    /* PRODUCT ACTION BUTTONS — scent page link + Shopify buy */
    .product-actions { display: flex; gap: 0.5rem; padding: 0 1.3rem 1.3rem; }
    .scent-link {
      flex: 1; text-align: center; padding: 0.55rem 0.7rem;
      border: 1.5px solid var(--pale); border-radius: var(--r);
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--mid); transition: all var(--transition); background: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
    }
    .scent-link:hover { border-color: var(--gold); color: var(--gold-d); background: var(--gold-xl); }
    .shopify-btn {
      flex: 1; background: var(--gold-d); color: var(--ivory);
      padding: 0.55rem 0.7rem; border-radius: var(--r);
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
      transition: all var(--transition); display: flex; align-items: center; justify-content: center; gap: 0.3rem;
    }
    .shopify-btn:hover { background: var(--gold-l); color: #0a0a0c; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(192,135,110,0.35); }
    .shopify-btn.full-w { width: 100%; flex: none; }

    /* EDITORIAL SECTION */
    .editorial-section { background: var(--ivory-d); }
    .editorial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.8rem; margin-top: 3rem; }
    .editorial-card {
      background: var(--white); border-radius: var(--r2); overflow: hidden;
      border: 1px solid rgba(192,135,110,0.12); transition: all var(--transition);
      text-decoration: none; display: flex; flex-direction: column; color: inherit;
    }
    .editorial-card:hover { transform: translateY(-5px); border-color: rgba(192,135,110,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
    .editorial-thumb {
      height: 160px; display: flex; align-items: center; justify-content: center;
      font-size: 3rem; position: relative; overflow: hidden;
    }
    .editorial-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%); }
    .editorial-body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
    .editorial-tag { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.5rem; }
    .editorial-title { font-family: Georgia,serif; font-size: 0.98rem; font-weight: 700; color: var(--charcoal); line-height: 1.4; margin-bottom: 0.5rem; }
    .editorial-excerpt { font-size: 0.76rem; color: var(--mid); line-height: 1.6; margin-bottom: 0.9rem; flex: 1; }
    .editorial-meta { font-size: 0.65rem; color: var(--light); display: flex; gap: 0.75rem; }
    .editorial-arrow { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--gold-d); font-size: 0.7rem; font-weight: 700; margin-top: 0.75rem; transition: gap var(--transition); }
    .editorial-card:hover .editorial-arrow { gap: 0.55rem; }
    .editorial-hub-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2.5rem; color: var(--gold-d); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid rgba(192,135,110,0.4); padding-bottom: 0.2rem; transition: all var(--transition); }
    .editorial-hub-link:hover { color: var(--gold); border-color: var(--gold); gap: 0.8rem; }
  
    /* ── BUNDLE SHOWCASE (replaces dept-grid) ── */
    .bundle-showcase {
      display: flex; height: 70vh; min-height: 480px; overflow: hidden;
    }
    @media(max-width:700px) { .bundle-showcase { flex-direction: column; height: auto; } }

    .bundle-panel {
      flex: 1; position: relative; overflow: hidden;
      display: flex; align-items: flex-end;
      text-decoration: none; color: inherit;
      cursor: pointer;
      transition: flex 0.55s cubic-bezier(0.4,0,0.2,1);
    }
    .bundle-panel:hover { flex: 1.4; }
    @media(max-width:700px) { .bundle-panel { min-height: 260px; } .bundle-panel:hover { flex: 1; } }

    .bundle-panel-bg {
      position: absolute; inset: 0;
      background-image: url('../img/Savori Colour.jpg');
      background-size: cover; background-position: center;
      transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
    }
    .bundle-panel:hover .bundle-panel-bg { transform: scale(1.05); }

    .bundle-panel-overlay {
      position: absolute; inset: 0;
      transition: opacity 0.4s;
    }
    .bundle-men .bundle-panel-overlay {
      background: linear-gradient(180deg, rgba(10,15,28,0.35) 0%, rgba(10,15,28,0.72) 60%, rgba(10,15,28,0.92) 100%);
    }
    .bundle-women .bundle-panel-overlay {
      background: linear-gradient(180deg, rgba(28,10,20,0.35) 0%, rgba(28,10,20,0.72) 60%, rgba(28,10,20,0.92) 100%);
    }
    .bundle-panel:hover .bundle-panel-overlay { opacity: 0.88; }

    .bundle-panel-content {
      position: relative; z-index: 2;
      padding: 2.5rem 2.5rem 3rem;
      width: 100%;
    }
    @media(max-width:700px) { .bundle-panel-content { padding: 1.8rem 1.5rem 2rem; } }

    .bundle-panel-tag {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.3em;
      text-transform: uppercase; margin-bottom: 0.6rem;
    }
    .bundle-men .bundle-panel-tag { color: #8faacc; }
    .bundle-women .bundle-panel-tag { color: #e8b4c8; }

    .bundle-panel-name {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 400; color: #fff; margin-bottom: 0.5rem; line-height: 1.1;
    }

    .bundle-panel-sub {
      font-size: 0.78rem; color: rgba(255,255,255,0.6);
      margin-bottom: 1.2rem; line-height: 1.6;
    }

    .bundle-panel-price { display: flex; align-items: baseline; gap: 0.7rem; margin-bottom: 1.5rem; }
    .bundle-price-now { font-family: Georgia, 'Times New Roman', serif; font-size: 1.6rem; color: #fff; }
    .bundle-price-was { font-size: 0.85rem; color: rgba(255,255,255,0.4); text-decoration: line-through; }

    .bundle-panel-cta {
      display: inline-block;
      padding: 0.75rem 1.6rem;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
      border: 1.5px solid rgba(255,255,255,0.5); color: #fff;
      border-radius: 2px;
      transition: all var(--transition);
    }
    .bundle-men:hover .bundle-panel-cta { background: rgba(138,90,72,0.6); border-color: var(--gold); color: var(--gold); }
    .bundle-women:hover .bundle-panel-cta { background: rgba(138,80,100,0.4); border-color: #e8b4c8; color: #e8b4c8; }

    /* Divider line between panels */
    .bundle-men { border-right: 1px solid rgba(192,135,110,0.2); }
    @media(max-width:700px) { .bundle-men { border-right: none; border-bottom: 1px solid rgba(192,135,110,0.2); } }

    /* ── SUBPAGES (product / guide / bundle / returns) ──
       Scoped under a wrapper class per page type so their typography
       doesn't collide with the homepage's global h1/section/.container
       rules above — all subpages share the one theme header/footer/nav
       instead of each carrying its own copy, per the WordPress migration. */
    .savori-subpage .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
    .savori-subpage main { display: block; }
    .savori-subpage .breadcrumb { padding: 1.4rem 2rem; font-size: 0.72rem; color: var(--light); display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; border-bottom: 1px solid var(--pale); max-width: 1200px; margin: 0 auto; }
    .savori-subpage .breadcrumb a { color: var(--light); transition: color var(--transition); }
    .savori-subpage .breadcrumb a:hover { color: var(--gold-d); }
    .savori-subpage .breadcrumb span { color: var(--mid); }
    .savori-subpage section { padding: 3.5rem 0; border-bottom: 1px solid var(--pale); }
    .savori-subpage .section-label { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.6rem; }
    .savori-subpage h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: var(--charcoal); }
    .savori-subpage p { font-size: 0.9rem; line-height: 1.75; color: var(--mid); margin-bottom: 1rem; }
    .savori-subpage p:last-child { margin-bottom: 0; }

    /* Product hero */
    .product-hero { padding: 3rem 0 0; border-bottom: none; }
    .hero-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
    .product-visual { background: linear-gradient(135deg,#1a2535,#0a0a0c); border-radius: var(--r2); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border: 1px solid rgba(192,135,110,0.15); max-width: 380px; }
    .product-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 35% 30%, rgba(192,135,110,0.18), transparent 60%); }
    .product-visual svg { position: relative; z-index: 1; }
    .product-visual img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
    .product-badge-hero { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(192,135,110,0.15); border: 1px solid rgba(192,135,110,0.4); color: var(--gold-d); padding: 0.3rem 0.9rem; border-radius: 100px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1rem; }
    .product-dept { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.5rem; }
    .savori-subpage .product-hero h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.9rem,3.5vw,3rem); font-weight: 400; line-height: 1.15; margin-bottom: 0.4rem; color: var(--charcoal); }
    .product-inspo { font-size: 0.88rem; color: var(--mid); margin-bottom: 1.5rem; }
    .product-inspo strong { color: var(--brown); }
    .notes-quick { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
    .note-chip { background: var(--white); border: 1px solid var(--pale); color: var(--brown); padding: 0.28rem 0.8rem; border-radius: 100px; font-size: 0.7rem; font-weight: 500; }
    .price-block { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 0.8rem; flex-wrap: wrap; }
    .price-now { font-family: Georgia, 'Times New Roman', serif; font-size: 2.2rem; font-weight: 400; color: var(--gold); }
    .price-orig { font-size: 0.95rem; color: var(--light); text-decoration: line-through; }
    .price-save { background: rgba(46,125,82,0.12); color: var(--green); padding: 0.25rem 0.7rem; border-radius: 100px; font-size: 0.72rem; font-weight: 700; }
    .cta-group { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
    .savori-subpage .btn-buy { background: var(--gold-d); color: var(--ivory); padding: 1rem 2.5rem; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; border: none; cursor: pointer; transition: all var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; flex: 1; justify-content: center; min-width: 200px; }
    .savori-subpage .btn-buy:hover { background: var(--gold-l); color: #0a0a0c; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(192,135,110,0.35); }
    .btn-bag { background: transparent; color: var(--charcoal); padding: 1rem 1.8rem; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; border: 1.5px solid var(--pale); cursor: pointer; transition: all var(--transition); }
    .btn-bag:hover { border-color: var(--gold); color: var(--gold-d); }
    .delivery-note { font-size: 0.75rem; color: var(--light); display: flex; gap: 0.4rem; align-items: center; flex-wrap: wrap; }
    .rating-line { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.2rem; font-size: 0.82rem; color: var(--brown); }
    .rating-line .stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }

    /* Scent notes */
    .notes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 1.8rem; }
    .notes-tier { background: var(--white); border: 1px solid rgba(192,135,110,0.12); border-radius: var(--r2); padding: 1.5rem; }
    .notes-tier-label { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.8rem; }
    .notes-tier-name { font-family: Georgia, 'Times New Roman', serif; font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1rem; }
    .notes-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
    .notes-list li { font-size: 0.82rem; color: var(--brown); display: flex; align-items: center; gap: 0.5rem; }
    .notes-list li::before { content: ''; width: 5px; height: 5px; background: var(--gold-d); border-radius: 50%; flex-shrink: 0; }

    /* Performance metrics */
    .metrics { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 1rem; margin-top: 1.5rem; }
    .metric { background: var(--white); border: 1px solid rgba(192,135,110,0.12); border-radius: var(--r2); padding: 1.2rem; }
    .metric-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light); margin-bottom: 0.4rem; }
    .metric-value { font-family: Georgia, 'Times New Roman', serif; font-size: 1.3rem; color: var(--gold); }
    .metric-sub { font-size: 0.72rem; color: var(--mid); margin-top: 0.2rem; }

    /* Comparison table */
    .comparison-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: 0.85rem; }
    .comparison-table th { background: var(--white); padding: 0.9rem 1.2rem; text-align: left; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-d); border-bottom: 2px solid var(--pale); }
    .comparison-table td { padding: 0.85rem 1.2rem; border-bottom: 1px solid var(--pale); color: var(--brown); vertical-align: top; }
    .comparison-table tr:last-child td { border-bottom: none; }

    /* FAQ (subpage variant — homepage doesn't have one) */
    .savori-subpage .faq-item { border-bottom: 1px solid var(--pale); }
    .savori-subpage .faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--charcoal); font-size: 0.9rem; font-weight: 600; padding: 1.1rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: inherit; transition: color var(--transition); }
    .savori-subpage .faq-q:hover { color: var(--gold-d); }
    .savori-subpage .faq-q .faq-icon { color: var(--gold-d); font-size: 1.1rem; flex-shrink: 0; transition: transform var(--transition); }
    .savori-subpage .faq-a { display: none; padding: 0 0 1.1rem; font-size: 0.85rem; color: var(--mid); line-height: 1.75; }
    .savori-subpage .faq-item.open .faq-a { display: block; }
    .savori-subpage .faq-item.open .faq-icon { transform: rotate(45deg); }

    /* CTA banner */
    .cta-banner { background: linear-gradient(135deg,var(--white),#0d0d0f); border-radius: var(--r2); padding: 2.5rem; text-align: center; margin: 2rem 0; border: 1px solid rgba(192,135,110,0.2); }
    .cta-banner h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--charcoal); }
    .cta-banner p { color: var(--mid); max-width: 480px; margin: 0 auto 1.5rem; font-size: 0.88rem; }
    .cta-banner .btn-buy { display: inline-flex; flex: none; width: auto; min-width: auto; }

    /* Related cards */
    .related-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 1.2rem; margin-top: 1.5rem; }
    .related-card { background: var(--white); border: 1px solid rgba(192,135,110,0.12); border-radius: var(--r2); padding: 1.2rem; transition: all var(--transition); cursor: pointer; text-decoration: none; display: block; color: inherit; }
    .related-card:hover { border-color: rgba(192,135,110,0.4); transform: translateY(-3px); }
    .related-dept { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.3rem; }
    .related-name { font-weight: 700; font-size: 0.88rem; color: var(--charcoal); margin-bottom: 0.2rem; }
    .related-inspo { font-size: 0.75rem; color: var(--mid); margin-bottom: 0.5rem; }
    .related-price { font-weight: 800; color: var(--gold); font-size: 0.95rem; }

    /* Subpage footer disclaimer */
    .subpage-disclaimer { font-size: 0.75rem; color: var(--light); line-height: 1.8; padding: 2rem; max-width: 1200px; margin: 0 auto; }

    /* Journal index (archive-savori_guide.php) */
    .journal-hero { padding: 4rem 0 3rem; text-align: center; border-bottom: 1px solid var(--pale); }
    .savori-subpage .journal-hero h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 400; line-height: 1.15; margin-bottom: 1rem; color: var(--charcoal); }
    .hero-sub { font-size: 0.95rem; color: var(--mid); line-height: 1.75; max-width: 560px; margin: 0 auto; }
    .filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; padding: 1.5rem 0; border-bottom: 1px solid var(--pale); }
    .filter-bar .filter-btn { background: var(--white); border: 1.5px solid var(--pale); color: var(--mid); padding: 0.38rem 1rem; border-radius: 100px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; cursor: pointer; transition: all var(--transition); text-decoration: none; display: inline-block; }
    .filter-bar .filter-btn.active, .filter-bar .filter-btn:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--ivory); }
    .articles-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 2rem; padding: 3rem 0; }
    .article-card { background: var(--white); border: 1px solid rgba(192,135,110,0.12); border-radius: var(--r2); overflow: hidden; transition: all var(--transition); display: block; color: inherit; text-decoration: none; }
    .article-card:hover { transform: translateY(-5px); border-color: rgba(192,135,110,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
    .article-thumb { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
    .article-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%); }
    .article-body { padding: 1.5rem; }
    .article-tag { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.5rem; }
    h2.article-title { font-family: Georgia, 'Times New Roman', serif; font-size: 1.1rem; font-weight: 700; color: var(--charcoal); line-height: 1.4; margin-bottom: 0.6rem; }
    .article-excerpt { font-size: 0.8rem; color: var(--mid); line-height: 1.65; margin-bottom: 1rem; }
    .article-meta { font-size: 0.65rem; color: var(--light); display: flex; gap: 0.75rem; margin-bottom: 0.8rem; }
    .article-read { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--gold-d); font-size: 0.72rem; font-weight: 700; transition: gap var(--transition); }
    .article-card:hover .article-read { gap: 0.6rem; }
    .featured-card { grid-column: 1/-1; display: grid; grid-template-columns: 1.4fr 1fr; align-items: stretch; }
    .featured-card .article-thumb { height: auto; min-height: 280px; }
    .featured-card h2.article-title { font-size: 1.4rem; }
    .featured-card .article-excerpt { font-size: 0.88rem; }
    .cta-strip { background: linear-gradient(135deg,var(--white),#0d0d0f); border-radius: var(--r2); padding: 2.5rem; text-align: center; margin: 2rem 0; border: 1px solid rgba(192,135,110,0.2); }
    .cta-strip h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--charcoal); }
    .cta-strip p { color: var(--mid); max-width: 480px; margin: 0 auto 1.5rem; font-size: 0.88rem; }
    .cta-strip a { background: var(--gold-d); color: var(--ivory); padding: 0.9rem 2.2rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; display: inline-block; transition: all var(--transition); }
    .cta-strip a:hover { background: var(--gold-l); color: #0a0a0c; }

    /* Single guide article (single-savori_guide.php) */
    .article-header { padding: 3.5rem 0 2.5rem; border-bottom: 1px solid var(--pale); }
    .savori-subpage .article-header h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 400; line-height: 1.2; margin-bottom: 1rem; color: var(--charcoal); }
    .article-lead { font-size: 1.05rem; color: var(--brown); line-height: 1.8; font-style: italic; }
    .verdict-box { background: linear-gradient(135deg,rgba(46,125,82,0.1),rgba(46,125,82,0.05)); border: 1.5px solid rgba(46,125,82,0.3); border-radius: var(--r2); padding: 1.5rem; margin: 2rem 0; }
    .verdict-label { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; }
    .verdict-title { font-family: Georgia, 'Times New Roman', serif; font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; }
    .verdict-body { font-size: 0.86rem; color: var(--mid); line-height: 1.7; }
    .product-callout { background: var(--white); border: 1px solid rgba(192,135,110,0.2); border-radius: var(--r2); padding: 1.5rem; margin: 2rem 0; }
    .callout-tag { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.4rem; }
    .callout-name { font-family: Georgia, 'Times New Roman', serif; font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.3rem; }
    .callout-desc { font-size: 0.82rem; color: var(--mid); line-height: 1.6; margin-bottom: 0.8rem; }
    .callout-price { font-family: Georgia, 'Times New Roman', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: 0.8rem; }
    .callout-orig { font-size: 0.8rem; color: var(--light); text-decoration: line-through; margin-left: 0.5rem; }
    .callout-btn { background: var(--gold-d); color: var(--ivory); padding: 0.65rem 1.5rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; display: inline-block; transition: all var(--transition); margin-right: 0.5rem; }
    .callout-btn:hover { background: var(--gold-l); color: #0a0a0c; }

    @media(max-width:768px) {
      .savori-subpage .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
      .savori-subpage .notes-grid { grid-template-columns: 1fr; }
      .savori-subpage .metrics { grid-template-columns: 1fr 1fr; }
      .savori-subpage .container { padding: 0 1.2rem; }
      .featured-card { grid-template-columns: 1fr; }
    }

    /* Bundle builder page (page-templates/template-bundle.php) — scoped so
       its product-page-style classes (product-title, product-price, etc.)
       don't collide with the homepage's own use of those same names. */
    .savori-bundle-page .product-wrap { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; }
    .savori-bundle-page .product-gallery { position: sticky; top: 0; align-self: start; background: var(--ivory-d); }
    .savori-bundle-page .product-main-img { width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .savori-bundle-page .product-info { padding: 2.5rem 2.5rem 3rem; background: var(--ivory); border-left: 1px solid var(--pale); }
    .savori-bundle-page .product-title { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.5rem,3vw,2.1rem); font-weight: 400; line-height: 1.2; color: var(--charcoal); margin-bottom: 0.8rem; }
    .savori-bundle-page .product-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.8rem; }
    .savori-bundle-page .rating-val { font-weight: 700; color: var(--charcoal); }
    .savori-bundle-page .rating-ct { color: var(--light); }
    .savori-bundle-page .product-price-row { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 0.3rem; }
    .savori-bundle-page .product-price { font-family: Georgia, 'Times New Roman', serif; font-size: 2rem; font-weight: 400; color: var(--charcoal); }
    .savori-bundle-page .product-sale-tag { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; background: var(--gold-d); color: var(--ivory); padding: 0.25rem 0.6rem; align-self: center; }
    .savori-bundle-page .product-save { font-size: 0.78rem; color: var(--gold-d); font-weight: 600; margin-bottom: 1rem; }
    .savori-bundle-page .stock-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; font-weight: 600; color: #5a9e6a; margin-bottom: 1.5rem; }
    .savori-bundle-page .stock-dot { width: 7px; height: 7px; border-radius: 50%; background: #5a9e6a; flex-shrink: 0; }
    .savori-bundle-page .product-blurb { font-size: 0.85rem; color: var(--brown); line-height: 1.7; margin-bottom: 1.4rem; }

    .savori-bundle-page .sel-block { margin-bottom: 1.2rem; }
    .savori-bundle-page .sel-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.5rem; display: block; }
    .savori-bundle-page .sel-label em { color: var(--light); font-style: normal; font-weight: 400; }
    .savori-bundle-page .fragrance-select { width: 100%; padding: 0.8rem 2.4rem 0.8rem 1rem; background: var(--ivory-d); border: 1.5px solid var(--pale); border-radius: var(--r); color: var(--charcoal); font-family: inherit; font-size: 0.85rem; appearance: none; -webkit-appearance: none; cursor: pointer; outline: none; transition: border-color var(--transition), background var(--transition); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a5a48' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
    .savori-bundle-page .fragrance-select:focus { border-color: var(--gold); background-color: var(--white); }
    .savori-bundle-page .fragrance-select.selected { border-color: var(--gold-d); }
    .savori-bundle-page .sel-hint { font-size: 0.73rem; color: var(--light); margin-bottom: 1.2rem; line-height: 1.6; }

    .savori-bundle-page .atc-error { font-size: 0.73rem; color: var(--red); min-height: 1.2em; margin-bottom: 0.5rem; font-weight: 600; }
    .savori-bundle-page .atc-success { display: none; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--green); font-weight: 600; margin-bottom: 0.5rem; }
    .savori-bundle-page .atc-success.show { display: flex; }
    .savori-bundle-page .atc-btn { width: 100%; padding: 1rem 2rem; background: var(--gold-d); color: var(--ivory); border: none; border-radius: var(--r); font-family: inherit; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; position: relative; overflow: hidden; transition: background var(--transition), transform 0.15s; margin-bottom: 0.75rem; }
    .savori-bundle-page .atc-btn:hover { background: var(--gold); }
    .savori-bundle-page .atc-btn:disabled { opacity: 0.5; cursor: not-allowed; }
    .savori-bundle-page .atc-btn.loading::after { content: ''; position: absolute; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.6s linear infinite; top: 50%; left: 50%; transform: translate(-50%,-50%); }
    .savori-bundle-page .atc-btn.loading .btn-text { opacity: 0; }
    @keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

    .savori-bundle-page .trust-row { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--pale); }
    .savori-bundle-page .trust-pill { display: flex; align-items: center; gap: 0.35rem; font-size: 0.68rem; color: var(--light); }

    .savori-bundle-page .body-content { max-width: 1400px; margin: 0 auto; padding: 0 2rem 4rem; }
    .savori-bundle-page .content-divider { height: 1px; background: var(--pale); margin: 3rem 0; }
    .savori-bundle-page .section-eyebrow { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.6rem; display: block; }
    .savori-bundle-page .section-heading { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.2rem,2.5vw,1.7rem); font-weight: 400; color: var(--charcoal); margin-bottom: 1.4rem; }

    .savori-bundle-page .why-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; max-width: 800px; }
    .savori-bundle-page .why-list li { display: flex; gap: 1rem; padding: 1rem 1.2rem; background: var(--ivory-d); border-radius: var(--r); border-left: 3px solid var(--gold-d); font-size: 0.85rem; color: var(--brown); line-height: 1.7; }
    .savori-bundle-page .why-list li strong { color: var(--charcoal); }

    .savori-bundle-page .shipping-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 3rem; max-width: 900px; }
    .savori-bundle-page .ship-block h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.6rem; }
    .savori-bundle-page .ship-block p, .savori-bundle-page .ship-block li { font-size: 0.84rem; color: var(--brown); line-height: 1.8; margin-bottom: 0.35rem; }
    .savori-bundle-page .ship-block ul { list-style: none; }
    .savori-bundle-page .ship-block li::before { content: '→ '; color: var(--gold-d); }

    .savori-bundle-page .returns-box { max-width: 760px; }
    .savori-bundle-page .returns-box p { font-size: 0.84rem; color: var(--brown); line-height: 1.8; margin-bottom: 0.7rem; }
    .savori-bundle-page .returns-box a { color: var(--gold-d); text-decoration: underline; }

    .savori-bundle-page .guide-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.2rem; max-width: 1000px; }
    .savori-bundle-page .guide-card { padding: 1.2rem; background: var(--ivory-d); border-radius: var(--r); border: 1px solid var(--pale); }
    .savori-bundle-page .guide-card h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.5rem; }
    .savori-bundle-page .guide-card p { font-size: 0.8rem; color: var(--mid); line-height: 1.75; }

    .savori-bundle-page .disclaimer-box { background: var(--ivory-dd); border: 1px solid var(--pale); border-radius: var(--r); padding: 1.4rem 1.8rem; max-width: 900px; }
    .savori-bundle-page .disclaimer-box p { font-size: 0.78rem; color: var(--light); line-height: 1.85; margin-bottom: 0.6rem; }
    .savori-bundle-page .disclaimer-box p:last-child { margin-bottom: 0; }

    .savori-bundle-page .stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.5rem; max-width: 900px; }
    .savori-bundle-page .stat-card { text-align: center; padding: 2rem 1.5rem; background: var(--ivory-d); border-radius: var(--r); border: 1px solid var(--pale); }
    .savori-bundle-page .stat-card .stat-num { font-family: Georgia, 'Times New Roman', serif; font-size: 2.4rem; font-weight: 400; color: var(--gold); display: block; margin-bottom: 0.4rem; }
    .savori-bundle-page .stat-card .stat-label { font-size: 0.78rem; color: var(--brown); line-height: 1.65; }

    .savori-bundle-page .promise-box { border-radius: var(--r2); padding: 2.5rem 2rem; max-width: 800px; }
    .savori-bundle-page .promise-box p { font-size: 0.85rem; color: rgba(237,232,228,0.8); line-height: 1.85; margin-bottom: 0.7rem; }
    .savori-bundle-page .promise-box p:last-child { margin-bottom: 0; }

    .savori-bundle-page .reviews-summary { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
    .savori-bundle-page .reviews-big-num { font-family: Georgia, 'Times New Roman', serif; font-size: 3.5rem; color: var(--charcoal); font-weight: 400; }
    .savori-bundle-page .reviews-stars-lg { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
    .savori-bundle-page .reviews-based { font-size: 0.78rem; color: var(--light); margin-top: 0.2rem; }
    .savori-bundle-page .review-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.2rem; max-width: 1000px; }
    .savori-bundle-page .review-card { padding: 1.4rem; background: var(--ivory-d); border-radius: var(--r); border: 1px solid var(--pale); }
    .savori-bundle-page .review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.5rem; }
    .savori-bundle-page .review-title { font-size: 0.8rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.4rem; }
    .savori-bundle-page .review-body { font-size: 0.78rem; color: var(--brown); line-height: 1.7; }
    .savori-bundle-page .review-author { font-size: 0.7rem; color: var(--light); margin-top: 0.7rem; }

    /* Sticky mobile add-to-cart bar */
    .sticky-atc { position: fixed; bottom: 0; left: 0; right: 0; z-index: 500; background: rgba(28,28,30,0.97); backdrop-filter: blur(14px); border-top: 1px solid rgba(192,135,110,0.2); padding: 0.8rem 1.2rem; display: none; align-items: center; gap: 1rem; transform: translateY(100%); transition: transform var(--transition); }
    .sticky-atc.show { transform: none; }
    .sticky-atc-info { flex: 1; min-width: 0; }
    .sticky-atc-title { font-size: 0.82rem; font-weight: 700; color: var(--charcoal); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .sticky-atc-price { font-size: 0.75rem; color: var(--gold-d); margin-top: 0.1rem; }
    .sticky-atc-btn { flex-shrink: 0; padding: 0.72rem 1.3rem; background: var(--gold-d); color: var(--ivory); border: none; font-family: inherit; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; border-radius: var(--r); }

    @media(max-width:900px) {
      .savori-bundle-page .product-wrap { grid-template-columns: 1fr; }
      .savori-bundle-page .product-gallery { position: relative; top: 0; }
      .savori-bundle-page .product-info { border-left: none; border-top: 1px solid var(--pale); padding: 2rem 1.4rem; }
      .sticky-atc { display: flex; }
    }
    @media(max-width:768px) { .savori-bundle-page .body-content { padding: 0 1.2rem 3rem; } }
    @media(max-width:600px) { .savori-bundle-page .shipping-grid { grid-template-columns: 1fr; } }

    /* Returns policy / generic legal page (page.php) */
    .savori-returns-page .container { max-width: 780px; }
    .savori-returns-page h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 400; line-height: 1.2; margin-bottom: 0.8rem; color: var(--charcoal); }
    .policy-header { padding: 3.5rem 0 2.5rem; border-bottom: 1px solid var(--pale); }
    .policy-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-d); display: block; margin-bottom: 0.8rem; }
    .policy-meta { font-size: 0.75rem; color: var(--light); display: flex; gap: 1.2rem; flex-wrap: wrap; }
    .policy-body { padding: 2.5rem 0 4rem; }
    .toc { background: var(--white); border: 1px solid rgba(192,135,110,0.15); border-radius: var(--r2); padding: 1.5rem; margin-bottom: 2.5rem; }
    .toc-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 1rem; }
    .toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; padding: 0; margin: 0; }
    .toc-list a { font-size: 0.83rem; color: var(--mid); transition: color var(--transition); }
    .toc-list a:hover { color: var(--gold-d); }
    .toc-list li { display: flex; gap: 0.5rem; }
    .toc-num { font-size: 0.65rem; color: var(--light); min-width: 1.4rem; padding-top: 0.1rem; }
    .policy-section { margin-bottom: 2.8rem; padding-bottom: 2.8rem; border-bottom: 1px solid var(--pale); }
    .policy-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .savori-returns-page h2 { display: flex; align-items: baseline; gap: 0.6rem; scroll-margin-top: 90px; }
    .savori-returns-page h2 .sec-num { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-d); background: rgba(192,135,110,0.12); padding: 0.15rem 0.5rem; border-radius: 100px; flex-shrink: 0; }
    .policy-body ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1rem; padding-left: 0.25rem; }
    .policy-body ul li { font-size: 0.88rem; line-height: 1.7; color: var(--mid); display: flex; align-items: flex-start; gap: 0.7rem; }
    .policy-body ul li::before { content: ''; width: 4px; height: 4px; background: var(--gold-d); border-radius: 50%; flex-shrink: 0; margin-top: 0.55rem; }
    .policy-body ol { padding-left: 1.4rem; margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.45rem; }
    .policy-body ol li { font-size: 0.88rem; line-height: 1.7; color: var(--mid); }
    .callout { border-radius: var(--r2); padding: 1.2rem 1.4rem; margin: 1.2rem 0; font-size: 0.84rem; line-height: 1.7; }
    .callout-info { background: rgba(192,135,110,0.07); border: 1px solid rgba(192,135,110,0.2); color: var(--brown); }
    .callout-warn { background: rgba(230,126,34,0.07); border: 1px solid rgba(230,126,34,0.25); color: #d4870a; }
    .callout-contact { background: rgba(46,125,82,0.07); border: 1px solid rgba(46,125,82,0.25); color: #2e7d52; }
    .callout strong { font-weight: 700; }

    /* ── AROMAS INTRO CARD ── shown over the hero on first load, dismissed
       with the × button to reveal the bottle beneath. */
    .aromas-overlay {
      position: fixed; inset: 0; z-index: 6000;
      display: flex; align-items: center; justify-content: center;
      padding: 2rem;
      background: radial-gradient(circle at 50% 30%, rgba(192,135,110,0.1), rgba(10,10,12,0.94) 70%);
      backdrop-filter: blur(18px);
      opacity: 1; transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), visibility 0.5s;
    }
    .aromas-overlay.closed { opacity: 0; visibility: hidden; pointer-events: none; }
    .aromas-card {
      position: relative;
      width: 100%; max-width: 720px; max-height: 88vh; overflow-y: auto;
      background: linear-gradient(160deg, #201c1a 0%, #141213 55%, #0e0d0d 100%);
      border: 1px solid rgba(192,135,110,0.28);
      border-radius: 2px;
      padding: 3.2rem 3rem;
      box-shadow: 0 40px 120px rgba(0,0,0,0.65), 0 0 0 1px rgba(192,135,110,0.06) inset;
      animation: aromasRise 0.7s cubic-bezier(0.16,1,0.3,1) both;
    }
    @keyframes aromasRise { from { opacity:0; transform: translateY(24px) scale(0.97); } to { opacity:1; transform: translateY(0) scale(1); } }
    .aromas-close {
      position: absolute; top: 1.3rem; right: 1.3rem;
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(245,240,232,0.06); border: 1px solid rgba(192,135,110,0.25);
      color: var(--charcoal); font-size: 1.1rem; line-height: 1;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all var(--transition);
    }
    .aromas-close:hover { background: var(--gold-d); border-color: var(--gold-d); color: var(--ivory); transform: rotate(90deg); }
    .aromas-header { text-align: center; margin-bottom: 2.4rem; }
    .aromas-eyebrow { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
    .aromas-title {
      font-family: Georgia, 'Times New Roman', serif; font-weight: 400;
      font-size: clamp(2.2rem, 5vw, 3rem); letter-spacing: 0.08em;
      background: linear-gradient(135deg,#6b3a2a 0%,#c0876e 20%,#edc4a8 38%,#f5d8c0 50%,#edc4a8 62%,#c0876e 80%,#6b3a2a 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      margin-bottom: 0.6rem;
    }
    .aromas-sub { font-size: 0.82rem; color: var(--brown); font-style: italic; }
    .aromas-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .aromas-range-label {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
      color: var(--gold-d); padding-bottom: 0.7rem; margin-bottom: 1.3rem;
      border-bottom: 1px solid rgba(192,135,110,0.25);
    }
    .aromas-entry { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
    .aromas-entry:last-child { margin-bottom: 0; }
    .aromas-code {
      flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: Georgia, 'Times New Roman', serif; font-size: 0.78rem; font-weight: 700;
      color: var(--gold); border: 1px solid rgba(192,135,110,0.4);
      background: rgba(192,135,110,0.08);
    }
    .aromas-name { font-family: Georgia, 'Times New Roman', serif; font-size: 1rem; color: var(--charcoal); margin-bottom: 0.3rem; }
    .aromas-notes { font-size: 0.74rem; color: var(--mid); letter-spacing: 0.02em; }
    .aromas-footer { text-align: center; margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(192,135,110,0.15); font-size: 0.72rem; color: var(--light); letter-spacing: 0.05em; }

    @media(max-width:640px) {
      .aromas-card { padding: 2.4rem 1.6rem; }
      .aromas-columns { grid-template-columns: 1fr; gap: 2rem; }
    }
    .callout a { color: inherit; text-decoration: underline; }