    *, *::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;
      --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 scaling the whole section is a safe way to do a
         Ken Burns zoom without disturbing background-size:cover coverage. */
      transform: scale(1.08);
      animation: heroKenBurns 9s cubic-bezier(0.25,0.1,0.25,1) forwards;
    }
    @keyframes heroKenBurns { from { transform: scale(1.08); } to { transform: scale(1); } }
    @media (prefers-reduced-motion: reduce) {
      .hero { animation: none; transform: 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%);
    }
    .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-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; }

    .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-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; }
    .admin-trigger { background:rgba(245,240,232,0.05); color:rgba(245,240,232,0.22); padding:0.4rem 0.8rem; border-radius:var(--r); font-size:0.67rem; transition:all var(--transition); cursor:pointer; border:none; font-family:inherit; }
    .admin-trigger:hover { background:rgba(192,135,110,0.12); color:var(--gold); }

    /* ── 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; } }
    /* ── AUTH GATE ── */
    .auth-overlay { position:fixed; inset:0; background:rgba(10,10,12,0.92); backdrop-filter:blur(12px); z-index:4000; display:flex; align-items:center; justify-content:center; padding:1.5rem; opacity:0; pointer-events:none; transition:opacity 0.3s ease; }
    .auth-overlay.open { opacity:1; pointer-events:all; }
    .auth-box { background:var(--white); border-radius:var(--r2); width:100%; max-width:400px; padding:2.5rem; box-shadow:0 40px 100px rgba(0,0,0,0.6); transform:scale(0.96); transition:transform 0.3s ease; border:1px solid rgba(192,135,110,0.2); }
    .auth-overlay.open .auth-box { transform:scale(1); }
    .auth-logo { font-family:Georgia,serif; font-size:1.6rem; font-weight:400; letter-spacing:0.3em; background:linear-gradient(135deg,#6b3a2a,#c0876e,#edc4a8,#c0876e,#6b3a2a); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:0.3rem; }
    .auth-label { font-size:0.6rem; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold-d); margin-bottom:1.8rem; display:block; }
    .auth-title { font-family:Georgia,serif; font-size:1.25rem; color:var(--charcoal); margin-bottom:0.4rem; }
    .auth-sub { font-size:0.78rem; color:var(--mid); margin-bottom:1.8rem; line-height:1.6; }
    .auth-field { position:relative; margin-bottom:1rem; }
    .auth-input { width:100%; padding:0.85rem 3rem 0.85rem 1rem; border:1.5px solid var(--pale); border-radius:var(--r); background:var(--ivory); color:var(--charcoal); font-family:inherit; font-size:0.9rem; outline:none; transition:border-color 0.3s ease; }
    .auth-input:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(192,135,110,0.12); }
    .auth-input.error { border-color:var(--red); box-shadow:0 0 0 3px rgba(192,57,43,0.1); }
    .auth-toggle { position:absolute; right:0.9rem; top:50%; transform:translateY(-50%); background:none; border:none; color:var(--light); cursor:pointer; font-size:0.85rem; padding:0.2rem; }
    .auth-toggle:hover { color:var(--gold-d); }
    .auth-btn { width:100%; background:var(--gold-d); color:var(--ivory); padding:0.9rem; border-radius:var(--r); font-weight:700; font-size:0.8rem; letter-spacing:0.1em; text-transform:uppercase; border:none; cursor:pointer; transition:all 0.3s ease; margin-top:0.5rem; }
    .auth-btn:hover:not(:disabled) { background:var(--gold-l); color:#0a0a0c; }
    .auth-btn:disabled { opacity:0.45; cursor:not-allowed; }
    .auth-error { font-size:0.76rem; color:var(--red); margin-top:0.5rem; min-height:1.2em; font-weight:600; }
    .auth-lockout { background:rgba(192,57,43,0.08); border:1px solid rgba(192,57,43,0.25); border-radius:var(--r); padding:0.8rem 1rem; font-size:0.78rem; color:var(--red); margin-bottom:1rem; line-height:1.6; }
    .auth-attempts { font-size:0.7rem; color:var(--light); text-align:center; margin-top:0.8rem; }
    .auth-security { display:flex; align-items:center; gap:0.4rem; font-size:0.65rem; color:var(--light); margin-top:1.2rem; justify-content:center; }
    .auth-cancel { width:100%; background:none; border:none; color:var(--light); font-size:0.75rem; cursor:pointer; margin-top:0.6rem; padding:0.4rem; font-family:inherit; transition:color 0.3s ease; }
    .auth-cancel:hover { color:var(--brown); }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ 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); }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ ADMIN MODAL Ξ²β€β‚¬Ξ²β€β‚¬ */
    .modal-overlay { position:fixed; inset:0; background:rgba(13,13,15,0.65); backdrop-filter:blur(6px); z-index:3000; display:flex; align-items:center; justify-content:center; padding:1.5rem; opacity:0; pointer-events:none; transition:opacity var(--transition); }
    .modal-overlay.open { opacity:1; pointer-events:all; }
    .admin-panel { background:var(--white); border-radius:var(--r2); width:100%; max-width:940px; max-height:92vh; display:flex; flex-direction:column; box-shadow:0 30px 100px rgba(13,13,15,0.35); transform:scale(0.95); transition:transform var(--transition); }
    .modal-overlay.open .admin-panel { transform:scale(1); }
    .admin-header { padding:1.4rem 2rem; border-bottom:1px solid var(--pale); display:flex; align-items:center; justify-content:space-between; }
    .admin-title { font-weight:800; font-size:1.05rem; display:flex; align-items:center; gap:0.6rem; color:var(--charcoal); }
    .admin-title span { background:var(--gold-d); color:var(--ivory); padding:0.18rem 0.5rem; border-radius:4px; font-size:0.6rem; letter-spacing:0.1em; }
    .admin-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); }
    .admin-close:hover { background:var(--charcoal); color:var(--ivory); }
    .admin-body { flex:1; overflow-y:auto; }
    .admin-tabs { display:flex; border-bottom:1px solid var(--pale); }
    .admin-tab { padding:0.9rem 1.4rem; font-size:0.74rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--light); transition:all var(--transition); cursor:pointer; border:none; background:none; border-bottom:2px solid transparent; font-family:inherit; }
    .admin-tab.active { color:var(--charcoal); border-bottom-color:var(--gold-d); }
    .admin-tab:hover:not(.active) { color:var(--brown); }
    .admin-pane { display:none; padding:1.8rem 2rem; }
    .admin-pane.active { display:block; }

    /* Filter bar in admin list */
    .admin-filter-bar { display:flex; gap:0.4rem; flex-wrap:wrap; margin-bottom:1.2rem; }
    .admin-filter-btn { background:var(--ivory-d); border:1.5px solid var(--pale); color:var(--mid); padding:0.3rem 0.85rem; border-radius:100px; font-size:0.68rem; font-weight:600; letter-spacing:0.07em; text-transform:uppercase; cursor:pointer; transition:all var(--transition); font-family:inherit; }
    .admin-filter-btn.active, .admin-filter-btn:hover { background:var(--charcoal); border-color:var(--charcoal); color:var(--ivory); }

    .form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; }
    .form-group { display:flex; flex-direction:column; gap:0.35rem; }
    .form-group.full { grid-column:1/-1; }
    .form-label { font-size:0.7rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--brown); }
    .form-input, .form-select, .form-textarea { padding:0.7rem 0.95rem; border:1.5px solid var(--pale); border-radius:var(--r); font-family:inherit; font-size:0.86rem; color:var(--charcoal); background:var(--white); transition:border-color var(--transition); outline:none; }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(192,135,110,0.12); }
    .form-textarea { resize:vertical; min-height:80px; }
    .form-hint { font-size:0.68rem; color:var(--light); }

    .color-options { display:flex; gap:0.5rem; flex-wrap:wrap; }
    .color-opt { width:28px; height:28px; border-radius:50%; cursor:pointer; border:3px solid transparent; transition:all var(--transition); }
    .color-opt.selected { border-color:var(--gold-d); transform:scale(1.2); }
    .color-opt:hover { transform:scale(1.1); }

    .form-actions { display:flex; gap:0.75rem; margin-top:1.4rem; justify-content:flex-end; }
    .btn-cancel { background:var(--ivory-d); color:var(--brown); padding:0.65rem 1.4rem; border-radius:var(--r); font-weight:600; font-size:0.8rem; transition:all var(--transition); }
    .btn-cancel:hover { background:var(--pale); }
    .btn-save { background:var(--charcoal); color:var(--ivory); padding:0.65rem 1.7rem; border-radius:var(--r); font-weight:700; font-size:0.8rem; letter-spacing:0.05em; transition:all var(--transition); }
    .btn-save:hover { background:var(--gold-d); }

    .admin-list { display:flex; flex-direction:column; gap:0.6rem; }
    .admin-list-item { display:flex; align-items:center; gap:1rem; padding:0.85rem; border:1.5px solid var(--pale); border-radius:var(--r); transition:border-color var(--transition); }
    .admin-list-item:hover { border-color:rgba(192,135,110,0.4); }
    .admin-item-img { width:50px; height:50px; border-radius:var(--r); flex-shrink:0; display:flex; align-items:center; justify-content:center; overflow:hidden; }
    .admin-item-info { flex:1; }
    .admin-item-name { font-weight:700; font-size:0.85rem; color:var(--charcoal); }
    .admin-item-meta { font-size:0.7rem; color:var(--light); }
    .admin-item-price { font-weight:700; font-size:0.9rem; color:var(--charcoal); margin-right:0.75rem; }
    .admin-item-actions { display:flex; gap:0.4rem; }
    .btn-sm { padding:0.35rem 0.8rem; border-radius:var(--r); font-size:0.68rem; font-weight:600; transition:all var(--transition); }
    .btn-sm.edit { background:var(--ivory-d); color:var(--brown); }
    .btn-sm.edit:hover { background:var(--charcoal); color:var(--ivory); }
    .btn-sm.del { background:#fde8e8; color:var(--red); }
    .btn-sm.del:hover { background:var(--red); color:#fff; }
    .admin-add-btn { width:100%; padding:0.8rem; border:2px dashed var(--pale); border-radius:var(--r); color:var(--light); font-size:0.8rem; font-weight:600; background:none; font-family:inherit; display:flex; align-items:center; justify-content:center; gap:0.5rem; transition:all var(--transition); cursor:pointer; margin-top:0.5rem; }
    .admin-add-btn:hover { border-color:var(--gold); color:var(--gold-d); background:rgba(192,135,110,0.04); }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ ADMIN MODE BAR Ξ²β€β‚¬Ξ²β€β‚¬ */
    .admin-mode-bar { position:fixed; top:160px; left:0; right:0; z-index:900; background:var(--gold-d); color:var(--ivory); padding:0.45rem; text-align:center; font-size:0.7rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; display:none; }
    .admin-mode-bar.show { display:block; }

    /* Ξ²β€β‚¬Ξ²β€β‚¬ TOAST Ξ²β€β‚¬Ξ²β€β‚¬ */
    /* -- RETURNS MODAL -- */
    .returns-overlay { position:fixed; inset:0; background:rgba(13,13,15,0.7); backdrop-filter:blur(6px); z-index:4500; display:flex; align-items:center; justify-content:center; padding:1.5rem; opacity:0; pointer-events:none; transition:opacity var(--transition); }
    .returns-overlay.open { opacity:1; pointer-events:all; }
    .returns-panel { background:var(--ivory-d); border:1px solid rgba(192,135,110,0.15); border-radius:var(--r2); width:100%; max-width:720px; max-height:88vh; display:flex; flex-direction:column; box-shadow:0 30px 80px rgba(0,0,0,0.5); transform:translateY(12px); transition:transform var(--transition); }
    .returns-overlay.open .returns-panel { transform:translateY(0); }
    .returns-panel-header { padding:1.4rem 2rem; border-bottom:1px solid var(--pale); display:flex; align-items:center; justify-content:space-between; flex-shrink:0; }
    .returns-panel-title { font-family:Georgia,'Times New Roman',serif; font-weight:700; font-size:1.1rem; color:var(--charcoal); }
    .returns-panel-close { width:34px; height:34px; border-radius:50%; background:var(--white); color:var(--brown); display:flex; align-items:center; justify-content:center; font-size:1.1rem; transition:all var(--transition); cursor:pointer; border:none; font-family:inherit; }
    .returns-panel-close:hover { background:var(--charcoal); color:var(--ivory); }
    .returns-body { flex:1; overflow-y:auto; padding:2rem; scrollbar-width:thin; scrollbar-color:var(--gold) transparent; }
    .returns-body h2 { font-family:Georgia,'Times New Roman',serif; font-size:1rem; font-weight:700; color:var(--charcoal); margin:1.6rem 0 0.5rem; }
    .returns-body h2:first-child { margin-top:0; }
    .returns-body p { font-size:0.85rem; color:var(--mid); line-height:1.8; margin-bottom:0.7rem; }
    .returns-body ul { margin:0.4rem 0 0.8rem 1.2rem; display:flex; flex-direction:column; gap:0.4rem; }
    .returns-body ul li { font-size:0.85rem; color:var(--mid); line-height:1.7; }
    .returns-body strong { color:var(--brown); font-weight:700; }
.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%; }
      .admin-panel { max-height:100vh; border-radius:0; }
      .form-grid { grid-template-columns:1fr; }
      .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); } }