/* ==========================================================
   GIFTY KUWAIT — Static HTML Front-End
   Fresh & Welcoming Gift Brand: Pink · Coral · Gold · Cream
   ========================================================== */

:root {
  /* Brand — primary pink/raspberry */
  --brand:        #E63E7C;     /* primary brand pink */
  --brand-2:      #C2185B;     /* deep raspberry */
  --brand-3:      #FF80AB;     /* soft pink */
  --brand-4:      #AD1457;     /* plum-pink */
  /* Aliases for legacy "maroon" var names (so old classes keep working) */
  --maroon:       #E63E7C;
  --maroon-2:     #C2185B;
  --maroon-3:     #AD1457;

  /* Gold */
  --gold:         #E8B530;
  --gold-soft:    #F5D77A;
  --gold-deep:    #B68A1E;

  /* Mint / Fresh accent */
  --mint:         #4DD0B5;
  --mint-2:       #26A69A;

  /* Backgrounds */
  --cream:        #FFF9F5;
  --cream-2:      #FFEDE2;
  --peach:        #FFE0CC;
  --ivory:        #FFFDFB;
  --beige:        #FAF1E6;

  /* Text */
  --dark:         #2D1B36;
  --ink:          #3A2540;
  --muted:        #8A6B78;

  /* Lines, shadows */
  --line:         #F3DACB;
  --line-soft:    #F8E7DA;
  --line-gold:    rgba(232,181,48,.4);
  --white:        #ffffff;
  --shadow-sm:    0 6px 20px rgba(230,62,124,.08);
  --shadow:       0 16px 50px rgba(194,24,91,.18);
  --shadow-lg:    0 30px 80px rgba(173,20,87,.25);

  --r-sm: 14px; --r: 22px; --r-lg: 34px;

  /* Gradients */
  --grad-brand:   linear-gradient(135deg, #FF6FA3 0%, #E63E7C 50%, #C2185B 100%);
  --grad-maroon:  linear-gradient(135deg, #FF6FA3 0%, #E63E7C 50%, #C2185B 100%);
  --grad-gold:    linear-gradient(135deg, #F5D77A 0%, #E8B530 50%, #B68A1E 100%);
  --grad-warm:    linear-gradient(135deg, #FFF9F5 0%, #FFEDE2 60%, #FFE0CC 100%);
  --grad-mint:    linear-gradient(135deg, #B2EBE0 0%, #4DD0B5 100%);
  --grad-fresh:   linear-gradient(135deg, #FFE0EC 0%, #FFEDE2 50%, #FFF6E9 100%);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lato', 'Segoe UI', system-ui, sans-serif;
  font-size: 15.5px; line-height: 1.7;
  color: var(--dark); background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4 { font-family: 'Rubik','Segoe UI',sans-serif; line-height: 1.15; margin: 0 0 14px; color: var(--dark); font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.8rem); font-weight: 900; letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { margin: 0 0 14px; color: #4a3a52; }
a  { color: var(--brand-2); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--brand); }
img { max-width: 100%; display: block; }
.container { width: 92%; max-width: 1320px; margin: 0 auto; }
::selection { background: var(--brand); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--brand), var(--brand-2)); border-radius: 10px; }

/* === Top bar === */
.topbar { background: var(--grad-brand); color: #fff; font-size: 13px; padding: 9px 0; border-bottom: 1px solid var(--line-gold); }
.topbar a { color: #fff; opacity: .95; text-decoration: none; }
.topbar a:hover { color: var(--gold-soft); opacity: 1; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-inner > span { display: inline-flex; align-items: center; line-height: 1; }
.topbar-actions { display: inline-flex; align-items: center; gap: 14px; }
.topbar-actions a { display: inline-flex; align-items: center; gap: 7px; transition: color .25s var(--ease), transform .25s var(--ease); }
.topbar-actions a:hover { transform: translateY(-1px); }
.topbar-actions svg { width: 14px; height: 14px; flex-shrink: 0; display: block; }
.topbar-divider { display: inline-block; width: 1px; height: 14px; background: rgba(255,255,255,.35); }
.topbar-wa svg { width: 15px; height: 15px; }
.topbar-follow { font-family: 'Rubik', sans-serif; font-weight: 600; font-size: 12px; opacity: .85; letter-spacing: .04em; white-space: nowrap; }
.topbar-social svg { width: 15px; height: 15px; }
@media (max-width: 640px) {
  .topbar { font-size: 12px; padding: 8px 0; text-align: center; }
  .topbar-inner { justify-content: center; gap: 10px; }
  .topbar-actions { gap: 10px; }
  .topbar-follow { display: none; }
}

/* === Header === */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,249,245,.92); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); border-bottom: 1px solid var(--line-soft); transition: box-shadow .3s var(--ease), background .3s var(--ease); }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(194,24,91,.08); background: rgba(255,255,255,.96); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 50px; height: 50px; object-fit: contain; transition: transform .5s var(--ease-bounce); filter: drop-shadow(0 4px 10px rgba(230,62,124,.25)); }
.logo:hover img { transform: rotate(-8deg) scale(1.1); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { font-family: 'Rubik',sans-serif; font-size: 22px; color: var(--brand-2); font-weight: 800; letter-spacing: -.01em; }
.logo-text em { font-size: 10px; letter-spacing: 5px; color: var(--gold-deep); text-transform: uppercase; font-style: normal; margin-top: 4px; font-weight: 600; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav .nav-list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-item {
  display: inline-flex; align-items: center;
  padding: 10px 16px; border-radius: 99px;
  font-weight: 600; font-size: 14px;
  color: var(--dark); font-family: 'Rubik',sans-serif;
  transition: all .25s var(--ease);
  position: relative; white-space: nowrap;
  cursor: pointer; background: transparent; border: 0;
}
.nav-item:hover { background: var(--cream-2); color: var(--brand-2); transform: translateY(-2px); }
.nav-item.active { background: var(--grad-brand); color: #fff; box-shadow: 0 6px 18px rgba(230,62,124,.35); }
.has-mega { position: static; }
.has-mega > .nav-item .caret { font-size: 10px; margin-left: 6px; opacity: .75; transition: transform .3s var(--ease); display: inline-block; }
.has-mega:hover > .nav-item .caret, .has-mega:focus-within > .nav-item .caret { transform: rotate(180deg); }
.mega {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--r) var(--r);
  padding: 30px 0 34px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .3s var(--ease), visibility .3s var(--ease), transform .3s var(--ease);
  z-index: 80;
  border-top: 1px solid var(--line-soft);
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner {
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px 14px;
}
.mega-cat {
  display: flex; gap: 14px; align-items: center;
  padding: 12px; border-radius: 14px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  color: var(--dark);
  min-width: 0; position: relative;
  border: 1px solid transparent;
}
.mega-cat:hover {
  background: #fff;
  color: var(--brand-2);
  transform: translateY(-2px);
  border-color: var(--line-soft);
  box-shadow: 0 8px 20px -10px rgba(45,27,54,.2);
}
.mega-cat .mega-ic {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--c, var(--brand));
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px -4px rgba(0,0,0,.18);
  transition: transform .35s var(--ease);
  /* clear any legacy background-image */
  background-image: none !important;
  border: 0;
}
.mega-cat:hover .mega-ic { transform: rotate(-6deg) scale(1.06); }
.mega-cat .mega-ic svg { width: 24px; height: 24px; display: block; }
.mega-cat span { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; flex: 1; }
.mega-cat strong { font-family: 'Rubik',sans-serif; font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mega-cat em { font-style: normal; font-size: 11.5px; opacity: .62; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 1180px) {
  .mega-inner { grid-template-columns: repeat(3, 1fr); padding: 0 20px; }
}

.header-actions { display: flex; align-items: center; gap: 8px; }
.ha { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--brand-2); border: 1px solid var(--line); transition: all .3s var(--ease); position: relative; }
.ha:hover { background: var(--grad-brand); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(230,62,124,.3); }
.ha svg { width: 18px; height: 18px; }
.cart-badge { position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px; background: var(--gold); color: var(--brand-2); font-size: 11px; font-weight: 700; border-radius: 99px; display: grid; place-items: center; font-family: 'Rubik',sans-serif; box-shadow: 0 2px 6px rgba(232,181,48,.4); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--brand-2); border-radius: 2px; transition: .3s; }
.nav-scrim { position: fixed; inset: 0; background: rgba(45,27,54,.5); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease); z-index: 65; }
.nav-scrim.show { opacity: 1; visibility: visible; }

@media (max-width: 1080px) {
  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: 88%; max-width: 360px; height: 100vh;
    background: #fff; box-shadow: var(--shadow-lg);
    padding: 76px 18px 24px;
    transition: right .35s var(--ease);
    z-index: 70; overflow-y: auto;
    display: flex; flex-direction: column; justify-content: flex-start;
  }
  .main-nav.open { right: 0; }
  .main-nav .nav-list { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .nav-item { width: 100%; }
  .has-mega { width: 100%; }
  /* Active state: when mega is open, highlight the trigger button */
  .has-mega.open > .nav-item {
    background: #ad1457;
    color: #fff;
    border-radius: 10px;
  }
  .has-mega.open > .nav-item .caret { color: #fff; opacity: 1; transform: rotate(180deg); }
  .mega { position: static; min-width: 0; box-shadow: none; padding: 0; opacity: 1; visibility: visible; transform: none; display: none; border: 0; background: transparent; }
  /* Mega scrolls within itself so it never covers other nav items below */
  .has-mega.open .mega {
    display: block;
    padding: 8px 4px 12px;
    max-height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    /* subtle inset shadow so user knows it's scrollable */
    box-shadow: inset 0 -12px 12px -8px rgba(0,0,0,.07);
  }
  .mega-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0; }
  .mega-cat { padding: 10px; border-radius: 12px; gap: 10px; background: #fff; border: 1px solid var(--line-soft); box-shadow: 0 2px 8px rgba(0,0,0,.06); flex-direction: row; align-items: center; }
  .mega-cat:hover { transform: none; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
  .mega-cat em { display: none; }
  .mega-cat .mega-ic { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; background: var(--c, var(--brand)); color: #fff; display: grid; place-items: center; box-shadow: 0 4px 10px -2px rgba(0,0,0,.2); }
  .mega-cat .mega-ic svg { width: 20px; height: 20px; display: block; color: #fff; stroke: #fff; }
  .mega-cat strong { font-size: 13px; white-space: normal; line-height: 1.2; }
  .nav-toggle { display: flex; }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 99px;
  font-family: 'Rubik',sans-serif; font-weight: 600; font-size: 14px;
  cursor: pointer; border: 2px solid transparent;
  transition: all .35s var(--ease);
  text-decoration: none; position: relative; overflow: hidden;
  letter-spacing: .2px;
}
.btn::before { content:''; position:absolute; inset:0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%); transform: translateX(-100%); transition: transform .6s var(--ease); }
.btn:hover::before { transform: translateX(100%); }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: 0 8px 22px rgba(230,62,124,.35); }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(194,24,91,.4); color: #fff; }
.btn-gold { background: var(--grad-gold); color: var(--brand-2); box-shadow: 0 8px 22px rgba(232,181,48,.35); }
.btn-gold:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(182,138,30,.45); }
.btn-ghost { background: transparent; color: var(--brand-2); border-color: var(--brand-2); }
.btn-ghost:hover { background: var(--brand-2); color: #fff; border-color: var(--brand-2); }
.btn-mint { background: var(--grad-mint); color: #0a4d44; box-shadow: 0 8px 22px rgba(77,208,181,.3); }
.btn-mint:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(38,166,154,.4); }
.btn-mini { padding: 9px 18px; font-size: 13px; }
.btn:active { transform: translateY(0) scale(.97); }

/* === Section utilities === */
.section { padding: 80px 0; position: relative; }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 44px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.eyebrow { display: inline-block; font-family: 'Rubik',sans-serif; font-size: 12px; letter-spacing: 5px; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; font-weight: 700; padding: 6px 16px; background: rgba(230,62,124,.08); border-radius: 99px; }

/* === Hero === */
.hero { position: relative; min-height: 680px; overflow: hidden; background: var(--brand-2); color: #fff; }
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(125deg, rgba(194,24,91,.78) 0%, rgba(173,20,87,.55) 45%, rgba(45,27,54,.55) 100%); }
.hero-inner { position: relative; z-index: 3; padding: 140px 0 130px; }
.hero h1 { color: #fff; max-width: 760px; font-size: clamp(2.4rem, 5.5vw, 4.4rem); text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero h1 .accent { color: var(--gold-soft); position: relative; display: inline-block; }
.hero h1 .accent::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 6px; background: var(--grad-gold); border-radius: 99px; opacity: .9; }
.hero p.lead { color: rgba(255,255,255,.92); font-size: 1.18rem; max-width: 600px; margin-bottom: 32px; text-shadow: 0 2px 14px rgba(0,0,0,.25); }
.hero .eyebrow { color: #fff; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.85); font-size: 13px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before { content: '✓'; display: inline-grid; place-items: center; width: 20px; height: 20px; background: var(--gold); color: var(--brand-2); border-radius: 50%; font-weight: 800; font-size: 11px; }

/* Floating decoration in hero */
.hero-deco { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-deco .d-bubble { position: absolute; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); }
.hero-deco .d-bubble.b1 { width: 220px; height: 220px; top: 8%; right: -40px; }
.hero-deco .d-bubble.b2 { width: 130px; height: 130px; bottom: 18%; right: 12%; background: radial-gradient(circle at 30% 30%, rgba(245,215,122,.35), rgba(245,215,122,0)); border-color: rgba(245,215,122,.3); }
.hero-deco .d-bubble.b3 { width: 90px; height: 90px; top: 28%; right: 28%; background: rgba(255,128,171,.18); border-color: rgba(255,128,171,.35); }
.hero-deco .d-bubble.b4 { width: 60px; height: 60px; top: 60%; right: 4%; background: rgba(77,208,181,.18); border-color: rgba(77,208,181,.4); }
.hero-deco .d-sparkle { position: absolute; font-size: 22px; opacity: .85; }
.hero-deco .d-sparkle.s1 { top: 18%; left: 6%; }
.hero-deco .d-sparkle.s2 { bottom: 22%; left: 3%; }
.hero-deco .d-sparkle.s3 { top: 55%; left: 48%; }

@media (max-width: 980px) { .hero { min-height: 560px; } .hero-inner { padding: 90px 0 90px; } }
@media (max-width: 720px) { .hero { min-height: 480px; } .hero-inner { padding: 70px 0 70px; } .hero-trust { gap: 12px; } }

/* === Feature strip === */
.features { background: #fff; padding: 34px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feature { display: flex; gap: 14px; align-items: center; padding: 6px 4px; }
.feature .f-ic { width: 52px; height: 52px; flex-shrink: 0; border-radius: 16px; background: var(--grad-fresh); display: grid; place-items: center; color: var(--brand-2); border: 1px solid var(--line); transition: transform .4s var(--ease-bounce); }
.feature:hover .f-ic { transform: rotate(-8deg) scale(1.08); background: var(--grad-gold); }
.feature .f-ic svg { width: 24px; height: 24px; }
.feature strong { display: block; font-family: 'Rubik',sans-serif; font-size: 14.5px; color: var(--brand-2); font-weight: 700; }
.feature em { font-style: normal; font-size: 12.5px; color: var(--muted); }
@media (max-width: 820px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

/* === Categories grid === */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1080px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  display: block; background: #fff; border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow-sm);
  color: var(--dark); position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  border: 1px solid var(--line-soft);
}
.cat-card::before { content:''; position:absolute; top:0; left:0; right:0; height: 4px; background: var(--c, var(--brand)); opacity: 0; transition: opacity .4s var(--ease); z-index: 4; }
.cat-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); color: var(--brand-2); }
.cat-card:hover::before { opacity: 1; }
.cat-card-img { position: relative; aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: var(--cream); overflow: hidden; }
.cat-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(45,27,54,.45) 100%); transition: opacity .4s var(--ease); }
.cat-card:hover .cat-card-img { transform: none; }
.cat-card-body { padding: 18px 18px 22px; text-align: center; }
.cat-card-body h3 { margin: 0 0 6px; font-size: 1.1rem; font-family: 'Rubik',sans-serif; font-weight: 700; }
.cat-card-body small { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand); font-weight: 600; }

/* === Occasions grid === */
.occ-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
@media (max-width: 1080px) { .occ-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 760px)  { .occ-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px)  { .occ-grid { grid-template-columns: repeat(2, 1fr); } }
.occ-card {
  display: block; background: #fff; border-radius: 18px;
  padding: 14px 12px; text-align: center;
  border: 1px solid var(--line-soft);
  transition: all .35s var(--ease);
  color: var(--dark);
}
.occ-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brand); color: var(--brand-2); }
.occ-card-img { aspect-ratio: 16/10; background-size: cover; background-position: center; border-radius: 12px; margin-bottom: 12px; background-color: var(--cream); }
.occ-card strong { display: block; font-family: 'Rubik',sans-serif; font-size: 13.5px; font-weight: 700; }

/* === Product card === */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .product-grid { grid-template-columns: 1fr; } }
/* Inside the filter layout, the right column is narrower — keep 3 cols there too */
.cat-main .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1280px) { .cat-main .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px)  { .cat-main .product-grid { grid-template-columns: 1fr; } }

/* Whole card acts as a link: cursor + lift on hover */
.product-card { cursor: pointer; }
.product-card .product-body { cursor: pointer; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.product-card { background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .4s var(--ease); display: flex; flex-direction: column; border: 1px solid var(--line-soft); position: relative; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--line); }
.product-img { position: relative; aspect-ratio: 1/1; display: block; overflow: hidden; background: var(--cream); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.product-card:hover .product-img img { transform: scale(1.08); }
.badge { position: absolute; padding: 5px 12px; border-radius: 99px; font-family: 'Rubik',sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .5px; color: #fff; backdrop-filter: blur(4px); }
.badge-new { top: 14px; left: 14px; background: var(--brand); box-shadow: 0 4px 12px rgba(230,62,124,.35); }
.badge-off { top: 14px; right: 14px; background: var(--gold); color: var(--brand-2); box-shadow: 0 4px 12px rgba(232,181,48,.35); }
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-cat { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-deep); font-family: 'Rubik',sans-serif; font-weight: 700; }
.product-title { font-size: 1.02rem; margin: 0; font-family: 'Rubik',sans-serif; font-weight: 700; }
.product-title a { color: var(--dark); }
.product-title a:hover { color: var(--brand); }
.product-short { font-size: 13px; color: var(--muted); margin: 0; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.product-price { display: inline-flex; flex-direction: row; align-items: baseline; gap: 6px; flex-wrap: nowrap; white-space: nowrap; }
.price-now { font-family: 'Rubik',sans-serif; font-size: 1rem; font-weight: 800; color: var(--brand-2); white-space: nowrap; }
.price-was { font-size: 11.5px; color: var(--muted); text-decoration: line-through; white-space: nowrap; }
.product-foot .btn { white-space: nowrap; flex-shrink: 0; }

/* === Page banner === */
.page-banner { position: relative; padding: 90px 0 80px; color: #fff; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: var(--grad-brand); z-index: 0; }
.page-banner .banner-img { position: absolute; inset: 0; z-index: 1; opacity: .35; }
.page-banner .banner-img img { width: 100%; height: 100%; object-fit: cover; }
.page-banner::after { content:''; position: absolute; left: 0; right: 0; bottom: -1px; height: 60px; background: linear-gradient(180deg, transparent, var(--cream)); z-index: 2; }
.page-banner .container { position: relative; z-index: 3; }
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-banner p { color: rgba(255,255,255,.92); max-width: 660px; font-size: 1.05rem; }
.page-banner .eyebrow { color: #fff; background: rgba(255,255,255,.15); }

/* === Breadcrumb === */
.crumbs { padding: 18px 0; font-size: 13px; color: var(--muted); }
.crumbs a { color: var(--brand-2); font-weight: 600; }
.crumbs a:hover { color: var(--brand); }
.crumbs .sep { margin: 0 8px; opacity: .6; }

/* === Product detail === */
.pd-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; padding: 40px 0 80px; }
@media (max-width: 820px) { .pd-layout { grid-template-columns: 1fr; gap: 32px; } }
.pd-gallery { background: #fff; border-radius: var(--r); padding: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.pd-main-img { aspect-ratio: 1/1; border-radius: var(--r-sm); overflow: hidden; background: var(--cream); }
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 14px; }
.pd-thumbs img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 10px; cursor: pointer; border: 2px solid transparent; background: var(--cream); transition: border-color .25s var(--ease); }
.pd-thumbs img.active, .pd-thumbs img:hover { border-color: var(--brand); }
.pd-info .pd-cat { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-deep); font-family: 'Rubik',sans-serif; font-weight: 700; }
.pd-info h1 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin: 12px 0 16px; }
.pd-info .pd-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.pd-info .pd-price .now { font-family: 'Rubik',sans-serif; font-size: 2rem; color: var(--brand-2); font-weight: 800; }
.pd-info .pd-price .was { color: var(--muted); text-decoration: line-through; font-size: 1.05rem; }
.pd-info .pd-price .off { background: var(--gold); color: var(--brand-2); padding: 5px 12px; border-radius: 99px; font-family: 'Rubik',sans-serif; font-size: 12px; font-weight: 800; }
.pd-short { color: #4a3a52; margin-bottom: 24px; font-size: 1rem; line-height: 1.75; }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; }
.qty { display: inline-flex; align-items: center; border: 2px solid var(--brand-2); border-radius: 99px; overflow: hidden; }
.qty button { background: transparent; border: 0; width: 38px; height: 44px; color: var(--brand-2); font-size: 18px; cursor: pointer; font-weight: 700; transition: background .25s var(--ease); }
.qty button:hover { background: var(--cream-2); }
.qty input { width: 44px; height: 44px; border: 0; text-align: center; background: transparent; color: var(--dark); font-family: 'Rubik',sans-serif; font-weight: 700; }
.pd-meta { font-size: 13.5px; color: var(--muted); margin-top: 12px; line-height: 1.95; }
.pd-meta strong { color: var(--dark); }
.pd-tabs { margin-top: 32px; }
.pd-tabs h3 { font-family: 'Rubik',sans-serif; margin-top: 24px; color: var(--brand-2); }
.pd-specs { width: 100%; border-collapse: collapse; margin-top: 14px; }
.pd-specs tr { border-bottom: 1px solid var(--line); }
.pd-specs th { text-align: left; padding: 12px 14px; background: var(--cream-2); color: var(--dark); font-family: 'Rubik',sans-serif; font-size: 13px; width: 40%; font-weight: 700; }
.pd-specs td { padding: 12px 14px; color: var(--muted); font-size: 13.5px; }

/* === Footer === */
.site-footer { background: linear-gradient(180deg, #2D1B36 0%, #1d0f24 100%); color: rgba(255,255,255,.85); padding: 80px 0 30px; margin-top: 80px; position: relative; overflow: hidden; }
.site-footer::before { content:''; position:absolute; left:0; right:0; top:0; height: 4px; background: var(--grad-brand); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.site-footer h4 { color: #fff; font-family: 'Rubik',sans-serif; font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,.7); display: block; padding: 5px 0; font-size: 14px; transition: color .25s var(--ease), padding-left .25s var(--ease); }
.site-footer a:hover { color: var(--brand-3); padding-left: 4px; }
.site-footer .foot-brand .logo-text strong { color: #fff; }
.site-footer .foot-brand .logo-text em { color: var(--gold-soft); }
.site-footer .foot-brand p { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 14px; max-width: 340px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; color: rgba(255,255,255,.55); }
.foot-bottom a { display: inline-block; padding: 0; color: rgba(255,255,255,.6); }
.foot-bottom a:hover { color: var(--brand-3); padding-left: 0; }
.foot-newsletter { display: flex; gap: 6px; max-width: 340px; margin-top: 14px; }
.foot-newsletter input { flex: 1; padding: 11px 16px; border-radius: 99px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: #fff; font-size: 14px; }
.foot-newsletter input::placeholder { color: rgba(255,255,255,.5); }
.foot-newsletter input:focus { outline: 0; border-color: var(--brand-3); }
.foot-newsletter button { padding: 11px 22px; border-radius: 99px; border: 0; background: var(--grad-gold); color: var(--brand-2); font-family: 'Rubik',sans-serif; font-weight: 700; cursor: pointer; transition: transform .25s var(--ease); }
.foot-newsletter button:hover { transform: translateY(-2px); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* === Cart page === */
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; padding: 40px 0 80px; }
@media (max-width: 820px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-items { background: #fff; border-radius: var(--r); padding: 22px; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.cart-row { display: grid; grid-template-columns: 80px 1fr auto auto; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.cart-row:last-child { border: 0; }
.cart-row img { width: 80px; height: 80px; border-radius: 14px; object-fit: cover; background: var(--cream); }
.cart-row .ci-name { font-family: 'Rubik',sans-serif; font-weight: 700; color: var(--dark); }
.cart-row .ci-cat { font-size: 11px; color: var(--gold-deep); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.cart-row .ci-note { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.cart-row .qty { transform: scale(.85); }
.cart-row .ci-price { font-family: 'Rubik',sans-serif; font-weight: 800; color: var(--brand-2); }
.cart-row .ci-remove { background: none; border: 0; cursor: pointer; color: var(--muted); font-size: 18px; padding: 4px 10px; transition: color .25s var(--ease); }
.cart-row .ci-remove:hover { color: var(--brand); }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-summary { background: #fff; border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); position: sticky; top: 100px; align-self: start; border: 1px solid var(--line-soft); }
.cart-summary h3 { color: var(--brand-2); }
.cs-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.cs-row.total { border-top: 2px solid var(--brand-2); border-bottom: 0; margin-top: 10px; padding-top: 18px; font-family: 'Rubik',sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--brand-2); }
.cart-summary .btn { width: 100%; justify-content: center; margin-top: 18px; }

/* === Forms === */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-control { display: flex; flex-direction: column; gap: 6px; }
.form-control label { font-family: 'Rubik',sans-serif; font-size: 13px; font-weight: 600; color: var(--dark); }
.form-control input, .form-control textarea, .form-control select {
  padding: 13px 16px; border: 1px solid var(--line); border-radius: 14px;
  background: #fff; font-family: inherit; font-size: 14px; color: var(--dark);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-control input:focus, .form-control textarea:focus, .form-control select:focus {
  outline: 0; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(230,62,124,.12);
}
.form-control textarea { min-height: 130px; resize: vertical; }

/* Section card */
.card {
  background: #fff; border-radius: var(--r);
  padding: 30px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
}
.card h2 { color: var(--brand-2); margin-top: 0; }

/* Filter chips */
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.chip { padding: 9px 18px; border-radius: 99px; background: #fff; border: 1px solid var(--line); font-size: 13px; color: var(--dark); font-family: 'Rubik',sans-serif; cursor: pointer; transition: all .25s var(--ease); font-weight: 600; }
.chip:hover { border-color: var(--brand); color: var(--brand-2); }
.chip.active { background: var(--grad-brand); color: #fff; border-color: var(--brand); box-shadow: 0 6px 18px rgba(230,62,124,.3); }

/* Custom hamper builder */
.cb-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
@media (max-width: 920px) { .cb-grid { grid-template-columns: 1fr; } }
.cb-step { background: #fff; border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.cb-step h3 { color: var(--brand-2); font-family: 'Rubik',sans-serif; }
.cb-step .step-num { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--grad-gold); color: var(--brand-2); font-family: 'Rubik',sans-serif; font-weight: 800; margin-right: 12px; }
.cb-option { display: flex; gap: 12px; align-items: center; padding: 12px; border-radius: 12px; cursor: pointer; transition: all .25s var(--ease); border: 1px solid var(--line); margin-bottom: 8px; }
.cb-option:hover { border-color: var(--brand); background: var(--cream-2); }
.cb-option input { margin: 0; accent-color: var(--brand); }
.cb-option .opt-img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; background: var(--cream); }
.cb-option .opt-name { font-family: 'Rubik',sans-serif; font-size: 14px; font-weight: 600; }
.cb-option .opt-price { margin-left: auto; color: var(--brand-2); font-family: 'Rubik',sans-serif; font-weight: 800; font-size: 13px; }

/* Track order */
.track-result { padding: 20px 0; }
.track-step { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px dashed var(--line); }
.track-step:last-child { border: 0; }
.track-step .ts-bullet { width: 30px; height: 30px; border-radius: 50%; background: var(--cream); border: 2px solid var(--gold); flex-shrink: 0; display: grid; place-items: center; font-family: 'Rubik',sans-serif; font-weight: 800; color: var(--brand-2); font-size: 13px; }
.track-step.done .ts-bullet { background: var(--grad-brand); color: #fff; border-color: var(--brand); }
.track-step .ts-body strong { display: block; font-family: 'Rubik',sans-serif; color: var(--brand-2); }
.track-step .ts-body em { font-style: normal; font-size: 12px; color: var(--muted); }

/* Help card */
.help-card { background: var(--grad-brand); color: #fff; border-radius: var(--r-lg); padding: 60px 44px; text-align: center; box-shadow: var(--shadow-lg); margin: 50px 0; position: relative; overflow: hidden; }
.help-card::before { content: ''; position: absolute; top: -50%; right: -10%; width: 380px; height: 380px; background: radial-gradient(circle, rgba(245,215,122,.25) 0%, transparent 70%); border-radius: 50%; }
.help-card::after { content: ''; position: absolute; bottom: -40%; left: -10%; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%); border-radius: 50%; }
.help-card * { position: relative; z-index: 2; }
.help-card .eyebrow { color: #fff; background: rgba(255,255,255,.18); }
.help-card h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.help-card p { color: rgba(255,255,255,.9); max-width: 660px; margin: 0 auto 24px; font-size: 1.05rem; }
.help-card .btn-gold { background: #fff; color: var(--brand-2); }
.help-card .btn-gold:hover { background: var(--gold); }

/* Animations: scroll reveal (used both by JS and GSAP) */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Floating animation utility */
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin-slow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.float-y { animation: float-y 6s ease-in-out infinite; }
.spin-slow { animation: spin-slow 28s linear infinite; }

/* Toast */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--grad-brand); color: #fff; padding: 13px 26px; border-radius: 99px;
  box-shadow: var(--shadow-lg); z-index: 100;
  font-family: 'Rubik',sans-serif; font-size: 14px; font-weight: 600;
  opacity: 0; transition: all .4s var(--ease-bounce);
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Fly-to-cart animation ───────────────────────────── */
@keyframes ftcCartBounce {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.45) rotate(-8deg); }
  50%  { transform: scale(1.3)  rotate(6deg); }
  70%  { transform: scale(1.15) rotate(-3deg); }
  85%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
@keyframes ftcBadgePulse {
  0%   { transform: scale(1);    background: var(--gold); }
  30%  { transform: scale(1.7);  background: #e63e7c; box-shadow: 0 0 0 6px rgba(230,62,124,.25); }
  60%  { transform: scale(1.35); background: #c2185b; }
  100% { transform: scale(1);    background: var(--gold); }
}
.ftc-cart-bounce {
  animation: ftcCartBounce 0.55s cubic-bezier(.36,.07,.19,.97) both;
  transform-origin: center;
}
.ftc-badge-pulse {
  animation: ftcBadgePulse 0.55s ease both;
}

/* Marquee for trust strip */
.marquee { overflow: hidden; padding: 18px 0; background: linear-gradient(90deg, var(--cream-2), var(--cream), var(--cream-2)); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.marquee-track { display: flex; gap: 60px; white-space: nowrap; will-change: transform; }
.marquee-track span { display: inline-flex; align-items: center; gap: 10px; font-family: 'Rubik',sans-serif; font-weight: 700; color: var(--brand-2); font-size: 18px; letter-spacing: -.01em; }
.marquee-track span::after { content: '★'; color: var(--gold); margin-left: 60px; }

/* Testimonial section */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi { background: #fff; border-radius: var(--r); padding: 28px 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); position: relative; }
.testi::before { content:'\201C'; position: absolute; top: 6px; right: 18px; font-family: Georgia, serif; font-size: 78px; line-height: 1; color: var(--cream-2); }
.testi .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.testi p { font-style: italic; color: var(--ink); }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi .who .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: 'Rubik',sans-serif; font-weight: 800; font-size: 1rem; }
.testi .who .name { font-family: 'Rubik',sans-serif; font-weight: 700; color: var(--brand-2); }
.testi .who .role { font-size: 12px; color: var(--muted); }

/* Section alternates */
.section-soft { background: var(--grad-warm); }
.section-fresh { background: var(--grad-fresh); }
.section-white { background: #fff; }

/* Mini gallery grid (about page etc.) */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid .g-tile { aspect-ratio: 1/1; border-radius: 16px; background-size: cover; background-position: center; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease); }
.gallery-grid .g-tile:hover { transform: scale(1.03); }

/* Stat strip */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 50px 0; }
@media (max-width: 760px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 18px; }
.stat .stat-num { font-family: 'Rubik',sans-serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat .stat-lbl { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* Image with rounded mask helpers */
.img-rounded { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.img-rounded img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================
   HOMEPAGE v2 — REDESIGN (unique layouts per section)
   ========================================================== */

/* ---------- Reusable text helpers ---------- */
.text-gold { background: linear-gradient(135deg, #E8B530 0%, #F5D77A 50%, #B68A1E 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow-gold { color: var(--gold-deep) !important; }
.section-head--split { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 36px; margin-bottom: 44px; max-width: 1100px; }
.section-head--split p { max-width: 380px; color: var(--muted); margin: 0 0 6px; font-size: 15px; }
.section-head--split h2 { margin-bottom: 0; }
.section-head--center { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head--center .eyebrow { display: inline-block; }
@media (max-width: 760px) {
  .section-head--split { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
}

/* ---------- ORDER NOW BUTTON (premium primary CTA) ---------- */
.btn-order {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-brand);
  color: #fff !important;
  border: none;
  padding: 12px 22px;
  font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: .02em;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(230,62,124,.32), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .35s var(--ease-bounce), box-shadow .35s var(--ease), background .35s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.btn-order::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #F5D77A, #E8B530, #B68A1E);
  opacity: 0; transition: opacity .4s var(--ease);
  z-index: -1; border-radius: inherit;
}
.btn-order:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 38px rgba(230,62,124,.42), inset 0 1px 0 rgba(255,255,255,.3); color: #fff; }
.btn-order:hover::before { opacity: 1; }
.btn-order:active { transform: translateY(-1px) scale(1.01); }
.btn-order .arr { display: inline-block; transition: transform .35s var(--ease-bounce); }
.btn-order:hover .arr { transform: translateX(5px); }
.btn-order.btn-lg { padding: 15px 28px; font-size: 15.5px; }

/* ---------- HERO v2 enhancements ---------- */
.hero-v2 .hero-title { opacity: 1; }
.hero-v2 .hero-title .word, .hero-v2 .hero-title .char { display: inline-block; will-change: transform, opacity; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; display: flex; align-items: flex-start; justify-content: center; z-index: 5; }
.hero-scroll span { display: block; width: 3px; height: 8px; background: #fff; border-radius: 2px; margin-top: 6px; animation: heroScroll 1.8s var(--ease) infinite; }
@keyframes heroScroll { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }

/* ---------- BENTO CATEGORIES ---------- */
.bento-section { padding: 90px 0; background: var(--cream); }
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 18px;
}
.bento-tile {
  position: relative; overflow: hidden;
  border-radius: var(--r);
  text-decoration: none; color: #fff;
  display: flex; align-items: flex-end;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  background: #2D1B36;
}
.bento-hero { grid-column: span 2; grid-row: span 2; }
.bento-medium { grid-column: span 2; grid-row: span 1; }
.bento-small { grid-column: span 1; grid-row: span 1; }
.bento-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 1.2s var(--ease), filter .5s var(--ease);
}
.bento-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,27,54,0) 35%, rgba(45,27,54,.85) 100%);
  z-index: 1; transition: opacity .4s var(--ease);
}
.bento-tile:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(173,20,87,.28); color: #fff; }
.bento-tile:hover .bento-img { transform: scale(1.12); }
.bento-content {
  position: relative; z-index: 2;
  padding: 22px 24px;
  width: 100%;
}
.bento-tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  background: var(--gold); color: #2D1B36; padding: 5px 12px; border-radius: 999px; margin-bottom: 10px;
  text-transform: uppercase;
}
.bento-content h3 { color: #fff; font-size: 1.4rem; margin: 0 0 4px; font-weight: 800; letter-spacing: -.01em; }
.bento-hero .bento-content h3 { font-size: 2rem; }
.bento-content p { color: rgba(255,255,255,.85); margin: 0 0 12px; font-size: 14px; max-width: 360px; }
.bento-small .bento-content { padding: 16px 18px; }
.bento-small .bento-content h3 { font-size: 1.05rem; }
.bento-cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 13px; color: var(--gold-soft); text-transform: uppercase; letter-spacing: 1.4px; }
.bento-cta .arr { transition: transform .3s var(--ease-bounce); display: inline-block; }
.bento-tile:hover .bento-cta .arr { transform: translateX(6px); }
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(5, 220px); }
  .bento-hero { grid-column: span 2; grid-row: span 2; }
  .bento-medium { grid-column: span 1; grid-row: span 1; }
  .bento-small { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-hero, .bento-medium, .bento-small { grid-column: span 1; grid-row: auto; height: 220px; }
  .bento-hero { height: 320px; }
}

/* ---------- EDITORIAL (Loved by Kuwait) ---------- */
.editorial { padding: 90px 0; background: linear-gradient(180deg, #FFF9F5 0%, #FFEDE2 100%); }
.editorial-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: stretch; }
.ed-feature {
  position: relative;
  display: grid; grid-template-rows: auto 1fr;
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 25px 60px rgba(173,20,87,.14);
  border: 1px solid var(--line-soft);
}
.ed-feature-img { display: block; position: relative; aspect-ratio: 16/10; overflow: hidden; }
.ed-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.ed-feature:hover .ed-feature-img img { transform: scale(1.06); }
.ed-badge { position: absolute; top: 18px; left: 18px; background: var(--grad-gold); color: #2D1B36; font-weight: 800; font-size: 12px; letter-spacing: .8px; padding: 7px 14px; border-radius: 999px; text-transform: uppercase; box-shadow: 0 8px 22px rgba(232,181,48,.4); }
.ed-feature-body { padding: 28px 30px 30px; display: flex; flex-direction: column; gap: 12px; }
.ed-cat { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-2); }
.ed-feature-body h3 { font-size: 1.75rem; margin: 0; line-height: 1.2; }
.ed-rating { display: flex; align-items: center; gap: 10px; }
.ed-rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 16px; }
.ed-rating .rev-count { color: var(--muted); font-size: 13px; }
.ed-feature-body p { color: #5a4661; margin: 0; line-height: 1.7; }
.ed-feature-foot { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 8px; padding-top: 18px; border-top: 1px dashed var(--line); }
.save-pill { display: inline-block; background: rgba(77,208,181,.18); color: #1f7d6a; font-weight: 700; font-size: 11.5px; padding: 4px 10px; border-radius: 999px; margin-left: 8px; letter-spacing: .5px; }

.ed-list { display: grid; gap: 14px; align-content: start; }
.ed-mini {
  display: grid; grid-template-columns: 32px 92px 1fr; gap: 14px; align-items: center;
  background: #fff; border-radius: var(--r); padding: 12px;
  border: 1px solid var(--line-soft); text-decoration: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.ed-mini:hover { transform: translateX(6px); box-shadow: 0 18px 40px rgba(173,20,87,.14); border-color: var(--brand-3); }
.ed-mini-rank { font-family: 'Rubik', sans-serif; font-weight: 900; font-size: 18px; color: var(--gold-deep); text-align: center; }
.ed-mini-img { width: 92px; height: 92px; border-radius: var(--r-sm); overflow: hidden; background: var(--cream-2); }
.ed-mini-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ed-mini:hover .ed-mini-img img { transform: scale(1.08); }
.ed-mini-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ed-mini-cat { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--brand-2); }
.ed-mini-body strong { font-family: 'Rubik', sans-serif; font-size: 14.5px; color: var(--dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ed-mini-foot { display: flex; justify-content: space-between; align-items: center; }
.ed-mini-foot .product-price { margin: 0; }
.ed-mini-foot .price-now { font-size: 15px; color: var(--brand-2); font-weight: 800; }
.ed-mini-arr { font-family: 'Rubik', sans-serif; font-weight: 800; color: var(--gold-deep); font-size: 18px; transition: transform .35s var(--ease-bounce); }
.ed-mini:hover .ed-mini-arr { transform: translateX(4px); }
@media (max-width: 980px) {
  .editorial-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .ed-feature-body { padding: 22px 20px 24px; }
  .ed-feature-body h3 { font-size: 1.4rem; }
  .ed-mini { grid-template-columns: 28px 72px 1fr; gap: 10px; }
  .ed-mini-img { width: 72px; height: 72px; }
}

/* ---------- OCCASIONS RAIL (horizontal pill carousel) ---------- */
/* ---------- VIDEO BANNER (full-width YouTube iframe replacing occasions rail) ---------- */
.video-banner {
  width: 100%;
  background: #000;
  padding: 0;
  margin: 0;
}
.video-banner-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.video-banner-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.occasions-rail { padding: 90px 0; background: var(--cream); position: relative; }
.rail-wrap { position: relative; padding: 0 4%; }
.rail {
  display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth;
  padding: 18px 4px 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.pill {
  flex: 0 0 auto; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-decoration: none; color: var(--dark);
  width: 132px;
  transition: transform .4s var(--ease);
}
.pill:hover { transform: translateY(-6px); color: var(--brand-2); }
.pill-img {
  width: 124px; height: 124px; border-radius: 50%; overflow: hidden;
  position: relative;
  background: var(--cream-2);
  box-shadow: 0 18px 38px rgba(173,20,87,.18);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
  border: 3px solid #fff;
}
.pill-img::after {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-brand);
  opacity: 0; transition: opacity .35s var(--ease); mix-blend-mode: multiply;
}
.pill:hover .pill-img { box-shadow: 0 22px 48px rgba(230,62,124,.32); border-color: var(--gold-soft); }
.pill:hover .pill-img::after { opacity: .15; }
.pill-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.pill:hover .pill-img img { transform: scale(1.12); }
.pill-name { font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 14px; text-align: center; letter-spacing: -.01em; }

.rail-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: #fff; color: var(--brand-2);
  box-shadow: 0 14px 32px rgba(173,20,87,.22);
  font-size: 26px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.rail-nav:hover { background: var(--grad-brand); color: #fff; transform: translateY(-50%) scale(1.08); }
.rail-prev { left: 8px; }
.rail-next { right: 8px; }
@media (max-width: 640px) {
  .rail-nav { display: none; }
  .pill { width: 104px; }
  .pill-img { width: 98px; height: 98px; }
}

/* ---------- FRESH DROPS (tabbed product showcase) ---------- */
.fresh-drops { padding: 100px 0; background: linear-gradient(180deg, #FFEDE2 0%, #FFF9F5 100%); }
.fresh-tabs {
  position: relative;
  display: inline-flex; gap: 4px;
  background: #fff; border-radius: 999px;
  padding: 6px;
  box-shadow: 0 14px 36px rgba(173,20,87,.12);
  margin: 0 auto 44px;
  left: 50%; transform: translateX(-50%);
}
.fresh-tab {
  position: relative; z-index: 2;
  border: none; background: transparent;
  font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 14px;
  padding: 11px 24px; border-radius: 999px;
  color: var(--muted); cursor: pointer;
  transition: color .35s var(--ease);
  letter-spacing: .01em;
}
.fresh-tab.is-active { color: #fff; }
.fresh-tab:hover:not(.is-active) { color: var(--brand-2); }
.tab-pill {
  position: absolute; top: 6px; bottom: 6px; left: 6px;
  background: var(--grad-brand);
  border-radius: 999px;
  transition: transform .45s var(--ease-bounce), width .45s var(--ease-bounce);
  z-index: 1;
  box-shadow: 0 10px 24px rgba(230,62,124,.28);
}
.fresh-panels { position: relative; min-height: 200px; }
.fresh-panel { display: none; opacity: 0; }
.fresh-panel.is-active { display: block; opacity: 1; }
.product-grid--v2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1080px) { .product-grid--v2 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid--v2 { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 420px) { .product-grid--v2 { grid-template-columns: 1fr; } }
.product-grid--v2 .product-card {
  background: #fff; border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.product-grid--v2 .product-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(173,20,87,.18); border-color: var(--brand-3); }
.product-grid--v2 .product-img { position: relative; aspect-ratio: 1/1; display: block; overflow: hidden; background: var(--cream-2); }
.product-grid--v2 .product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product-grid--v2 .product-card:hover .product-img img { transform: scale(1.08); }
.product-grid--v2 .product-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-grid--v2 .product-cat { font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--brand-2); }
.product-grid--v2 .product-title { font-size: 1.02rem; margin: 0; line-height: 1.3; }
.product-grid--v2 .product-title a { color: var(--dark); }
.product-grid--v2 .product-title a:hover { color: var(--brand-2); }
.product-grid--v2 .product-short { font-size: 13.5px; color: var(--muted); margin: 0; flex: 1; line-height: 1.55; }
.product-grid--v2 .product-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 4px; padding-top: 12px; border-top: 1px dashed var(--line); }
.product-grid--v2 .product-price { display: flex; flex-direction: column; gap: 2px; }
.product-grid--v2 .price-now { font-family: 'Rubik', sans-serif; font-weight: 800; color: var(--brand-2); font-size: 16px; }
.product-grid--v2 .price-was { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.product-grid--v2 .badge { position: absolute; top: 12px; font-weight: 800; font-size: 11px; padding: 5px 10px; border-radius: 999px; letter-spacing: .8px; text-transform: uppercase; }
.product-grid--v2 .badge-new { left: 12px; background: var(--grad-gold); color: #2D1B36; box-shadow: 0 6px 16px rgba(232,181,48,.4); }
.product-grid--v2 .badge-off { right: 12px; background: var(--grad-brand); color: #fff; box-shadow: 0 6px 16px rgba(230,62,124,.4); }
.product-grid--v2 .badge-new + .badge-off { right: 12px; top: 48px; }
.fresh-cta { text-align: center; margin-top: 36px; }

@media (max-width: 540px) {
  .fresh-tabs { display: flex; left: 0; transform: none; width: 100%; max-width: 100%; overflow-x: auto; }
  .fresh-tab { white-space: nowrap; padding: 10px 16px; font-size: 13px; }
}

/* ---------- STATS BAND ---------- */
.stats-band { padding: 70px 0; background: var(--grad-brand); color: #fff; position: relative; overflow: hidden; }
.stats-band::before, .stats-band::after { content: ''; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.stats-band::before { width: 280px; height: 280px; background: var(--gold); top: -100px; left: -80px; }
.stats-band::after { width: 360px; height: 360px; background: var(--brand-3); bottom: -160px; right: -100px; }
.stats-strip--v2 { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stats-strip--v2 .stat { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r); padding: 24px 16px; text-align: center; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: transform .4s var(--ease), background .4s var(--ease); }
.stats-strip--v2 .stat:hover { transform: translateY(-6px); background: rgba(255,255,255,.18); }
.stats-strip--v2 .stat-num { font-family: 'Rubik', sans-serif; font-weight: 900; font-size: clamp(2rem, 3.2vw, 2.6rem); color: #fff; line-height: 1; letter-spacing: -.02em; }
.stats-strip--v2 .stat-lbl { color: rgba(255,255,255,.86); font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; margin-top: 10px; }
@media (max-width: 760px) { .stats-strip--v2 { grid-template-columns: repeat(2, 1fr); } }

/* ---------- STORY WALL (testimonials, varied sizes) ---------- */
.story-wall { padding: 100px 0; background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 22px;
}
.story {
  position: relative;
  background: #fff; border-radius: var(--r-lg); padding: 30px 28px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 16px 40px rgba(173,20,87,.08);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column; gap: 14px;
}
.story:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(173,20,87,.16); }
.story--big { grid-column: span 2; grid-row: span 2; padding: 38px 36px; background: linear-gradient(135deg, #FFFDFB 0%, #FFF6E9 100%); border: 1px solid var(--gold-soft); }
.story--big p { font-size: 1.15rem; line-height: 1.7; color: var(--ink); }
.story--gold { background: linear-gradient(135deg, #FFE8B0 0%, #F5D77A 100%); border-color: transparent; }
.story--gold p, .story--gold .name, .story--gold .role { color: #4a3416; }
.story p { color: #4a3a52; line-height: 1.65; margin: 0; font-size: 15px; }
.story .stars { color: var(--gold); letter-spacing: 3px; font-size: 16px; }
.story .quote-mark { position: absolute; top: 16px; right: 26px; font-family: Georgia, serif; font-size: 96px; color: var(--gold-soft); opacity: .35; line-height: .8; font-weight: 900; }
.story .who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 8px; }
.story .avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-family: 'Rubik', sans-serif; font-size: 16px; }
.story .name { font-family: 'Rubik', sans-serif; font-weight: 700; color: var(--dark); font-size: 15px; }
.story .role { font-size: 12.5px; color: var(--muted); letter-spacing: .3px; }
@media (max-width: 980px) {
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .story--big { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 540px) {
  .story-grid { grid-template-columns: 1fr; }
  .story--big { grid-column: span 1; padding: 30px 26px; }
}

/* ---------- HELP BAND (v2) ---------- */
.help-band { padding: 60px 0 100px; background: var(--cream); }
.help-card--v2 {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #C2185B 0%, #AD1457 50%, #2D1B36 100%);
  border-radius: var(--r-lg);
  padding: 56px 56px;
  color: #fff;
  display: grid; grid-template-columns: 1fr; gap: 18px;
  box-shadow: 0 30px 80px rgba(173,20,87,.32);
}
.help-card--v2 .help-deco {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 90% 20%, rgba(245,215,122,.35), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255,128,171,.25), transparent 35%);
}
.help-card--v2 .help-text { position: relative; max-width: 720px; }
.help-card--v2 h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.help-card--v2 p { color: rgba(255,255,255,.86); max-width: 580px; }
.help-card--v2 .help-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
@media (max-width: 640px) { .help-card--v2 { padding: 40px 28px; } }

/* ---------- FEATURES V2 (compact, premium border) ---------- */
.features-v2 { padding: 22px 0; background: #fff; border-bottom: 1px solid var(--line-soft); }
.features-v2 .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: center; }
.features-v2 .feature { display: flex; align-items: center; gap: 12px; padding: 6px 8px; }
.features-v2 .feature strong { font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 14px; color: var(--dark); display: block; }
.features-v2 .feature em { font-style: normal; font-size: 12.5px; color: var(--muted); }
.features-v2 .f-ic { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #FFE8B0, #F5D77A); display: flex; align-items: center; justify-content: center; color: var(--brand-2); flex-shrink: 0; }
.features-v2 .f-ic svg { width: 18px; height: 18px; }
@media (max-width: 760px) { .features-v2 .features-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   PREMIUM SEARCH (gk-search)
   ============================================================ */
.gk-search { position: relative; display: inline-flex; }
.gk-search-locked { overflow: hidden; }

.gk-search-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--line);
  color: var(--brand-2);
  padding: 9px 14px 9px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Lato', sans-serif; font-size: 13.5px; font-weight: 600;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.gk-search-trigger svg { width: 16px; height: 16px; flex-shrink: 0; }
.gk-search-trigger .gk-search-label { letter-spacing: .01em; }
.gk-search-trigger:hover { border-color: var(--brand); background: var(--cream-2); transform: translateY(-1px); }
@media (max-width: 760px) {
  .gk-search-trigger { padding: 9px; border-radius: 50%; }
  .gk-search-trigger .gk-search-label { display: none; }
}

/* ---------- Overlay + panel ---------- */
.gk-search-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(45,27,54,.55);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 88px 18px 32px;
  overflow-y: auto;
}
.gk-search-overlay.is-open { display: flex; }
.gk-search-panel {
  width: 100%; max-width: 720px;
  background: #fff; border-radius: var(--r-lg);
  box-shadow: 0 50px 120px rgba(45,27,54,.45), 0 12px 30px rgba(173,20,87,.18);
  overflow: hidden;
  display: flex; flex-direction: column;
  max-height: calc(100vh - 120px);
  border: 1px solid var(--line-soft);
}
@media (max-width: 640px) {
  .gk-search-overlay { padding: 16px 12px; align-items: stretch; }
  .gk-search-panel { max-height: calc(100vh - 32px); border-radius: var(--r); }
}

/* ---------- Search bar ---------- */
.gk-search-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #fff 0%, #FFF9F5 100%);
}
.gk-search-icon { width: 20px; height: 20px; color: var(--brand-2); flex-shrink: 0; }
.gk-search-input {
  flex: 1; min-width: 0;
  border: none; outline: none; background: transparent;
  font-family: 'Lato', sans-serif; font-size: 16px;
  color: var(--dark);
  padding: 8px 0;
  letter-spacing: .005em;
}
.gk-search-input::placeholder { color: var(--muted); }
.gk-search-clear {
  background: var(--cream-2); border: none; cursor: pointer;
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.gk-search-clear:hover { background: var(--brand-3); color: #fff; }
.gk-search-clear svg { width: 14px; height: 14px; }
.gk-search-close {
  background: var(--cream-2); border: 1px solid var(--line);
  font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 11px;
  color: var(--muted);
  padding: 6px 10px; border-radius: 6px;
  cursor: pointer; letter-spacing: 1px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.gk-search-close:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
@media (max-width: 540px) {
  .gk-search-close { display: none; }
}

/* ---------- Results area ---------- */
.gk-search-results {
  flex: 1; overflow-y: auto;
  padding: 8px 8px 14px;
  background: #fff;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-3) transparent;
}
.gk-search-results::-webkit-scrollbar { width: 8px; }
.gk-search-results::-webkit-scrollbar-thumb { background: var(--brand-3); border-radius: 8px; }
.gk-search-results::-webkit-scrollbar-track { background: transparent; }

.gk-section { padding: 8px 0; }
.gk-section + .gk-section { border-top: 1px dashed var(--line); margin-top: 4px; }
.gk-section-head {
  padding: 8px 14px 6px;
  font-family: 'Rubik', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Row ---------- */
.gk-row {
  display: grid;
  grid-template-columns: 56px 1fr auto 18px;
  gap: 14px; align-items: center;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.gk-row + .gk-row { margin-top: 2px; }
.gk-row:hover, .gk-row.is-active {
  background: linear-gradient(135deg, #FFF6E9 0%, #FFEDE2 100%);
  border-color: var(--line-soft);
  transform: translateX(2px);
}
.gk-row-thumb {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-2);
}
.gk-row-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gk-row:hover .gk-row-thumb img { transform: scale(1.06); }
.gk-row-thumb .gk-row-icon svg { width: 22px; height: 22px; }
.gk-row-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.gk-row-title {
  font-family: 'Rubik', sans-serif; font-weight: 600; font-size: 15px;
  color: var(--dark); line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gk-row-title mark {
  background: linear-gradient(180deg, transparent 60%, rgba(245,215,122,.55) 60%);
  color: inherit; padding: 0 1px;
}
.gk-row-meta { display: inline-flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.gk-row-kind {
  font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
  background: var(--cream-2); color: var(--brand-2);
}
.gk-row-kind--p { background: rgba(230,62,124,.12); color: var(--brand-2); }
.gk-row-kind--c { background: rgba(232,181,48,.18); color: var(--gold-deep); }
.gk-row-kind--o { background: rgba(77,208,181,.18); color: #1f7d6a; }
.gk-row-kind--g { background: rgba(138,107,120,.16); color: var(--muted); }
.gk-row-cat { font-size: 11.5px; color: var(--muted); font-weight: 600; letter-spacing: .3px; }

.gk-row-price { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.gk-price-now { font-family: 'Rubik', sans-serif; font-weight: 800; color: var(--brand-2); font-size: 14px; }
.gk-price-was { font-size: 11px; color: var(--muted); text-decoration: line-through; }
.gk-row-arrow { color: var(--gold-deep); font-family: 'Rubik', sans-serif; font-weight: 800; font-size: 16px; opacity: 0; transition: opacity .25s var(--ease), transform .25s var(--ease); }
.gk-row:hover .gk-row-arrow, .gk-row.is-active .gk-row-arrow { opacity: 1; transform: translateX(2px); }

@media (max-width: 540px) {
  .gk-row { grid-template-columns: 48px 1fr auto; padding: 9px 10px; }
  .gk-row-thumb { width: 48px; height: 48px; }
  .gk-row-arrow { display: none; }
  .gk-row-title { font-size: 14px; }
}

/* ---------- Empty + hint states ---------- */
.gk-empty { text-align: center; padding: 26px 18px 12px; }
.gk-empty svg { width: 44px; height: 44px; color: var(--brand-3); margin-bottom: 10px; }
.gk-empty h4 { font-size: 1.05rem; margin: 0 0 6px; color: var(--dark); }
.gk-empty h4 span { color: var(--brand-2); }
.gk-empty p { color: var(--muted); margin: 0; font-size: 14px; }
.gk-hint {
  margin: 14px 16px 8px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}
.gk-hint em { font-style: normal; font-weight: 700; color: var(--brand-2); background: var(--cream-2); padding: 2px 7px; border-radius: 6px; margin: 0 2px; }

/* ============================================================
   HERO CAROUSEL (55vh, responsive, premium slider)
   ============================================================ */
.hero-carousel {
  position: relative; overflow: hidden;
  height: 55vh;
  min-height: 460px;
  max-height: 680px;
  background: #2D1B36;
  isolation: isolate;
}
.hero-carousel .hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.hero-carousel .d-bubble { position: absolute; left: var(--x); top: var(--y); width: var(--s); height: var(--s); border-radius: 50%; opacity: .35; filter: blur(2px); }
.hero-carousel .d-sparkle { position: absolute; left: var(--x); top: var(--y); color: #F5D77A; font-size: 22px; opacity: .55; }

.hc-track { position: absolute; inset: 0; z-index: 1; }
.hc-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .9s var(--ease), visibility 0s linear .9s;
  display: flex; align-items: center;
}
.hc-slide.is-active { opacity: 1; visibility: visible; transition: opacity .9s var(--ease), visibility 0s linear 0s; }
.hc-slide .hc-bg { position: absolute; inset: 0; overflow: hidden; }
.hc-slide .hc-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(45,27,54,.78) 0%, rgba(173,20,87,.5) 45%, rgba(45,27,54,.25) 100%);
  z-index: 1;
}
.hc-slide .hc-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.08);
  transition: transform 8s var(--ease);
}
.hc-slide.is-active .hc-bg img { transform: scale(1); }

.hc-inner {
  position: relative; z-index: 2;
  color: #fff; max-width: 720px;
  padding: 24px 0 60px;
}
.hc-inner .eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 800; letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
}
.hc-inner .eyebrow-gold { color: #2D1B36; background: var(--grad-gold); border-color: transparent; }
.hc-inner .hc-title {
  color: #fff; font-size: clamp(1.85rem, 4vw, 3.2rem);
  font-family: 'Rubik', sans-serif; font-weight: 900;
  letter-spacing: -.02em; line-height: 1.1;
  margin: 0 0 14px;
  text-shadow: 0 4px 22px rgba(45,27,54,.4);
}
.hc-inner .hc-title .accent {
  background: linear-gradient(135deg, #F5D77A 0%, #E8B530 50%, #B68A1E 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hc-inner .lead {
  color: rgba(255,255,255,.92); font-size: clamp(.95rem, 1.4vw, 1.1rem);
  max-width: 560px; line-height: 1.6; margin: 0 0 22px;
  text-shadow: 0 2px 12px rgba(45,27,54,.3);
}
.hc-inner .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Navigation arrows */
.hc-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.hc-nav:hover { background: rgba(255,255,255,.32); transform: translateY(-50%) scale(1.06); border-color: rgba(255,255,255,.5); }
.hc-nav:active { transform: translateY(-50%) scale(.98); }
.hc-nav svg { width: 20px; height: 20px; }
.hc-prev { left: 22px; }
.hc-next { right: 22px; }

/* Dots — anchored at the bottom edge so they never overlap the CTA buttons */
.hc-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: inline-flex; gap: 10px;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(45,27,54,.32);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hc-dot {
  width: 28px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.4);
  border: none; cursor: pointer; padding: 0;
  position: relative; overflow: hidden;
  transition: background .3s var(--ease), width .4s var(--ease);
}
.hc-dot span {
  position: absolute; inset: 0; left: 0;
  background: var(--grad-gold);
  border-radius: 999px;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0s linear;
}
.hc-dot.is-active { width: 56px; background: rgba(255,255,255,.22); }
.hc-dot.is-active span { transform: scaleX(1); transition: transform var(--hc-autoplay, 6s) linear; }
.hc-dot:hover { background: rgba(255,255,255,.6); }

/* (trust strip removed — dots now sit where the trust strip used to be) */

/* Mobile + tablet adjustments */
@media (max-width: 980px) {
  .hero-carousel { height: 60vh; min-height: 440px; }
  .hc-dots { bottom: 18px; }
}
@media (max-width: 760px) {
  .hero-carousel { height: 58vh; min-height: 400px; max-height: 560px; }
  .hc-inner { padding: 12px 0 36px; max-width: 100%; }
  .hc-inner .hc-title { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .hc-inner .lead { font-size: .95rem; max-width: none; }
  .hc-inner .hero-actions .btn { padding: 12px 18px; font-size: 14px; }
  .hc-inner .hero-actions { width: 100%; }
  .hc-nav { width: 40px; height: 40px; }
  .hc-prev { left: 10px; }
  .hc-next { right: 10px; }
  .hc-dots { bottom: 18px; }
}
@media (max-width: 440px) {
  .hero-carousel { height: 56vh; min-height: 380px; }
  .hc-inner .eyebrow { font-size: 10.5px; letter-spacing: 2.5px; padding: 5px 11px; }
  .hc-inner .hero-actions .btn-ghost { display: none; }
  .hc-nav { display: none; }
}

/* ============================================================
   HEADER v3 — Single-row layout (desktop)
   Logo | Nav | Search | Account/Cart  — all on one line
   ============================================================ */
.site-header .header-inner {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  grid-template-areas: "logo nav search toggle actions";
  align-items: center;
  gap: 14px 18px;
  padding: 12px 0;
}
.site-header .logo           { grid-area: logo; }
.site-header .nav-toggle     { grid-area: toggle; }
.site-header .main-nav       { grid-area: nav; flex: none; display: flex; justify-content: flex-start; }

/* ---- Ensure nav is always visible on screens wider than the hamburger breakpoint.
        The @media (max-width:1080px) block pushes .main-nav off-screen via position:fixed.
        This reset undoes that above 900px so the nav stays in the document flow. ---- */
@media (min-width: 901px) {
  /* ---- Restore nav as horizontal bar ---- */
  .main-nav {
    position: static !important;
    right: auto !important;
    top: auto !important;
    height: auto !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    overflow: visible !important;
    flex-direction: row !important;
    z-index: auto !important;
  }
  .main-nav .nav-list {
    flex-direction: row !important;
    align-items: center !important;
  }
  .nav-toggle { display: none !important; }

  /* ---- Mega menus: undo the mobile display:none so CSS hover works ---- */
  .mega {
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    z-index: 80 !important;
  }
  /* CSS hover trigger */
  .has-mega:hover > .mega,
  .has-mega:focus-within > .mega,
  .has-mega.is-open > .mega {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: all !important;
  }
  /* Expanded search bar: allow it to fill more horizontal space */
  .site-header .gk-search--inline {
    max-width: 520px;
  }
}
.site-header .header-actions { grid-area: actions; }
.site-header .gk-search--inline {
  grid-area: search;
  max-width: 380px;
  width: 100%;
  justify-self: end;
}

/* Compact nav items for the single-row layout */
.site-header .main-nav .nav-list { gap: 2px; }
.site-header .main-nav .nav-item { padding: 8px 12px; font-size: 14px; }

/* Slimmer search input to fit one row */
.site-header .gk-form { padding: 4px 4px 4px 14px; }
.site-header .gk-input { height: 34px; font-size: 14px; }
.site-header .gk-submit { padding: 8px 16px; font-size: 12.5px; }

/* Tablet: hide the Submit button so search stays compact */
@media (max-width: 1180px) {
  .site-header .gk-search--inline { max-width: 280px; }
  .site-header .gk-submit { display: none; }
  .site-header .gk-form { padding-right: 10px; }
  .site-header .main-nav .nav-item { padding: 8px 10px; font-size: 13.5px; }
}

/* Below tablet: collapse to two rows — top: logo + search + actions, bottom: nav */
@media (max-width: 980px) {
  .site-header .header-inner {
    grid-template-columns: auto 1fr auto auto;
    grid-template-areas:
      "logo  search  toggle  actions"
      "nav   nav     nav     nav";
    gap: 14px;
  }
  .site-header .main-nav {
    justify-content: center;
    border-top: 1px solid var(--line-soft);
    padding-top: 6px; padding-bottom: 4px;
  }
}

/* Mobile: search moves below logo */
@media (max-width: 640px) {
  .site-header .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "logo   toggle  actions"
      "search search  search"
      "nav    nav     nav";
    gap: 10px 12px;
  }
  .site-header .gk-search--inline { max-width: none; justify-self: stretch; }
}

/* ---------- Inline search bar look ---------- */
.gk-search--inline { position: relative; display: flex; flex-direction: column; }
.gk-form {
  display: flex; align-items: center; gap: 8px;
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.gk-form:hover { border-color: var(--brand-3); }
.gk-form.is-open,
.gk-form:focus-within {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(230,62,124,.12), 0 12px 32px rgba(173,20,87,.14);
}
.gk-form-icon { width: 18px; height: 18px; color: var(--brand-2); flex-shrink: 0; }
.gk-input {
  flex: 1; min-width: 0; height: 38px;
  background: transparent; border: none; outline: none;
  font-family: 'Lato', sans-serif; font-size: 14.5px;
  color: var(--dark);
  letter-spacing: .005em;
}
.gk-input::placeholder { color: var(--muted); }
.gk-clear {
  background: transparent; border: none; cursor: pointer;
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.gk-clear:hover { background: var(--cream-2); color: var(--brand-2); }
.gk-clear svg { width: 13px; height: 13px; }
.gk-submit {
  background: var(--grad-brand);
  color: #fff; border: none; cursor: pointer;
  font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 13px;
  padding: 10px 20px;
  border-radius: 999px;
  letter-spacing: .02em;
  box-shadow: 0 8px 22px rgba(230,62,124,.32);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.gk-submit:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(230,62,124,.42); }
@media (max-width: 540px) {
  .gk-submit { display: none; }
  .gk-form { padding-left: 14px; }
}

/* ---------- Dropdown panel (anchored under the input) ---------- */
.gk-dropdown {
  position: absolute;
  top: calc(100% + 10px); left: 0; right: 0;
  z-index: 90;
  background: #fff;
  border-radius: var(--r);
  box-shadow: 0 30px 70px rgba(45,27,54,.22), 0 8px 22px rgba(173,20,87,.10);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  max-height: 70vh;
}
.gk-results {
  max-height: 70vh; overflow-y: auto;
  padding: 6px;
  scrollbar-width: thin; scrollbar-color: var(--brand-3) transparent;
}
.gk-results::-webkit-scrollbar { width: 8px; }
.gk-results::-webkit-scrollbar-thumb { background: var(--brand-3); border-radius: 8px; }

/* Section heads + rows (re-use existing palette) */
.gk-section { padding: 6px 0; }
.gk-section + .gk-section { border-top: 1px dashed var(--line); margin-top: 4px; }
.gk-section-head {
  padding: 8px 14px 6px;
  font-family: 'Rubik', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}
.gk-row {
  display: grid; grid-template-columns: 52px 1fr auto 18px;
  gap: 14px; align-items: center;
  padding: 9px 14px;
  text-decoration: none; color: inherit;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.gk-row + .gk-row { margin-top: 2px; }
.gk-row:hover, .gk-row.is-active {
  background: linear-gradient(135deg, #FFF6E9 0%, #FFEDE2 100%);
  border-color: var(--line-soft);
}
.gk-row-thumb {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  overflow: hidden; background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-2);
}
.gk-row-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gk-row:hover .gk-row-thumb img { transform: scale(1.06); }
.gk-row-thumb .gk-row-icon svg { width: 20px; height: 20px; }
.gk-row-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.gk-row-title {
  font-family: 'Rubik', sans-serif; font-weight: 600; font-size: 14.5px;
  color: var(--dark); line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gk-row-title mark {
  background: linear-gradient(180deg, transparent 60%, rgba(245,215,122,.55) 60%);
  color: inherit; padding: 0 1px;
}
.gk-row-meta { display: inline-flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.gk-row-kind { font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; }
.gk-row-kind--p { background: rgba(230,62,124,.12); color: var(--brand-2); }
.gk-row-kind--c { background: rgba(232,181,48,.18); color: var(--gold-deep); }
.gk-row-kind--o { background: rgba(77,208,181,.18); color: #1f7d6a; }
.gk-row-kind--g { background: rgba(138,107,120,.16); color: var(--muted); }
.gk-row-cat { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: .3px; }
.gk-row-price { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.gk-price-now { font-family: 'Rubik', sans-serif; font-weight: 800; color: var(--brand-2); font-size: 14px; }
.gk-price-was { font-size: 11px; color: var(--muted); text-decoration: line-through; }
.gk-row-arrow { color: var(--gold-deep); font-family: 'Rubik', sans-serif; font-weight: 800; font-size: 16px; opacity: 0; transition: opacity .25s var(--ease), transform .25s var(--ease); }
.gk-row:hover .gk-row-arrow, .gk-row.is-active .gk-row-arrow { opacity: 1; transform: translateX(3px); }

.gk-empty { text-align: center; padding: 22px 18px 8px; }
.gk-empty svg { width: 40px; height: 40px; color: var(--brand-3); margin-bottom: 8px; }
.gk-empty h4 { font-size: 1rem; margin: 0 0 4px; color: var(--dark); }
.gk-empty h4 span { color: var(--brand-2); }
.gk-empty p { color: var(--muted); margin: 0; font-size: 13.5px; }
.gk-hint { margin: 10px 16px 6px; font-size: 12.5px; color: var(--muted); text-align: center; }
.gk-hint em { font-style: normal; font-weight: 700; color: var(--brand-2); background: var(--cream-2); padding: 2px 7px; border-radius: 6px; margin: 0 2px; }

@media (max-width: 540px) {
  .gk-row { grid-template-columns: 44px 1fr auto; padding: 8px 10px; }
  .gk-row-thumb { width: 44px; height: 44px; }
  .gk-row-arrow { display: none; }
  .gk-row-title { font-size: 13.5px; }
}

/* ============================================================
   CATEGORY GRID v2 — equal-size tiles (replaces bento)
   ============================================================ */
.cat-grid--equal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.cat-tile {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.cat-tile:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(173,20,87,.18); border-color: var(--c, var(--brand-3)); color: inherit; }
.cat-tile-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.cat-tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cat-tile:hover .cat-tile-img img { transform: scale(1.08); }
.cat-tile-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(45,27,54,.18) 100%);
  pointer-events: none;
}
.cat-tile-body {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.cat-tile-tag {
  align-self: flex-start;
  font-size: 10.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: var(--grad-gold); color: #2D1B36;
}
.cat-tile h3 { font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 1.1rem; margin: 0; color: var(--dark); letter-spacing: -.01em; }
.cat-tile p { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin: 0; flex: 1; }
.cat-tile-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 14px;
  color: #fff !important;
  letter-spacing: .02em;
  background: var(--grad-brand);
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(230,62,124,.32), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .35s var(--ease-bounce), box-shadow .35s var(--ease), gap .25s var(--ease);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  white-space: nowrap;
}
.cat-tile-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #F5D77A, #E8B530, #B68A1E);
  opacity: 0; transition: opacity .4s var(--ease);
  z-index: -1; border-radius: inherit;
}
.cat-tile:hover .cat-tile-cta {
  gap: 12px;
  color: #fff !important;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 38px rgba(230,62,124,.42), inset 0 1px 0 rgba(255,255,255,.3);
}
.cat-tile:hover .cat-tile-cta::before { opacity: 1; }
.cat-tile-cta .arr { display: inline-block; transition: transform .35s var(--ease-bounce); }
.cat-tile:hover .cat-tile-cta .arr { transform: translateX(5px); }

@media (max-width: 1080px) { .cat-grid--equal { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .cat-grid--equal { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 420px)  { .cat-grid--equal { grid-template-columns: 1fr; } }

/* Hide the legacy bento styles when the equal grid is in use */
.bento-section .bento { display: none; }

/* ============================================================
   EDITORIAL — equal-height columns (left feature ↔ right list)
   ============================================================ */
.editorial-grid { align-items: stretch; }
.ed-feature { height: 100%; }
.ed-list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 14px;
  align-content: stretch;
  height: 100%;
}
.ed-mini {
  height: 100%;
  align-items: stretch;
  grid-template-columns: 32px 96px 1fr;
}
.ed-mini-img { width: 96px; height: auto; aspect-ratio: 1/1; }
.ed-mini-body { justify-content: center; gap: 6px; }
@media (max-width: 980px) {
  .ed-list { grid-template-rows: repeat(4, auto); }
  .ed-mini { height: auto; }
}

/* ============================================================
   REVIEWS SECTION — spotlight carousel + thumbnails
   ============================================================ */
.reviews-section { padding: 100px 0; background: linear-gradient(180deg, #FFF9F5 0%, #FFE0CC 100%); position: relative; overflow: hidden; }
.reviews-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,215,122,.35), transparent 70%);
  pointer-events: none;
}
.reviews-section::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,128,171,.28), transparent 70%);
  pointer-events: none;
}

.reviews-spotlight {
  position: relative;
  max-width: 920px;
  margin: 0 auto 32px;
  display: flex; align-items: center; gap: 18px;
}
.rv-stage {
  position: relative;
  flex: 1;
  height: 340px;
}
.rv-card {
  position: absolute; inset: 0;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px 44px 36px;
  box-shadow: 0 30px 70px rgba(173,20,87,.16), 0 6px 18px rgba(45,27,54,.08);
  border: 1px solid var(--line-soft);
  opacity: 0; visibility: hidden;
  transform: translateY(20px) scale(.96);
  transition: opacity .55s var(--ease), transform .55s var(--ease), visibility 0s linear .55s;
  display: flex; flex-direction: column; gap: 14px;
}
.rv-card.is-active {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
  transition: opacity .55s var(--ease), transform .55s var(--ease), visibility 0s linear 0s;
}
.rv-quote-mark {
  position: absolute; top: 8px; right: 38px;
  font-family: Georgia, serif; font-size: 140px; font-weight: 900;
  color: var(--gold-soft); opacity: .35; line-height: .85;
  pointer-events: none;
}
.rv-stars { color: var(--gold); font-size: 18px; letter-spacing: 4px; }
.rv-text {
  font-family: 'Rubik', sans-serif; font-weight: 400;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.55;
  color: var(--ink); margin: 0;
  position: relative; z-index: 1;
}
.rv-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: auto; padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.rv-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Rubik', sans-serif; font-weight: 800; font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(173,20,87,.22);
}
.rv-author > div { flex: 1; min-width: 0; }
.rv-name { font-family: 'Rubik', sans-serif; font-weight: 700; color: var(--dark); font-size: 15px; }
.rv-role { font-size: 12.5px; color: var(--muted); letter-spacing: .2px; }
.rv-product {
  display: flex; align-items: center; gap: 8px;
  background: var(--cream-2); padding: 6px 12px 6px 6px;
  border-radius: 999px;
  margin-left: auto;
}
.rv-product img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.rv-product small { font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 11.5px; color: var(--brand-2); letter-spacing: .3px; }

.rv-nav {
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line-soft);
  color: var(--brand-2); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(173,20,87,.18);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  flex-shrink: 0;
}
.rv-nav:hover { background: var(--grad-brand); color: #fff; transform: scale(1.08); border-color: transparent; }
.rv-nav svg { width: 18px; height: 18px; }

/* Thumb selector */
.rv-thumbs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
  margin-bottom: 38px;
}
.rv-thumb {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line-soft);
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  font-family: 'Lato', sans-serif;
}
.rv-thumb:hover { transform: translateY(-2px); border-color: var(--brand-3); box-shadow: 0 12px 24px rgba(173,20,87,.12); }
.rv-thumb.is-active { background: var(--grad-brand); border-color: transparent; box-shadow: 0 14px 30px rgba(230,62,124,.32); }
.rv-thumb.is-active .rv-thumb-meta strong,
.rv-thumb.is-active .rv-thumb-meta em { color: #fff; }
.rv-thumb-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Rubik', sans-serif; font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.rv-thumb-meta { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.rv-thumb-meta strong { font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 13px; color: var(--dark); }
.rv-thumb-meta em { font-style: normal; font-size: 11px; color: var(--muted); letter-spacing: .3px; }

/* Trust stats below */
.rv-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 920px; margin: 0 auto;
  padding: 22px 24px;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--r);
}
.rv-meta-item { text-align: center; }
.rv-meta-item strong {
  display: block;
  font-family: 'Rubik', sans-serif; font-weight: 900;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  background: linear-gradient(135deg, #E63E7C 0%, #C2185B 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -.01em;
}
.rv-meta-item span { color: var(--muted); font-size: 12.5px; letter-spacing: .3px; }

@media (max-width: 760px) {
  .reviews-spotlight { gap: 6px; }
  .rv-stage { height: 400px; }
  .rv-card { padding: 28px 26px; }
  .rv-quote-mark { right: 18px; font-size: 100px; }
  .rv-author { flex-wrap: wrap; }
  .rv-product { margin-left: 0; }
  .rv-nav { width: 38px; height: 38px; }
  .rv-meta { grid-template-columns: 1fr; gap: 10px; padding: 16px; }
}
@media (max-width: 440px) {
  .rv-nav { display: none; }
  .reviews-spotlight { gap: 0; }
}

/* ============================================================
   HORIZONTAL CAROUSEL (.hcarousel)
   Reusable wrapper that turns any grid into a single-line
   auto-scrolling rail with arrows. Cards keep their original
   look; only the layout becomes horizontal.
   ============================================================ */
.hcarousel {
  position: relative;
  margin: 0 -6px;
  padding-top: 56px; /* room above the track for the top-right arrows */
}
.hcarousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 6px 22px;
  scrollbar-width: none;
  scroll-padding-left: 6px;
}
.hcarousel-track::-webkit-scrollbar { display: none; }
.hcarousel-track > * {
  flex: 0 0 calc((100% - 18px * 3) / 4);
  scroll-snap-align: start;
  min-width: 0;
}

/* Arrow buttons — anchored top-right, not on the side of the cards */
.hcarousel-prev,
.hcarousel-next {
  position: absolute; top: 0;
  z-index: 6;
  width: 42px; height: 42px; border-radius: 50%;
  background: #c2185b; border: 1px solid var(--line-soft);
  color: var(--brand-2); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(173,20,87,.14);
  transition: transform .35s var(--ease-bounce), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.hcarousel-prev { right: 60px; }
.hcarousel-next { right: 6px; }
.hcarousel-prev:hover,
.hcarousel-next:hover {
  background: var(--grad-brand); color: #fff;
  border-color: transparent;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 32px rgba(230,62,124,.32);
}
.hcarousel-prev:active,
.hcarousel-next:active { transform: translateY(-1px) scale(.98); }
.hcarousel-prev svg, .hcarousel-next svg {
	color: #fff9f5;
  width: 16px; height: 16px;
  transition: transform .35s var(--ease-bounce);
}
.hcarousel-prev:hover svg { transform: translateX(-3px); }
.hcarousel-next:hover svg { transform: translateX(3px); }
.hcarousel-prev[disabled],
.hcarousel-next[disabled] { opacity: .35; cursor: default; }

/* Soft fade gradients on edges (over the track area only — clear of the arrows) */
.hcarousel::before,
.hcarousel::after {
  content: ''; position: absolute; top: 56px; bottom: 0; width: 60px;
  z-index: 4; pointer-events: none;
}
.hcarousel::before { left: 0;  background: linear-gradient(90deg, var(--bg-fade, #FFF9F5) 0%, transparent 100%); }
.hcarousel::after  { right: 0; background: linear-gradient(-90deg, var(--bg-fade, #FFF9F5) 0%, transparent 100%); }

/* Items-per-view breakpoints */
@media (max-width: 1080px) {
  .hcarousel-track > * { flex-basis: calc((100% - 18px * 2) / 3); }
}
@media (max-width: 760px) {
  .hcarousel-track > * { flex-basis: calc((100% - 14px) / 2); }
  .hcarousel-track { gap: 14px; }
  .hcarousel { padding-top: 50px; }
  .hcarousel-prev, .hcarousel-next { width: 36px; height: 36px; }
  .hcarousel-prev { right: 50px; }
  .hcarousel-next { right: 6px; }
  .hcarousel::before, .hcarousel::after { top: 50px; }
}
@media (max-width: 480px) {
  .hcarousel-track > * { flex-basis: 78%; }
}

/* Override the legacy product-grid--v2 grid so children flow horizontally */
.fresh-carousel .hcarousel-track { padding-top: 14px; padding-bottom: 24px; }
.fresh-carousel .product-card,
.cat-carousel .cat-tile { height: auto; }

/* Background-aware edge fades for the two sections that use carousels */
.fresh-drops .hcarousel { --bg-fade: #FFF9F5; }
.bento-section .hcarousel { --bg-fade: var(--cream); }

/* Remove edge fade overlays on the home page "Every gift, beautifully curated"
   and "The latest, hottest & most-loved" carousels */
.bento-section .hcarousel::before,
.bento-section .hcarousel::after,
.fresh-drops .hcarousel::before,
.fresh-drops .hcarousel::after { display: none; }

/* Cleaner, tighter card hover for the two home-page carousels —
   shadow hugs the card shape instead of bleeding out as a pink halo */
.bento-section .cat-tile,
.fresh-drops .product-card {
  border-radius: var(--r);
  border: 1px solid var(--line-soft);
  box-shadow: 0 2px 6px rgba(40, 20, 30, .04);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.bento-section .cat-tile:hover,
.fresh-drops .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(40, 20, 30, .08), 0 2px 6px rgba(40, 20, 30, .05);
  border-color: var(--line);
}

/* Tighten the vertical gap between "Every gift, beautifully curated"
   (bento-section) and "This week's favourites" (editorial) */
.bento-section { padding-bottom: 40px; }
.editorial     { padding-top: 50px; }
@media (max-width: 720px) {
  .bento-section { padding-bottom: 28px; }
  .editorial     { padding-top: 32px; }
}

/* =====================================================================
   CATEGORY FILTER SYSTEM (premium, eCommerce-grade)
   Two-column layout on desktop, slide-in drawer on mobile.
   Live filtering — see js/category-filters.js
===================================================================== */

.cat-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

/* ---------- Toolbar above grid ---------- */
.cat-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  padding: 14px 18px; margin-bottom: 18px;
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
}
.cat-toolbar-left { display: flex; align-items: center; gap: 14px; }
.cat-filter-toggle {
  display: none;
  align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 99px;
  background: var(--grad-brand); color: #fff;
  border: 0; cursor: pointer; font-weight: 600; font-family: 'Rubik',sans-serif;
  font-size: 13px;
  box-shadow: 0 6px 18px rgba(230,62,124,.3);
  transition: transform .25s var(--ease);
}
.cat-filter-toggle:hover { transform: translateY(-1px); }
.cat-filter-toggle svg { width: 16px; height: 16px; }
.cat-filter-toggle .badge-num {
  background: rgba(255,255,255,.22); padding: 2px 8px;
  border-radius: 99px; font-size: 11px; line-height: 1.3;
}
.cat-count {
  font-size: 13px; color: var(--dark); opacity: .75;
  font-family: 'Rubik',sans-serif;
}
.cat-count strong { color: var(--brand-2); opacity: 1; font-weight: 700; }
.cat-sort {
  appearance: none; -webkit-appearance: none;
  padding: 9px 36px 9px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff;
  font-family: 'Rubik',sans-serif; font-size: 13px; color: var(--dark);
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C2185B' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center;
  transition: border-color .25s var(--ease);
}
.cat-sort:hover, .cat-sort:focus { border-color: var(--brand); outline: 0; }

/* ---------- Active filter chips bar ---------- */
.cat-active {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.cat-active-label {
  font-size: 12px; color: var(--dark); opacity: .65;
  font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  margin-right: 4px;
}
.cat-active-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 8px 6px 12px; border-radius: 99px;
  background: var(--cream-2); color: var(--brand-2);
  font-size: 12px; font-weight: 600; font-family: 'Rubik',sans-serif;
  border: 1px solid var(--line); animation: cat-chip-in .25s var(--ease);
}
.cat-active-chip button {
  background: rgba(194,24,91,.12); color: var(--brand-2);
  border: 0; width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.cat-active-chip button:hover { background: var(--brand-2); color: #fff; transform: rotate(90deg); }
.cat-active-chip button svg { width: 10px; height: 10px; stroke-width: 2.5; }
.cat-clear-all {
  background: transparent; border: 0; color: var(--brand-2);
  font-size: 12px; font-weight: 700; cursor: pointer; padding: 6px 8px;
  text-decoration: underline; text-underline-offset: 3px;
}
.cat-clear-all:hover { color: var(--brand); }
@keyframes cat-chip-in {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---------- Sidebar ---------- */
.cat-sidebar {
  position: sticky; top: 92px;
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--r-sm); padding: 8px 8px 18px;
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - 110px); overflow-y: auto;
}
.cat-sidebar::-webkit-scrollbar { width: 6px; }
.cat-sidebar-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 14px 10px; border-bottom: 1px solid var(--line-soft);
  margin-bottom: 6px;
}
.cat-sidebar-head h3 {
  margin: 0; font-size: 16px; font-weight: 700;
  font-family: 'Rubik',sans-serif; color: var(--brand-2);
  display: flex; align-items: center; gap: 8px;
}
.cat-sidebar-head h3 svg { width: 18px; height: 18px; }
.cat-mobile-close {
  display: none; background: transparent; border: 0; cursor: pointer;
  color: var(--brand-2); padding: 4px; border-radius: 8px;
}
.cat-mobile-close:hover { background: var(--cream-2); }
.cat-mobile-close svg { width: 22px; height: 22px; stroke-width: 2; }

/* Filter section (accordion) */
.cat-fs {
  border-bottom: 1px solid var(--line-soft);
  padding: 6px 6px;
}
.cat-fs:last-of-type { border-bottom: 0; }
.cat-fs > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 10px; border-radius: 10px;
  font-family: 'Rubik',sans-serif; font-weight: 700; font-size: 13.5px;
  color: var(--dark); user-select: none;
  transition: background .2s var(--ease);
}
.cat-fs > summary::-webkit-details-marker { display: none; }
.cat-fs > summary:hover { background: var(--cream-2); }
.cat-fs > summary .fs-count {
  font-size: 11px; background: var(--brand-2); color: #fff;
  padding: 2px 7px; border-radius: 99px; font-weight: 700;
  margin-left: auto; margin-right: 8px;
  opacity: 0; transform: scale(.8); transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.cat-fs.has-selection > summary .fs-count { opacity: 1; transform: scale(1); }
.cat-fs > summary .fs-caret {
  width: 14px; height: 14px; color: var(--brand-2);
  transition: transform .3s var(--ease); flex-shrink: 0;
}
.cat-fs[open] > summary .fs-caret { transform: rotate(180deg); }
.cat-fs-body { padding: 4px 10px 14px; }

/* Make the accordion content animate open with a smooth height transition */
.cat-fs[open] .cat-fs-body { animation: cat-fs-in .3s var(--ease); }
@keyframes cat-fs-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Size / theme pills (single-line tags) ---------- */
.cat-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.cat-pills label {
  position: relative; cursor: pointer;
}
.cat-pills input { position: absolute; opacity: 0; pointer-events: none; }
.cat-pills span {
  display: inline-block; padding: 7px 14px;
  border-radius: 99px; background: #fff;
  border: 1px solid var(--line); font-size: 12.5px; font-weight: 600;
  color: var(--dark); font-family: 'Rubik',sans-serif;
  transition: all .2s var(--ease);
}
.cat-pills label:hover span { border-color: var(--brand); color: var(--brand-2); }
.cat-pills input:checked + span {
  background: var(--grad-brand); color: #fff;
  border-color: transparent; box-shadow: 0 4px 14px rgba(230,62,124,.3);
  transform: translateY(-1px);
}

/* ---------- Color swatches ---------- */
.cat-swatches { display: flex; flex-wrap: wrap; gap: 10px; padding: 4px 0 2px; }
.cat-swatches label {
  position: relative; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-width: 44px;
}
.cat-swatches input { position: absolute; opacity: 0; pointer-events: none; }
.cat-swatch-dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--sw, #ccc);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line), 0 3px 8px rgba(0,0,0,.08);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.cat-swatches label:hover .cat-swatch-dot { transform: scale(1.1); }
.cat-swatches input:checked + .cat-swatch-dot {
  box-shadow: 0 0 0 2px var(--brand-2), 0 4px 10px rgba(0,0,0,.15);
  transform: scale(1.08);
}
.cat-swatches input:checked + .cat-swatch-dot::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 12px; height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.4));
}
.cat-swatch-name {
  font-size: 10.5px; color: var(--dark); opacity: .7;
  font-family: 'Rubik',sans-serif; font-weight: 600;
}

/* Swatch ramps for individual colors (data-attr based, but we use inline --sw on each label) */

/* ---------- Checkbox list (occasion / feature) ---------- */
.cat-checks { display: flex; flex-direction: column; gap: 4px; }
.cat-checks label {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px; border-radius: 10px; cursor: pointer;
  font-size: 13px; color: var(--dark);
  font-family: 'Rubik',sans-serif; font-weight: 500;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.cat-checks label:hover { background: var(--cream-2); color: var(--brand-2); }
.cat-checks input {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; border-radius: 6px;
  border: 1.5px solid var(--line); background: #fff;
  position: relative; flex-shrink: 0; cursor: pointer;
  transition: all .2s var(--ease);
}
.cat-checks input:hover { border-color: var(--brand); }
.cat-checks input:checked {
  background: var(--grad-brand); border-color: transparent;
}
.cat-checks input:checked::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px 12px no-repeat;
}
.cat-checks label .cat-check-count {
  margin-left: auto; font-size: 11px; color: var(--dark);
  opacity: .45; font-weight: 600;
}

/* Scrollable when too many options (occasions) */
.cat-checks-scroll { max-height: 220px; overflow-y: auto; padding-right: 4px; }
.cat-checks-scroll::-webkit-scrollbar { width: 4px; }
.cat-checks-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

/* ---------- Toggle group (LED, Personalized) ---------- */
.cat-toggles { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.cat-toggles label {
  position: relative; cursor: pointer; text-align: center;
}
.cat-toggles input { position: absolute; opacity: 0; pointer-events: none; }
.cat-toggles span {
  display: block; padding: 9px 8px; border-radius: 10px;
  background: #fff; border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 600; color: var(--dark);
  font-family: 'Rubik',sans-serif; transition: all .2s var(--ease);
}
.cat-toggles label:hover span { border-color: var(--brand); color: var(--brand-2); }
.cat-toggles input:checked + span {
  background: var(--cream-2); color: var(--brand-2);
  border-color: var(--brand);
}

/* ---------- Price range ---------- */
.cat-price-out {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Rubik',sans-serif; font-size: 12.5px;
  color: var(--dark); margin: 4px 2px 12px;
}
.cat-price-out strong { color: var(--brand-2); font-weight: 700; }
.cat-range-wrap {
  position: relative; height: 28px;
  padding: 0 2px;
}
.cat-range-track {
  position: absolute; left: 2px; right: 2px; top: 50%;
  height: 4px; background: var(--line); border-radius: 99px;
  transform: translateY(-50%);
}
.cat-range-fill {
  position: absolute; top: 50%; height: 4px;
  background: var(--grad-brand); border-radius: 99px;
  transform: translateY(-50%);
}
.cat-range-wrap input[type=range] {
  -webkit-appearance: none; appearance: none; pointer-events: none;
  position: absolute; left: 0; right: 0; top: 0; width: 100%;
  height: 28px; background: transparent; margin: 0;
}
.cat-range-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 2px solid var(--brand);
  box-shadow: 0 2px 6px rgba(230,62,124,.4);
  cursor: pointer; pointer-events: auto;
  transition: transform .15s var(--ease);
}
.cat-range-wrap input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.cat-range-wrap input[type=range]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 2px solid var(--brand);
  box-shadow: 0 2px 6px rgba(230,62,124,.4);
  cursor: pointer; pointer-events: auto;
}

/* ---------- Footer (mobile-only Apply / Clear) ---------- */
.cat-sidebar-foot {
  display: none; gap: 10px; padding: 14px 14px 4px;
  border-top: 1px solid var(--line-soft); margin-top: 8px;
}
.cat-sidebar-foot button {
  flex: 1; padding: 12px; border-radius: 12px;
  font-family: 'Rubik',sans-serif; font-weight: 700; font-size: 13.5px;
  cursor: pointer; transition: all .25s var(--ease);
}
.cat-foot-clear {
  background: #fff; border: 1px solid var(--line); color: var(--brand-2);
}
.cat-foot-clear:hover { background: var(--cream-2); }
.cat-foot-apply {
  background: var(--grad-brand); border: 0; color: #fff;
  box-shadow: 0 6px 18px rgba(230,62,124,.3);
}
.cat-foot-apply:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(230,62,124,.4); }

/* ============================================================
   Hampers — Animated Filter Tabs (Budget tiles + Occasion toggles)
   ============================================================ */
.hf-wrap {
  margin: 6px 0 28px;
  display: flex; flex-direction: column; gap: 32px;
}

.hf-section {
  background: linear-gradient(135deg, #fff 0%, #fff8fb 100%);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: 0 10px 28px rgba(45,27,54,.05);
  position: relative; overflow: hidden;
}
.hf-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 60% at 100% 0%, rgba(230,62,124,.06), transparent 60%),
    radial-gradient(80% 60% at 0% 100%, rgba(232,181,48,.06), transparent 60%);
  pointer-events: none; z-index: 0;
}
.hf-section > * { position: relative; z-index: 1; }

.hf-section-head { text-align: center; margin-bottom: 20px; }
.hf-section-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-deep);
  padding: 5px 14px;
  background: rgba(232,181,48,.12);
  border-radius: 99px;
  margin-bottom: 8px;
}
.hf-section-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--brand-2);
  margin: 0;
}

/* --- Budget Tiles --- */
.hf-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.hf-tile {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 16px 18px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  color: var(--dark);
  text-decoration: none;
  overflow: hidden;
  transition: transform .35s var(--ease),
              box-shadow .35s var(--ease),
              border-color .35s var(--ease);
  isolation: isolate;
}
.hf-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: -1;
}
.hf-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(230,62,124,.18);
  border-color: var(--brand);
}
.hf-tile-glow {
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(232,181,48,.4), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .5s var(--ease), transform .8s var(--ease);
  z-index: 0;
}
.hf-tile:hover .hf-tile-glow { opacity: 1; transform: scale(1.4); }

.hf-tile-icon {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(230,62,124,.1), rgba(232,181,48,.12));
  color: var(--brand-2);
  margin-bottom: 10px;
  transition: transform .4s var(--ease);
  position: relative; z-index: 1;
}
.hf-tile-icon svg { width: 24px; height: 24px; }
.hf-tile:hover .hf-tile-icon { transform: rotate(-6deg) scale(1.08); }

.hf-tile-meta {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; color: var(--muted);
  position: relative; z-index: 1;
}
.hf-tile-price {
  font-family: 'Rubik', sans-serif;
  font-size: 1.45rem; font-weight: 800;
  color: var(--brand-2);
  margin: 4px 0 8px;
  position: relative; z-index: 1;
}
.hf-tile-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 12px;
  border-radius: 99px;
  background: rgba(194,24,91,.08);
  color: var(--brand-2);
  position: relative; z-index: 1;
}
.hf-tile-tag.hf-pop {
  background: var(--grad-gold);
  color: var(--brand-2);
  box-shadow: 0 4px 12px rgba(232,181,48,.35);
}
.hf-tile-custom {
  background: linear-gradient(135deg, #fff 0%, #fff0f6 100%);
  border: 1.5px dashed var(--brand);
}
.hf-tile-custom .hf-custom-tag {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 6px 14px rgba(230,62,124,.32);
}
.hf-tile-custom:hover {
  border-style: solid;
  background: linear-gradient(135deg, #fff5fa 0%, #ffe6f0 100%);
}

/* Active state on price tiles */
.hf-tile.is-active {
  border-color: var(--brand);
  box-shadow: 0 16px 32px rgba(230,62,124,.28);
  transform: translateY(-4px);
}
.hf-tile.is-active::before { opacity: 1; }
.hf-tile.is-active .hf-tile-icon {
  background: rgba(255,255,255,.25);
  color: #fff;
}
.hf-tile.is-active .hf-tile-meta { color: rgba(255,255,255,.9); }
.hf-tile.is-active .hf-tile-price { color: #fff; }
.hf-tile.is-active .hf-tile-tag {
  background: rgba(255,255,255,.22);
  color: #fff;
}

/* --- Group toggles (Celebrations / Family / Festive / Milestones / Care) --- */
.hf-group-toggle {
  position: relative;
  display: inline-flex; flex-wrap: wrap;
  gap: 4px;
  padding: 6px;
  background: rgba(45,27,54,.05);
  border-radius: 99px;
  margin: 0 auto 20px;
  width: max-content; max-width: 100%;
}
.hf-group-toggle { display: flex; justify-content: center; }
.hf-wrap .hf-group-toggle {
  margin-left: auto; margin-right: auto;
}
.hf-gt {
  position: relative; z-index: 1;
  background: transparent; border: 0; cursor: pointer;
  padding: 9px 18px;
  border-radius: 99px;
  font-family: 'Rubik', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--dark); opacity: .65;
  transition: color .3s var(--ease), opacity .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}
.hf-gt:hover { opacity: 1; transform: translateY(-1px); }
.hf-gt.active {
  background: var(--grad-brand);
  color: #fff; opacity: 1;
  box-shadow: 0 6px 16px rgba(230,62,124,.32);
}
.hf-gt-indicator { display: none; }

/* --- Animated chip row (occasion) --- */
.hf-chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px;
}
.hf-chips .chip {
  transition: opacity .35s var(--ease),
              transform .35s var(--ease),
              max-width .35s var(--ease),
              padding .35s var(--ease),
              margin .35s var(--ease),
              background .25s var(--ease),
              color .25s var(--ease),
              border-color .25s var(--ease);
  transform-origin: center;
  max-width: 240px;
}
.hf-chips .chip.is-hidden-by-group {
  opacity: 0; transform: scale(.6);
  max-width: 0; padding-left: 0; padding-right: 0;
  margin: 0 -4px; overflow: hidden;
  pointer-events: none; border-width: 0;
}
.hf-chips .chip:not(.is-hidden-by-group):hover {
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 640px) {
  .hf-section { padding: 20px 14px; border-radius: 18px; }
  .hf-tile-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hf-tile { padding: 18px 10px 14px; }
  .hf-tile-icon { width: 44px; height: 44px; }
  .hf-tile-icon svg { width: 20px; height: 20px; }
  .hf-tile-price { font-size: 1.2rem; }
  .hf-group-toggle { padding: 4px; gap: 2px; width: 100%; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .hf-group-toggle::-webkit-scrollbar { display: none; }
  .hf-gt { padding: 8px 14px; font-size: 12px; }
}

/* ---------- Chip-row search bar (for chip-row category pages) ---------- */
.cr-search-wrap {
  position: relative;
  display: flex; align-items: center;
  width: 100%; max-width: 880px;
  margin: 0 auto 22px;
}
.cr-search-wrap .cr-search-ic {
  position: absolute; left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 19px; height: 19px;
  color: var(--brand-2); opacity: .65;
  pointer-events: none;
}
.cr-search-wrap input[data-cr-search] {
  width: 100%;
  padding: 15px 48px 15px 48px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.cr-search-wrap input[data-cr-search]:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(230, 62, 124, 0.12);
}
.cr-search-wrap input[data-cr-search]::-webkit-search-cancel-button { display: none; }
.cr-search-clear {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(194, 24, 91, .08);
  color: var(--brand-2);
  display: inline-grid; place-items: center;
  padding: 0;
}
.cr-search-clear svg { width: 13px; height: 13px; }
.cr-search-clear:hover { background: rgba(194, 24, 91, .16); }

/* ---------- Search bar in toolbar ---------- */
.cat-search-wrap {
  position: relative;
  display: flex; align-items: center;
  flex: 1 1 480px; min-width: 280px; max-width: 720px;
}
.cat-search-wrap .cat-search-ic {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--brand-2); opacity: .65;
  pointer-events: none;
}
.cat-search-wrap input[data-cat-search] {
  width: 100%;
  padding: 12px 42px 12px 44px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: var(--dark);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.cat-search-wrap input[data-cat-search]:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(230, 62, 124, 0.12);
}
.cat-search-wrap input[data-cat-search]::-webkit-search-cancel-button { display: none; }
.cat-search-clear {
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(194, 24, 91, .08);
  color: var(--brand-2);
  display: inline-grid; place-items: center;
  padding: 0;
}
.cat-search-clear svg { width: 12px; height: 12px; }
.cat-search-clear:hover { background: rgba(194, 24, 91, .16); }
@media (max-width: 640px) {
  .cat-search-wrap { width: 100%; max-width: none; min-width: 0; flex: 1 1 100%; order: 3; }
}

/* ---------- Empty state ---------- */
.cat-empty {
  grid-column: 1 / -1;
  text-align: center; padding: 50px 20px;
  background: #fff; border: 1px dashed var(--line);
  border-radius: var(--r-sm); margin-top: 8px;
}
.cat-empty svg { width: 56px; height: 56px; color: var(--brand-3); margin-bottom: 12px; }
.cat-empty h4 { margin: 0 0 6px; font-size: 18px; color: var(--brand-2); }
.cat-empty p { margin: 0 0 16px; color: var(--dark); opacity: .65; font-size: 14px; }
.cat-empty button {
  background: var(--grad-brand); color: #fff; border: 0;
  padding: 10px 22px; border-radius: 99px; cursor: pointer;
  font-family: 'Rubik',sans-serif; font-weight: 600; font-size: 13px;
  box-shadow: 0 6px 18px rgba(230,62,124,.3);
}

/* ---------- Card hide/show animation ---------- */
.product-card.is-filtered-out {
  opacity: 0; transform: scale(.95) translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  pointer-events: none; position: absolute;
  visibility: hidden;
}
.product-grid { transition: min-height .3s var(--ease); }

/* ---------- Backdrop (mobile drawer) ---------- */
.cat-backdrop {
  position: fixed; inset: 0;
  background: rgba(45,27,54,.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 89; opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.cat-backdrop.show { opacity: 1; visibility: visible; }

/* ---------- Responsive: drawer on mobile ---------- */
@media (max-width: 980px) {
  .cat-layout { grid-template-columns: 1fr; }
  .cat-filter-toggle { display: inline-flex; }

  .cat-sidebar {
    position: fixed; top: 0; left: 0;
    width: 90%; max-width: 360px; height: 100vh;
    margin: 0; border-radius: 0;
    transform: translateX(-100%);
    transition: transform .35s var(--ease);
    z-index: 90; max-height: 100vh;
    box-shadow: 0 40px 80px rgba(45,27,54,.4);
    padding-bottom: 100px;
  }
  .cat-sidebar.open { transform: translateX(0); }
  .cat-mobile-close { display: inline-grid; place-items: center; }
  .cat-sidebar-foot { display: flex; position: sticky; bottom: 0; background: #fff; padding-bottom: 14px; }
}

@media (max-width: 640px) {
  .cat-toolbar { padding: 12px 14px; }
  .cat-toolbar-left { width: 100%; justify-content: space-between; }
  .cat-sort { flex: 1; max-width: 200px; }
}

/* =====================================================================
   CUSTOM HAMPER BUILDER (premium, GSAP-driven)
   Two-column layout: catalog (left) + live SVG preview (right)
===================================================================== */

.hb-wrap { padding: 30px 0 60px; }

.hb-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 420px;
  gap: 36px;
  align-items: start;
}

/* ============= Catalog (LEFT) ============= */
.hb-catalog { display: flex; flex-direction: column; gap: 26px; }

.hb-section {
  background: #fff;
  border-radius: var(--r);
  padding: 22px 24px 24px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.hb-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(230,62,124,.05), transparent 50%);
  pointer-events: none;
}

.hb-sec-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 16px;
}
.hb-sec-title {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Rubik',sans-serif; font-weight: 700;
  font-size: 17px; color: var(--brand-2); margin: 0;
}
.hb-sec-ic {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px -4px rgba(230,62,124,.4);
  transition: transform .35s var(--ease);
}
.hb-section:hover .hb-sec-ic { transform: rotate(-6deg) scale(1.05); }
.hb-sec-ic svg { width: 22px; height: 22px; }
.hb-sec-sub {
  font-size: 12.5px; color: var(--dark); opacity: .6;
  font-family: 'Rubik',sans-serif; font-weight: 500;
}
.hb-required {
  display: inline-block;
  font-size: 10.5px; color: var(--brand-2);
  background: var(--cream-2); padding: 3px 9px; border-radius: 99px;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-left: 4px;
}

/* Cards row */
.hb-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}

/* Single product card */
.hb-card {
  position: relative; cursor: pointer;
  background: #fff; border: 1.5px solid var(--line-soft);
  border-radius: 16px; padding: 14px 12px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: transform .35s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.hb-card input { position: absolute; opacity: 0; pointer-events: none; }
.hb-card:hover {
  border-color: var(--brand-3);
  box-shadow: 0 14px 30px -16px rgba(230,62,124,.4);
}
.hb-card.is-selected {
  border-color: var(--brand);
  background: linear-gradient(180deg, #fff 0%, var(--cream-2) 100%);
  box-shadow: 0 14px 30px -10px rgba(230,62,124,.32);
}
.hb-card.is-selected::after {
  content: ""; position: absolute; top: 8px; right: 8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--grad-brand) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
  box-shadow: 0 4px 10px rgba(230,62,124,.4);
  animation: hb-check-pop .35s var(--ease-bounce);
}
@keyframes hb-check-pop {
  0%   { transform: scale(0) rotate(-45deg); }
  100% { transform: scale(1) rotate(0); }
}

.hb-card-img {
  width: 76px; height: 76px; border-radius: 14px;
  background: linear-gradient(135deg, var(--c, var(--brand-3)) 0%, var(--c2, var(--brand)) 100%);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.25);
  transition: transform .35s var(--ease);
}
.hb-card:hover .hb-card-img { transform: translateY(-3px) rotate(-3deg); }
.hb-card-img svg { width: 40px; height: 40px; }

.hb-card-name {
  font-family: 'Rubik',sans-serif; font-weight: 600;
  font-size: 13px; color: var(--dark);
  text-align: center; line-height: 1.3;
}
.hb-card-price {
  font-family: 'Rubik',sans-serif; font-weight: 700;
  font-size: 13.5px; color: var(--brand-2);
  margin-top: -2px;
}
.hb-card-price .free { color: #4CAF50; }

/* ============= Live Preview (RIGHT, sticky) ============= */
.hb-preview {
  position: sticky; top: 100px;
  background: linear-gradient(160deg, #fff 0%, var(--cream) 60%, #fff 100%);
  border-radius: var(--r);
  padding: 28px 24px 22px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hb-preview::before, .hb-preview::after {
  content: ""; position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(40px); opacity: .35;
}
.hb-preview::before {
  width: 200px; height: 200px;
  top: -60px; right: -40px;
  background: radial-gradient(circle, var(--brand-3), transparent 60%);
}
.hb-preview::after {
  width: 180px; height: 180px;
  bottom: -50px; left: -30px;
  background: radial-gradient(circle, var(--gold, #E8B530), transparent 60%);
}
.hb-preview-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px; position: relative;
}
.hb-preview-head h3 {
  margin: 0; font-size: 16px; font-weight: 700;
  font-family: 'Rubik',sans-serif; color: var(--brand-2);
  display: flex; align-items: center; gap: 8px;
}
.hb-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4CAF50; position: relative;
  box-shadow: 0 0 0 0 rgba(76,175,80,.5);
  animation: hb-pulse 2s infinite;
}
@keyframes hb-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(76,175,80,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(76,175,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,175,80,0); }
}
.hb-live-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: #4CAF50;
}

/* SVG stage */
.hb-stage {
  position: relative;
  width: 100%; aspect-ratio: 1 / 1;
  margin: 8px 0 4px;
  perspective: 800px;
  transform-style: preserve-3d;
}
.hb-stage svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 30px 30px rgba(45,27,54,.15));
  transition: transform .6s var(--ease);
  transform-style: preserve-3d;
}
.hb-stage:hover svg { transform: rotateY(-3deg) rotateX(2deg); }

/* Items in the SVG hamper */
.h-item {
  opacity: 0; transform-origin: 50% 100%;
  transform: translateY(20px) scale(.6);
  transition: opacity .45s var(--ease), transform .55s var(--ease-bounce);
}
.h-item.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Empty state hint over the hamper */
.hb-empty-hint {
  position: absolute; left: 50%; top: 32%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.92);
  border: 1px dashed var(--brand-3);
  padding: 10px 16px; border-radius: 99px;
  font-size: 12px; color: var(--brand-2);
  font-family: 'Rubik',sans-serif; font-weight: 600;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.hb-empty-hint.fade { opacity: 0; }

/* Total counter */
.hb-total-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 14px 16px; border-radius: 14px;
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 12px 30px -10px rgba(230,62,124,.5);
  margin-top: 10px; position: relative; overflow: hidden;
}
.hb-total-row::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  animation: hb-shine 4s ease-in-out infinite;
}
@keyframes hb-shine {
  0%, 100% { transform: translateX(-100%); }
  50%      { transform: translateX(100%); }
}
.hb-total-row .lbl {
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; opacity: .8;
  display: block; margin-bottom: 2px;
  font-family: 'Rubik',sans-serif;
}
.hb-total-row .num {
  font-family: 'Rubik',sans-serif; font-weight: 800;
  font-size: 26px; letter-spacing: -.01em;
  display: flex; align-items: baseline; gap: 6px;
}
.hb-total-row .num small { font-size: 13px; opacity: .7; font-weight: 600; }
.hb-total-row .count {
  text-align: right; font-family: 'Rubik',sans-serif;
}
.hb-total-row .count .n {
  font-size: 22px; font-weight: 800; line-height: 1;
}
.hb-total-row .count .lbl-small {
  font-size: 11px; opacity: .8; margin-top: 2px;
}

/* Selected items chip list */
.hb-chips {
  display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 0 4px;
  min-height: 32px;
}
.hb-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 6px 4px 10px; border-radius: 99px;
  background: var(--cream-2); color: var(--brand-2);
  font-size: 11.5px; font-weight: 600; font-family: 'Rubik',sans-serif;
  border: 1px solid var(--line);
  animation: hb-chip-pop .3s var(--ease-bounce);
}
.hb-chip button {
  background: transparent; border: 0; cursor: pointer;
  color: var(--brand-2); padding: 0 4px; line-height: 1;
  font-size: 14px;
  transition: transform .2s var(--ease);
}
.hb-chip button:hover { transform: scale(1.4) rotate(90deg); }
@keyframes hb-chip-pop {
  0%   { opacity: 0; transform: scale(.6); }
  100% { opacity: 1; transform: scale(1); }
}

/* CTA */
.hb-cta {
  width: 100%; padding: 14px 20px; border-radius: 14px;
  background: var(--brand-2); color: #fff;
  font-family: 'Rubik',sans-serif; font-weight: 700; font-size: 14px;
  border: 0; cursor: pointer; margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.hb-cta:hover {
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(230,62,124,.6);
}
.hb-cta:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.hb-cta svg { width: 18px; height: 18px; }

/* ============= Finishing touches strip (full-width below) ============= */
.hb-finishing {
  margin-top: 36px; padding: 28px;
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--r); box-shadow: var(--shadow-sm);
}
.hb-finishing h3 {
  margin: 0 0 18px; font-size: 17px; color: var(--brand-2);
  display: flex; align-items: center; gap: 10px;
}
.hb-finishing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.hb-finishing label {
  font-family: 'Rubik',sans-serif; font-weight: 600;
  font-size: 12.5px; color: var(--dark); opacity: .7;
  display: block; margin-bottom: 6px;
}
.hb-finishing input, .hb-finishing select, .hb-finishing textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff;
  font-family: 'Rubik',sans-serif; font-size: 14px; color: var(--dark);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.hb-finishing input:focus, .hb-finishing select:focus, .hb-finishing textarea:focus {
  outline: 0; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(230,62,124,.15);
}
.hb-finishing textarea { resize: vertical; min-height: 84px; }

/* Floating fly-to-basket bubble */
.hb-fly {
  position: fixed; width: 56px; height: 56px;
  border-radius: 16px; pointer-events: none; z-index: 95;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand-3), var(--brand));
  color: #fff; box-shadow: 0 12px 24px rgba(230,62,124,.4);
}
.hb-fly svg { width: 28px; height: 28px; }

/* ============= Responsive ============= */
@media (max-width: 1100px) {
  .hb-layout { grid-template-columns: 1fr; }
  .hb-preview { position: relative; top: 0; }
}
@media (max-width: 640px) {
  .hb-section { padding: 18px 16px 20px; }
  .hb-cards { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
  .hb-card-img { width: 64px; height: 64px; }
  .hb-card-img svg { width: 32px; height: 32px; }
  .hb-preview { padding: 22px 18px 18px; }
  .hb-total-row .num { font-size: 22px; }
}

/* =====================================================================
   HAMPER BUILDER — Real images, 3D photo stage, always-visible calc
===================================================================== */

/* Card image becomes a real photographic tile */
.hb-card-img {
  position: relative; overflow: hidden;
  background-color: var(--c, var(--cream-2));
  width: 88px; height: 88px;
}
.hb-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.hb-card:hover .hb-card-img img { transform: scale(1.08); }
.hb-card-img::after {
  /* subtle glassy gradient on top for depth */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(255,255,255,.18) 0%, transparent 35%, rgba(0,0,0,.08) 100%);
  pointer-events: none;
}

/* =================== 3D Photographic Stage =================== */
.hb-stage-3d {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  perspective: 1100px;
  margin: 4px 0 4px;
}
.hb-scene {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(8deg);
  transition: transform .8s var(--ease);
}
.hb-stage-3d:hover .hb-scene {
  transform: rotateX(4deg) rotateY(-4deg);
}

/* Basket photo — the always-visible base */
.hb-basket {
  position: absolute;
  left: 8%; right: 8%; bottom: 6%; top: 36%;
  border-radius: 50% 50% 18px 18px / 30% 30% 18px 18px;
  overflow: hidden;
  box-shadow:
    0 30px 50px -16px rgba(45,27,54,.4),
    inset 0 -8px 30px rgba(0,0,0,.18);
  transform-origin: 50% 100%;
  transform: translateZ(0);
  transition: transform .55s var(--ease-bounce);
}
.hb-basket img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hb-basket::after {
  /* warm lighting overlay */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(255,230,200,.4) 0%,
    transparent 50%);
  pointer-events: none;
}

/* Soft floor shadow under the basket */
.hb-shadow {
  position: absolute;
  left: 18%; right: 18%; bottom: 2%; height: 16px;
  background: radial-gradient(ellipse, rgba(45,27,54,.35), transparent 70%);
  filter: blur(6px);
  border-radius: 50%;
  z-index: -1;
}

/* Ribbon photo overlay */
.hb-ribbon {
  position: absolute;
  left: 8%; right: 8%; top: 56%;
  height: 32px;
  pointer-events: none;
  transform: translateZ(20px);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.15));
}
.hb-ribbon svg { width: 100%; height: 100%; }

/* Each floating product photo */
.h-item {
  position: absolute;
  left: var(--x, 50%); top: var(--y, 50%);
  width: 26%; aspect-ratio: 1;
  margin-left: -13%; margin-top: -13%;
  transform: translateZ(var(--z, 40px)) rotate(var(--rot, 0deg)) scale(.4);
  opacity: 0;
  transition: transform .55s var(--ease-bounce), opacity .4s var(--ease);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 10px 24px rgba(45,27,54,.32),
    0 4px 8px rgba(45,27,54,.18),
    inset 0 0 0 2px rgba(255,255,255,.5);
  pointer-events: none;
}
.h-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.h-item.show {
  transform: translateZ(var(--z, 40px)) rotate(var(--rot, 0deg)) scale(1);
  opacity: 1;
  animation: hb-float 4s ease-in-out infinite;
}
@keyframes hb-float {
  0%, 100% { transform: translateZ(var(--z, 40px)) rotate(var(--rot, 0deg)) scale(1) translateY(0); }
  50%      { transform: translateZ(calc(var(--z, 40px) + 10px)) rotate(var(--rot, 0deg)) scale(1.02) translateY(-4px); }
}
/* Stagger float so they don't all bob in unison */
.h-item-cake.show    { animation-delay: 0s; }
.h-item-flower.show  { animation-delay: .4s; }
.h-item-teddy.show   { animation-delay: .8s; }
.h-item-frame.show   { animation-delay: 1.2s; }
.h-item-perfume.show { animation-delay: 1.6s; }
.h-item-choc.show    { animation-delay: 2.0s; }

/* =================== Always-visible calc panel =================== */
@media (max-width: 1100px) {
  /* Preview slides to a fixed bottom panel on tablet/mobile */
  .hb-preview {
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 70;
    border-radius: 22px;
    padding: 14px 16px 14px;
    box-shadow: 0 -8px 40px -10px rgba(45,27,54,.3), 0 30px 60px rgba(45,27,54,.18);
    max-height: 78vh;
    overflow-y: auto;
    border: 1px solid var(--line);
    /* Collapsed state by default on mobile */
    transition: max-height .45s var(--ease), padding .35s var(--ease);
  }
  .hb-preview.collapsed { max-height: 78px; overflow: hidden; padding: 8px 16px 8px; }
  .hb-preview.collapsed .hb-stage,
  .hb-preview.collapsed .hb-chips,
  .hb-preview.collapsed .hb-cta { display: none; }
  .hb-preview.collapsed .hb-preview-head { margin-bottom: 4px; }

  /* Add a small expand chevron to header */
  .hb-preview-head::after {
    content: ""; position: absolute; right: 0; top: 50%;
    transform: translateY(-50%);
    width: 30px; height: 30px;
    background: var(--cream-2) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C2185B' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='18 15 12 9 6 15'/></svg>") center/16px no-repeat;
    border-radius: 50%;
    transition: transform .35s var(--ease);
  }
  .hb-preview.collapsed .hb-preview-head::after {
    transform: translateY(-50%) rotate(180deg);
  }

  /* Make total bar even more prominent on mobile */
  .hb-preview .hb-total-row { margin-top: 6px; padding: 10px 14px; }
  .hb-preview .hb-total-row .num { font-size: 22px; }

  /* Push catalog content up so it isn't hidden behind the panel */
  .hb-wrap { padding-bottom: 200px; }
}

@media (max-width: 640px) {
  .hb-preview { left: 8px; right: 8px; bottom: 8px; border-radius: 18px; }
  .hb-preview .hb-stage { aspect-ratio: 1.4 / 1; }
  .hb-preview .hb-total-row { padding: 10px 12px; }
  .hb-preview .hb-total-row .num { font-size: 20px; }
  .hb-preview .hb-total-row .count .n { font-size: 18px; }
  .hb-wrap { padding-bottom: 240px; }
}

/* Re-enable position:sticky for desktop (override the earlier responsive rule) */
@media (min-width: 1101px) {
  .hb-preview { position: sticky; top: 100px; }
}

/* ============================================================
   3D TRACK ORDER PAGE
   ============================================================ */
.track3d-hero {
  position: relative; overflow: hidden;
  padding: 70px 0 80px;
  background: radial-gradient(1100px 600px at 80% 20%, #FFE6D5 0%, transparent 60%),
              radial-gradient(900px 500px at 10% 80%, #FFD9E8 0%, transparent 60%),
              linear-gradient(180deg, #FFF9F5 0%, #FFEDE2 100%);
}
.track3d-bg { position:absolute; inset:0; pointer-events:none; z-index:0; }
.track3d-bg .orb { position:absolute; border-radius:50%; filter: blur(60px); opacity:.55; }
.orb-1 { width:340px; height:340px; background:#FFB7CF; top:-80px; left:-60px; }
.orb-2 { width:260px; height:260px; background:#FFE0A6; top:60%; left:35%; }
.orb-3 { width:300px; height:300px; background:#FFC5B0; top:10%; right:-60px; }
.orb-4 { width:200px; height:200px; background:#FFD2A5; bottom:-60px; right:30%; opacity:.4; }
.track3d-grid { position:relative; z-index:2; display:grid; grid-template-columns: 1.05fr 1fr; gap:60px; align-items:center; }
.track3d-copy { opacity: 0; transform: translateY(20px); }
.track3d-title { font-family:'Rubik',sans-serif; font-weight:900; font-size: clamp(2.1rem, 4.4vw, 3.6rem); line-height:1.05; letter-spacing:-.02em; margin: 14px 0 18px; color:#4a1e2e; }
.track3d-sub { font-size:1.05rem; color: var(--muted, #6b5860); max-width: 520px; margin:0 0 28px; }
.track3d-form { display:grid; grid-template-columns: 1fr 1fr; gap:14px; background: rgba(255,255,255,.7); backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%); border:1px solid rgba(255,255,255,.6); border-radius:22px; padding:22px; box-shadow: 0 30px 60px rgba(173,20,87,.12), 0 2px 8px rgba(0,0,0,.04); max-width:560px; }
.track3d-field { display:flex; flex-direction:column; gap:6px; }
.track3d-field label { font-family:'Rubik',sans-serif; font-weight:600; font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:#8a6271; }
.track3d-field input { width:100%; padding:14px 16px; border:1.5px solid rgba(173,20,87,.15); border-radius:12px; background:#fff; font-family:'Lato',sans-serif; font-size:15px; color:#2b121b; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.track3d-field input:focus { outline:none; border-color:#E63E7C; box-shadow: 0 0 0 4px rgba(230,62,124,.15); transform: translateY(-1px); }
.track3d-btn { grid-column: 1 / -1; display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:16px 22px; border:0; border-radius:14px; background: linear-gradient(135deg, #E63E7C 0%, #C2185B 60%, #AD1457 100%); color:#fff; font-family:'Rubik',sans-serif; font-weight:700; font-size:15px; letter-spacing:.02em; cursor:pointer; box-shadow: 0 16px 32px rgba(194,24,91,.32), inset 0 1px 0 rgba(255,255,255,.25); transition: transform .25s ease, box-shadow .25s ease; }
.track3d-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(194,24,91,.42), inset 0 1px 0 rgba(255,255,255,.25); }
.track3d-btn:active { transform: translateY(0); }
.track3d-btn svg { width:18px; height:18px; }
.track3d-chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.chip-mini { display:inline-flex; align-items:center; gap:8px; padding:8px 14px; border-radius:99px; background:#fff; border:1px solid rgba(173,20,87,.12); font-size:13px; color:#6b3a4d; font-weight:600; box-shadow: 0 6px 14px rgba(173,20,87,.06); }
.chip-mini svg { width:14px; height:14px; color:#E63E7C; stroke-linecap:round; stroke-linejoin:round; }

/* 3D stage */
.track3d-stage { position:relative; width:100%; min-height:460px; perspective:1400px; display:flex; align-items:center; justify-content:center; }
.t3d-floor { position:absolute; bottom:30px; left:50%; width:360px; height:80px; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(173,20,87,.25) 0%, transparent 70%); filter: blur(8px); animation: t3d-shadow 4s ease-in-out infinite; }
@keyframes t3d-shadow { 0%,100% { transform: translateX(-50%) scale(1,1); opacity:.8; } 50% { transform: translateX(-50%) scale(.86,.8); opacity:.55; } }
.t3d-scene { position:relative; width:280px; height:280px; transform-style: preserve-3d; transform: rotateX(-18deg) rotateY(-26deg); animation: t3d-float 5s ease-in-out infinite; }
@keyframes t3d-float { 0%,100% { transform: rotateX(-18deg) rotateY(-26deg) translateY(0); } 50% { transform: rotateX(-18deg) rotateY(-22deg) translateY(-18px); } }
.t3d-box, .t3d-lid { position:absolute; inset:0; transform-style: preserve-3d; }
.t3d-face { position:absolute; width:220px; height:220px; left:30px; top:30px; background: linear-gradient(135deg, #E63E7C 0%, #C2185B 70%, #AD1457 100%); box-shadow: inset 0 0 40px rgba(0,0,0,.18); border-radius:6px; }
.t3d-face--front  { transform: translateZ(110px); }
.t3d-face--back   { transform: rotateY(180deg) translateZ(110px); background: linear-gradient(135deg, #AD1457 0%, #880E4F 100%); }
.t3d-face--right  { transform: rotateY(90deg) translateZ(110px); background: linear-gradient(135deg, #D81B60 0%, #AD1457 100%); }
.t3d-face--left   { transform: rotateY(-90deg) translateZ(110px); background: linear-gradient(135deg, #AD1457 0%, #880E4F 100%); }
.t3d-face--bottom { transform: rotateX(-90deg) translateZ(110px); background: linear-gradient(180deg, #880E4F 0%, #5b0a36 100%); }
.t3d-face--top    { transform: rotateX(90deg) translateZ(110px); background: linear-gradient(135deg, #F06292 0%, #E63E7C 70%, #C2185B 100%); }
.t3d-lid { transform: translateY(0); transform-style: preserve-3d; }
.t3d-ribbon { position:absolute; background: linear-gradient(135deg, #F2C744 0%, #E8B530 50%, #BF8E1F 100%); box-shadow: 0 4px 10px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.4); }
.t3d-ribbon--h { width:220px; height:28px; left:30px; top:30px; transform: translateZ(110.5px) translateY(96px); }
.t3d-ribbon--v { width:28px; height:220px; left:30px; top:30px; transform: translateZ(110.5px) translateX(96px); }
.t3d-bow { position:absolute; width:70px; height:60px; left:50%; top:50%; transform: translate(-50%, -50%) translateZ(111px); pointer-events:none; }
.bow-loop { position:absolute; width:32px; height:38px; top:6px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; background: linear-gradient(135deg, #F2C744 0%, #BF8E1F 100%); box-shadow: 0 4px 10px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.4); }
.bow-loop--l { left:0; transform: rotate(-22deg); }
.bow-loop--r { right:0; transform: rotate(22deg); }
.bow-knot { position:absolute; width:18px; height:22px; top:14px; left:50%; transform: translateX(-50%); background: linear-gradient(135deg, #E8B530 0%, #8c6814 100%); border-radius:4px; box-shadow: 0 2px 6px rgba(0,0,0,.25); }
.t3d-shine { position:absolute; inset:30px; transform: translateZ(110.6px); background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.35) 45%, transparent 65%); pointer-events:none; mix-blend-mode: screen; opacity:.8; }
.t3d-confetti { position:absolute; width:12px; height:12px; border-radius:3px; opacity:0; pointer-events:none; left:50%; top:40%; }
.c1{background:#E63E7C;} .c2{background:#E8B530;} .c3{background:#F06292;} .c4{background:#BF8E1F;}
.c5{background:#FFB7CF;} .c6{background:#C2185B; border-radius:50%;} .c7{background:#F2C744;} .c8{background:#AD1457; border-radius:50%;}

/* Result panel */
.track3d-result { padding:60px 0 90px; background: linear-gradient(180deg, #FFEDE2 0%, #FFF9F5 100%); }
.track3d-result-head { display:flex; align-items:flex-start; justify-content:space-between; flex-wrap:wrap; gap:24px; margin-bottom:36px; }
.track3d-result-head h2 { font-family:'Rubik',sans-serif; font-weight:800; font-size: clamp(1.5rem, 2.4vw, 2.1rem); letter-spacing:-.02em; color:#4a1e2e; margin: 10px 0 6px; max-width:600px; }
.track3d-result-head p { color:#7a5868; margin:0; }
.t3d-eta { display:flex; flex-direction:column; gap:4px; padding:16px 22px; border-radius:16px; background:#fff; border:1px solid rgba(173,20,87,.1); box-shadow: 0 12px 30px rgba(173,20,87,.10); min-width:200px; }
.eta-label { font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:#8a6271; font-weight:600; }
.eta-time { font-family:'Rubik',sans-serif; font-size:1.15rem; color:#C2185B; }
.t3d-route { position:relative; height:200px; margin:10px 0 50px; background:#fff; border-radius:22px; border:1px solid rgba(173,20,87,.08); box-shadow: 0 16px 36px rgba(173,20,87,.08); padding:20px 30px; overflow:hidden; }
.t3d-route-svg { width:100%; height:100%; display:block; }
#route-progress { stroke-dasharray:1400; stroke-dashoffset:1400; }
.t3d-pin { position:absolute; padding:6px 12px; border-radius:99px; background: linear-gradient(135deg, #E63E7C 0%, #C2185B 100%); color:#fff; font-family:'Rubik',sans-serif; font-size:11px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; box-shadow: 0 8px 20px rgba(173,20,87,.32); transform: translate(-50%, -100%); opacity:0; }
.t3d-pin::after { content:''; position:absolute; left:50%; top:100%; width:10px; height:10px; transform: translateX(-50%) rotate(45deg); background:inherit; margin-top:-4px; }
.t3d-pin--start { left:4%;  top:75%; }
.t3d-pin--mid   { left:50%; top:18%; }
.t3d-pin--end   { left:95%; top:55%; background: linear-gradient(135deg, #E8B530 0%, #BF8E1F 100%); }
.t3d-scooter { position:absolute; width:60px; height:60px; transform: translate(-50%, -50%); filter: drop-shadow(0 6px 12px rgba(173,20,87,.25)); opacity:0; }
.t3d-steps { list-style:none; padding:0; margin:0; display:grid; grid-template-columns: repeat(5, 1fr); gap:16px; }
.t3d-step { position:relative; background:#fff; border-radius:18px; padding:22px 18px; border:1px solid rgba(173,20,87,.08); box-shadow: 0 10px 24px rgba(173,20,87,.06); opacity:0; transform: translateY(20px); transition: transform .3s ease, box-shadow .3s ease; }
.t3d-step:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(173,20,87,.10); }
.t3d-step-dot { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:50%; background:#FFE0E9; color:#C2185B; font-family:'Rubik',sans-serif; font-weight:800; margin-bottom:10px; }
.t3d-step-dot svg { width:18px; height:18px; }
.t3d-step.done .t3d-step-dot { background: linear-gradient(135deg, #E63E7C 0%, #C2185B 100%); color:#fff; box-shadow: 0 6px 14px rgba(194,24,91,.32); }
.t3d-step.active .t3d-step-dot { background: linear-gradient(135deg, #E8B530 0%, #BF8E1F 100%); color:#fff; box-shadow: 0 6px 14px rgba(191,142,31,.45); }
.t3d-step-pulse { position:relative; }
.t3d-step-pulse::after { content:''; position:absolute; inset:-4px; border-radius:50%; border:3px solid rgba(232,181,48,.5); animation: t3d-pulse 1.6s ease-out infinite; }
@keyframes t3d-pulse { 0% { transform: scale(.9); opacity:.9; } 100% { transform: scale(1.6); opacity:0; } }
.t3d-step-body { display:flex; flex-direction:column; gap:2px; }
.t3d-step-body strong { font-family:'Rubik',sans-serif; font-size:14px; color:#2b121b; letter-spacing:-.01em; }
.t3d-step-body em { font-style:normal; font-size:12px; color:#8a6271; }
.t3d-result-cta { display:flex; flex-wrap:wrap; gap:12px; margin-top:36px; justify-content:center; }
.t3d-result-cta .btn-ghost { background:#fff; color:#C2185B; border:1.5px solid rgba(173,20,87,.2); padding:12px 22px; border-radius:12px; font-family:'Rubik',sans-serif; font-weight:700; text-decoration:none; transition: all .25s ease; }
.t3d-result-cta .btn-ghost:hover { background:#FFE0E9; transform: translateY(-2px); }

@media (max-width: 960px) {
  .track3d-grid { grid-template-columns: 1fr; gap:30px; }
  .track3d-stage { min-height:380px; order:-1; }
  .t3d-scene { width:220px; height:220px; }
  .t3d-face { width:180px; height:180px; left:20px; top:20px; }
  .t3d-face--front  { transform: translateZ(90px); }
  .t3d-face--back   { transform: rotateY(180deg) translateZ(90px); }
  .t3d-face--right  { transform: rotateY(90deg) translateZ(90px); }
  .t3d-face--left   { transform: rotateY(-90deg) translateZ(90px); }
  .t3d-face--bottom { transform: rotateX(-90deg) translateZ(90px); }
  .t3d-face--top    { transform: rotateX(90deg) translateZ(90px); }
  .t3d-ribbon--h { width:180px; left:20px; top:20px; transform: translateZ(90.5px) translateY(76px); }
  .t3d-ribbon--v { height:180px; left:20px; top:20px; transform: translateZ(90.5px) translateX(76px); }
  .t3d-steps { grid-template-columns: 1fr 1fr; }
  .t3d-route { height:160px; }
}
@media (max-width: 560px) {
  .track3d-form { grid-template-columns: 1fr; padding:18px; }
  .t3d-steps { grid-template-columns: 1fr; }
  .t3d-eta { width:100%; }
  .track3d-result-head { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .t3d-scene, .t3d-floor, .t3d-step-pulse::after { animation:none; }
}
dius:50%; border:3px solid rgba(232,181,48,.5); animation: t3d-pulse 1.6s ease-out infinite; }
@keyframes t3d-pulse { 0% { transform: scale(.9); opacity:.9; } 100% { transform: scale(1.6); opacity:0; } }
.t3d-step-body { display:flex; flex-direction:column; gap:2px; }
.t3d-step-body strong { font-family:'Rubik',sans-serif; font-size:14px; color:#2b121b; letter-spacing:-.01em; }
.t3d-step-body em { font-style:normal; font-size:12px; color:#8a6271; }
.t3d-result-cta { display:flex; flex-wrap:wrap; gap:12px; margin-top:36px; justify-content:center; }
.t3d-result-cta .btn-ghost { background:#fff; color:#C2185B; border:1.5px solid rgba(173,20,87,.2); padding:12px 22px; border-radius:12px; font-family:'Rubik',sans-serif; font-weight:700; text-decoration:none; transition: all .25s ease; }
.t3d-result-cta .btn-ghost:hover { background:#FFE0E9; transform: translateY(-2px); }
@media (max-width: 960px) {
  .track3d-grid { grid-template-columns: 1fr; gap:30px; }
  .track3d-stage { min-height:380px; order:-1; }
  .t3d-scene { width:220px; height:220px; }
  .t3d-face { width:180px; height:180px; left:20px; top:20px; }
  .t3d-face--front  { transform: translateZ(90px); }
  .t3d-face--back   { transform: rotateY(180deg) translateZ(90px); }
  .t3d-face--right  { transform: rotateY(90deg) translateZ(90px); }
  .t3d-face--left   { transform: rotateY(-90deg) translateZ(90px); }
  .t3d-face--bottom { transform: rotateX(-90deg) translateZ(90px); }
  .t3d-face--top    { transform: rotateX(90deg) translateZ(90px); }
  .t3d-ribbon--h { width:180px; left:20px; top:20px; transform: translateZ(90.5px) translateY(76px); }
  .t3d-ribbon--v { height:180px; left:20px; top:20px; transform: translateZ(90.5px) translateX(76px); }
  .t3d-steps { grid-template-columns: 1fr 1fr; }
  .t3d-route { height:160px; }
}
@media (max-width: 560px) {
  .track3d-form { grid-template-columns: 1fr; padding:18px; }
  .t3d-steps { grid-template-columns: 1fr; }
  .t3d-eta { width:100%; }
  .track3d-result-head { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .t3d-scene, .t3d-floor, .t3d-step-pulse::after { animation:none; }
}

/* ===== Track Order — WhatsApp help card ===== */
.track3d-support {
  background: linear-gradient(180deg, #FFF9F5 0%, #FFEDE2 100%);
  padding: 20px 0 50px;
}
.t3d-help-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
  border: 1px solid rgba(173,20,87,.10);
  border-radius: 22px;
  padding: 26px 30px;
  box-shadow: 0 20px 44px rgba(173,20,87,.08), 0 2px 8px rgba(0,0,0,.03);
  position: relative;
  overflow: hidden;
}
.t3d-help-card::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(420px 220px at 100% 50%, rgba(37,211,102,.10) 0%, transparent 70%);
  pointer-events:none;
}
.t3d-help-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37,211,102,.35);
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.t3d-help-icon svg { width: 30px; height: 30px; }
.t3d-help-text { position: relative; z-index: 1; }
.t3d-help-text h3 {
  font-family: 'Rubik', sans-serif; font-weight: 800;
  font-size: 1.25rem; letter-spacing: -.01em;
  color: #4a1e2e; margin: 0 0 6px;
}
.t3d-help-text p {
  color: #6b3a4d; margin: 0;
  font-size: 14.5px; line-height: 1.55;
}
.t3d-help-actions {
  display: flex; align-items: center; gap: 12px;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}
.t3d-wa-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-family: 'Rubik', sans-serif; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(37,211,102,.32), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.t3d-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(37,211,102,.42), inset 0 1px 0 rgba(255,255,255,.25); }
.t3d-wa-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.t3d-wa-btn span { font-size: 13px; opacity: .92; }
.t3d-wa-btn strong { font-size: 14px; letter-spacing: .02em; }
.t3d-wa-btn span, .t3d-wa-btn strong { display: block; line-height: 1.15; }
.t3d-call-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid rgba(173,20,87,.18);
  color: #C2185B;
  font-family: 'Rubik', sans-serif; font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
  white-space: nowrap;
}
.t3d-call-btn:hover { background: #FFE0E9; transform: translateY(-2px); }
.t3d-call-btn svg { width: 18px; height: 18px; }

/* Result CTA — single clean link */
.t3d-result-cta { display: flex; justify-content: center; margin-top: 32px; }
.t3d-shop-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  color: #C2185B;
  font-family: 'Rubik', sans-serif; font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 99px;
  border: 1.5px solid rgba(173,20,87,.2);
  background: #fff;
  transition: all .25s ease;
}
.t3d-shop-link:hover { background: #FFE0E9; transform: translateX(4px); }
.t3d-shop-link svg { width: 16px; height: 16px; transition: transform .25s ease; }
.t3d-shop-link:hover svg { transform: translateX(3px); }

@media (max-width: 760px) {
  .t3d-help-card { grid-template-columns: 1fr; text-align: center; padding: 22px; }
  .t3d-help-icon { margin: 0 auto; }
  .t3d-help-actions { justify-content: center; }
}

/* =====================================================================
   UNIVERSAL RESPONSIVE TOP-UP — covers desktop, tablet, mobile
   Breakpoints: 1280, 1080, 900, 720, 600, 480, 360
   ===================================================================== */

/* Universal box-sizing + fluid images/videos */
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe, svg { max-width: 100%; height: auto; }
img[width][height] { height: auto; }

/* Prevent horizontal page scroll */
html, body { overflow-x: hidden; }

/* Fluid container padding */
.container { padding-left: clamp(16px, 4vw, 32px); padding-right: clamp(16px, 4vw, 32px); }

/* Smooth tap interactions */
a, button, input, select, textarea { -webkit-tap-highlight-color: rgba(0,0,0,0); }

/* ----- Tablet / small desktop : <= 1080px ----- */
@media (max-width: 1080px) {
  .container { max-width: 100%; }
  h1 { font-size: clamp(1.8rem, 4.8vw, 2.6rem); line-height: 1.1; }
  h2 { font-size: clamp(1.4rem, 3.8vw, 2.1rem); line-height: 1.15; }
  h3 { font-size: clamp(1.1rem, 2.8vw, 1.4rem); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

/* ----- Tablet : <= 900px ----- */
@media (max-width: 900px) {
  /* Header / mobile nav */
  .nav-toggle { display: flex !important; }
  .main-nav {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 86%; max-width: 360px;
    background: #fff;
    box-shadow: -20px 0 60px rgba(0,0,0,.18);
    flex-direction: column; padding: 80px 22px 32px;
    transition: right .35s cubic-bezier(.2,.8,.2,1);
    overflow-y: auto;
    z-index: 80;
  }
  .main-nav.is-open { right: 0; }
  .nav-list { flex-direction: column; gap: 4px; align-items: stretch; }
  .nav-list > li { width: 100%; }
  .nav-item { padding: 14px 12px; border-radius: 10px; display: block; }
  .nav-item:hover { background: #FFE0E9; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 70; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }

  /* Mega menu 2-col handled in the 1080px block above */

  /* Topbar tightens */
  .topbar { font-size: 12px; }
  .topbar-inner { gap: 8px; flex-wrap: wrap; justify-content: center; text-align: center; }

  /* Grids stack */
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .editorial-grid { grid-template-columns: 1fr; gap: 24px; }
  .cart-layout { grid-template-columns: 1fr; gap: 24px; }
  .cat-layout { grid-template-columns: 1fr; gap: 22px; }
  .cat-sidebar { position: fixed; top: 0; left: -100%; bottom: 0; width: 88%; max-width: 360px; background: #fff; padding: 24px; box-shadow: 20px 0 60px rgba(0,0,0,.2); transition: left .35s ease; overflow-y: auto; z-index: 90; }
  .cat-sidebar.is-open { left: 0; }
  .cat-filter-toggle { display: inline-flex !important; }

  /* Product grids */
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }

  /* Tap targets */
  .btn, button.btn, .nav-item, .ha, .topbar-actions a { min-height: 44px; }
}

/* ----- Phablet : <= 720px ----- */
@media (max-width: 720px) {
  .container { padding-left: 18px; padding-right: 18px; }

  /* Site header tightens */
  .site-header .header-inner { gap: 8px; }
  .logo img { width: 34px !important; height: 34px !important; }
  .logo-text strong { font-size: 18px; }
  .logo-text em { font-size: 10px; }

  /* Hero / page-banner */
  .page-banner { padding: 36px 0 !important; text-align: center; }
  .page-banner h1 { font-size: clamp(1.6rem, 6vw, 2.1rem); }
  .page-banner p { font-size: 14px; }

  /* Section heads */
  .section-head h2 { font-size: clamp(1.4rem, 5.4vw, 1.9rem); }
  .section-head p { font-size: 14px; }

  /* Buttons full-width when stand-alone */
  .btn-primary, .btn-ghost { width: auto; }

  /* Forms */
  input, select, textarea {
    font-size: 16px !important; /* prevents iOS zoom-on-focus */
    min-height: 44px;
  }
  .form-grid { grid-template-columns: 1fr !important; }

  /* Footer */
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 12px; }
  .foot-newsletter { flex-direction: column; gap: 8px; }
  .foot-newsletter input, .foot-newsletter button { width: 100%; }

  /* Track Order 3D scene tighter */
  .track3d-hero { padding: 40px 0 50px; }
  .track3d-grid { gap: 22px; }
  .t3d-scene { width: 200px; height: 200px; }
  .track3d-stage { min-height: 320px; }

  /* Result steps stack */
  .t3d-steps { grid-template-columns: 1fr !important; }
  .t3d-route { height: 140px; padding: 14px 16px; }
  .t3d-pin { font-size: 10px; padding: 4px 10px; }
  .track3d-result-head { flex-direction: column; }
  .t3d-eta { width: 100%; }

  /* WhatsApp help card stacks */
  .t3d-help-card { grid-template-columns: 1fr !important; text-align: center; padding: 22px; gap: 16px; }
  .t3d-help-icon { margin: 0 auto; }
  .t3d-help-actions { justify-content: center; flex-direction: column; }
  .t3d-wa-btn, .t3d-call-btn { width: 100%; justify-content: center; }

  /* Bento / fresh drops carousel cards visible 2-up via hcarousel */
  .product-card .product-title { font-size: 15px; }
  .product-card .price { font-size: 16px; }

  /* Hampers shop-by-budget tiles */
  .hf-tile-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hf-tile { padding: 16px; }

  /* Video banner shorter */

  /* Reduce huge headings */
  .ee-hero h1, .editorial h2, .fresh-drops h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ----- Mobile : <= 600px ----- */
@media (max-width: 600px) {
  .container { padding-left: 14px; padding-right: 14px; }

  /* Hide secondary header actions to give space */
  .topbar .topbar-actions span:not(:last-child) { display: none; }
  .topbar-actions a span { display: none; } /* keep only icons */
  .header-actions { gap: 6px; }

  /* Categories rail tweaks */
  .occasions-rail { padding: 50px 0; }
  .pill { width: 96px; }
  .pill-img { width: 88px; height: 88px; }
  .pill-name { font-size: 12px; }

  /* Mega menu 2-col — keep em hidden, tighten text */
  .mega-cat strong { font-size: 12px; }
  .mega-cat em { display: none !important; }

  /* Cards / hovers — disable hover lift on touch */
  @media (hover: none) {
    .product-card:hover, .cat-tile:hover, .hf-tile:hover { transform: none; }
  }

  /* Form-control labels smaller */
  .form-control label { font-size: 12px; }

  /* Reviews / testimonials */
  .reviews-grid, .ee-reviews { grid-template-columns: 1fr !important; }

  /* Bento section heading */
  .bento-section, .fresh-drops, .editorial { padding: 40px 0; }

  /* Crumbs */
  .crumbs { font-size: 12px; padding: 8px 0; }

  /* Cart row */
  .cart-row { grid-template-columns: 60px 1fr; gap: 10px; }
  .cart-row .qty, .cart-row .ci-price { grid-column: 2; }

  /* Track 3D box even smaller */
  .t3d-scene { width: 170px; height: 170px; }
  .t3d-face { width: 140px; height: 140px; left: 15px; top: 15px; }
  .t3d-face--front  { transform: translateZ(70px); }
  .t3d-face--back   { transform: rotateY(180deg) translateZ(70px); }
  .t3d-face--right  { transform: rotateY(90deg) translateZ(70px); }
  .t3d-face--left   { transform: rotateY(-90deg) translateZ(70px); }
  .t3d-face--bottom { transform: rotateX(-90deg) translateZ(70px); }
  .t3d-face--top    { transform: rotateX(90deg) translateZ(70px); }
  .t3d-ribbon--h { width: 140px; left: 15px; top: 15px; transform: translateZ(70.5px) translateY(56px); }
  .t3d-ribbon--v { height: 140px; left: 15px; top: 15px; transform: translateZ(70.5px) translateX(56px); }
  .track3d-stage { min-height: 260px; }
  .track3d-title { font-size: clamp(1.6rem, 7vw, 2rem); }
}

/* ----- Small mobile : <= 480px ----- */
@media (max-width: 480px) {
  /* Tighten paddings */
  .section, section { padding: 32px 0; }
  .features { padding: 20px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 14px; text-align: center; }

  /* Product grid stays 2-col but tighter */
  .product-grid { gap: 10px !important; }
  .product-card { border-radius: 14px; }
  .product-card .badge { font-size: 10px; padding: 4px 8px; }

  /* Buttons */
  .btn { padding: 12px 18px; font-size: 14px; }

  /* Hampers budget tiles single col? Keep 2-col for compactness */
  .hf-tile-price { font-size: 18px; }
  .hf-tile-tag { font-size: 10px; }

  /* Track WhatsApp button shows number on its own line */
  .t3d-wa-btn { padding: 12px 18px; }
  .t3d-wa-btn strong { font-size: 13px; }

  /* Topbar message wraps */
  .topbar { padding: 6px 0; }
  .topbar-inner > span:first-child { font-size: 11px; }

  /* Hero video banner */

  /* Hide some confetti / floor decoration on smallest screens */
  .track3d-bg .orb-3, .track3d-bg .orb-4 { display: none; }
}

/* ----- Tiny mobile : <= 360px ----- */
@media (max-width: 360px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .product-grid { grid-template-columns: 1fr !important; }
  .hf-tile-grid { grid-template-columns: 1fr !important; }
  .logo-text strong { font-size: 16px; }
  .logo-text em { font-size: 9px; }
  .nav-toggle span { width: 22px; }
}

/* ----- Wide desktop : >= 1440px ----- */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
}

/* ----- Ultra wide : >= 1920px ----- */
@media (min-width: 1920px) {
  .container { max-width: 1480px; }
  html { font-size: 17px; }
}

/* ----- Landscape phones : tighten vertical paddings ----- */
@media (max-height: 500px) and (orientation: landscape) {
  .track3d-hero { padding: 24px 0 30px; }
  .main-nav { padding-top: 60px; }
}

/* ----- Align with existing JS class names for mobile nav ----- */
@media (max-width: 900px) {
  .main-nav.open { right: 0; }
  .nav-scrim.show { opacity: 1; pointer-events: auto; }
  .has-mega.open .mega { padding: 10px 4px 14px; }
}
eatures-grid { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .product-grid { gap: 10px !important; }
  .product-card { border-radius: 14px; }
  .product-card .badge { font-size: 10px; padding: 4px 8px; }
  .btn { padding: 12px 18px; font-size: 14px; }
  .hf-tile-price { font-size: 18px; }
  .hf-tile-tag { font-size: 10px; }
  .t3d-wa-btn { padding: 12px 18px; }
  .t3d-wa-btn strong { font-size: 13px; }
  .topbar { padding: 6px 0; }
  .topbar-inner > span:first-child { font-size: 11px; }
  .track3d-bg .orb-3, .track3d-bg .orb-4 { display: none; }
}

@media (max-width: 360px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .product-grid { grid-template-columns: 1fr !important; }
  .hf-tile-grid { grid-template-columns: 1fr !important; }
  .logo-text strong { font-size: 16px; }
  .logo-text em { font-size: 9px; }
}

@media (min-width: 1440px) { .container { max-width: 1320px; } }
@media (min-width: 1920px) { .container { max-width: 1480px; } html { font-size: 17px; } }

@media (max-height: 500px) and (orientation: landscape) {
  .track3d-hero { padding: 24px 0 30px; }
  .main-nav { padding-top: 60px; }
}

@media (max-width: 900px) {
  .main-nav.open { right: 0; }
  .nav-scrim.show { opacity: 1; pointer-events: auto; }
  .has-mega.open .mega { padding: 10px 4px 14px; }
}
*/
@media (min-width: 1920px) {
  .container { max-width: 1480px; }
  html { font-size: 17px; }
}

/* ----- Landscape phones ----- */
@media (max-height: 500px) and (orientation: landscape) {
  .track3d-hero { padding: 24px 0 30px; }
  .main-nav { padding-top: 60px; }
}

/* ----- Align with existing JS class names ----- */
@media (max-width: 900px) {
  .main-nav.open { right: 0; }
  .nav-scrim.show { opacity: 1; pointer-events: auto; }
  .has-mega.open .mega { padding: 10px 4px 14px; }
}
: 1200px; padding: 12px 8px 12px 14px; }
}

/* =====================================================================
   PRODUCT PAGE — Buy Now / Add to Cart / Perfect-for chips / Related carousel
   ===================================================================== */

/* Action bar: Buy Now is the dominant primary, Add to Cart is secondary */
.pd-actions { gap: 14px; align-items: stretch; }
.pd-actions .qty { flex: 0 0 auto; }
.btn.btn-buy-now {
  font-size: 16px; padding: 14px 28px;
  letter-spacing: .02em;
  background: linear-gradient(135deg, #E63E7C 0%, #C2185B 60%, #AD1457 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(194,24,91,.35), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn.btn-buy-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(194,24,91,.45), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn.btn-add-cart {
  background: #fff;
  color: #C2185B;
  border: 1.5px solid rgba(173,20,87,.25);
  font-weight: 700;
  padding: 14px 22px;
  box-shadow: 0 4px 12px rgba(173,20,87,.06);
  transition: all .25s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn.btn-add-cart svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn.btn-add-cart:hover {
  background: #FFE0E9;
  border-color: #E63E7C;
  color: #AD1457;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(173,20,87,.12);
}

/* "Perfect for:" chip row — proper flex alignment instead of stray margins */
.chip-row {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.chip-row .chip {
  margin: 0 !important; /* override inline margin styles */
}

/* Related products carousel — same sizing as home page carousels */
.related-carousel { padding-top: 56px; }
.related-carousel .hcarousel-track > * { flex: 0 0 calc((100% - 18px * 3) / 4); scroll-snap-align: start; }
@media (max-width: 1080px) {
  .related-carousel .hcarousel-track > * { flex: 0 0 calc((100% - 18px * 2) / 3); }
}
@media (max-width: 720px) {
  .related-carousel .hcarousel-track > * { flex: 0 0 calc((100% - 14px) / 2); }
  .related-carousel .hcarousel-track { gap: 14px; }
}
@media (max-width: 480px) {
  .related-carousel .hcarousel-track > * { flex: 0 0 78%; }
}

/* Mobile: stack actions vertically, Buy Now full-width */
@media (max-width: 600px) {
  .pd-actions { flex-direction: column; align-items: stretch; }
  .pd-actions .qty { align-self: flex-start; }
  .btn.btn-buy-now, .btn.btn-add-cart { width: 100%; justify-content: center; }
}

/* Remove the left/right white fade overlay on product page related carousel */
.related-carousel::before,
.related-carousel::after { display: none; }

/* =====================================================================
   FIX: Make header reliably sticky on every page
   Remove overflow-x trap on <html> (it breaks position:sticky), and
   force the site header to be sticky with full cross-browser support.
   ===================================================================== */
html { overflow-x: clip; }   /* clip is sticky-safe; falls back gracefully */
body { overflow-x: hidden; } /* keep body clipping if needed */

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 90;
}

/* If any ancestor has accidental transform/contain that breaks sticky,
   make sure typical wrappers don't trap it */
body, .nav-scrim { transform: none; }

/* =====================================================================
   STICKY HEADER — strong guarantee on every page
   ===================================================================== */
.site-header {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 200 !important;
  width: 100%;
  background: rgba(255, 249, 245, 0.94);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  transition: box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
/* When scrolled, add subtle elevation/shadow */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(173, 20, 87, 0.10);
  border-bottom-color: rgba(173, 20, 87, 0.08);
}
/* Prevent ancestor transforms/overflows from breaking sticky */
html, body, .nav-scrim { transform: none !important; }
body { overflow: visible; overflow-x: clip; }
/* Anchor scroll padding so in-page links don't hide under the sticky header */
html { scroll-padding-top: 90px; }

/* =====================================================================
   CHECKOUT — Order success modal
   ===================================================================== */
.order-success-overlay {
  position: fixed; inset: 0;
  background: rgba(45, 27, 54, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: osFade 0.3s ease;
}
@keyframes osFade { from { opacity: 0; } to { opacity: 1; } }
.order-success-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: osPop 0.45s cubic-bezier(.2, .9, .3, 1.2);
}
@keyframes osPop {
  from { transform: scale(0.85) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.os-icon {
  width: 76px; height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
}
.os-icon svg { width: 38px; height: 38px; }
.order-success-card h2 {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #4a1e2e;
  margin: 0 0 10px;
}
.os-sub {
  color: #6b3a4d;
  margin: 0 0 18px;
  line-height: 1.55;
  font-size: 14.5px;
}
.os-order-id {
  background: #FFF5F0;
  border: 1px solid rgba(173, 20, 87, 0.12);
  border-radius: 12px;
  padding: 12px 16px;
  margin: 0 0 22px;
  font-size: 13px;
  color: #8a6271;
}
.os-order-id strong {
  color: #C2185B;
  font-family: 'Rubik', sans-serif;
  letter-spacing: 0.02em;
  margin-left: 6px;
}
.os-actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 18px;
}
.os-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-size: 15px;
}
.os-note {
  font-size: 12.5px;
  color: #8a6271;
  margin: 0 0 16px;
  line-height: 1.5;
}
.os-back {
  display: inline-block;
  color: #C2185B;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1.5px solid #C2185B;
  padding-bottom: 2px;
}
.os-back:hover { color: #AD1457; border-color: #AD1457; }
@media (max-width: 560px) {
  .order-success-card { padding: 30px 22px 24px; }
  .order-success-card h2 { font-size: 1.3rem; }
}

/* =====================================================================
   CUSTOM HAMPER BUILDER — Responsive cleanup
   Fix overlapping panels, uneven cards, sticky behavior on every size
   ===================================================================== */
.hb-wrap { padding-left: 0; padding-right: 0; }
.hb-wrap > .container, .hb-wrap.container { padding-left: 16px; padding-right: 16px; }

/* Desktop ≥1101px: side-by-side, preview sticky to viewport */
@media (min-width: 1101px) {
  .hb-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
  }
  .hb-preview {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
}

/* Tablet ≤1100px: single column, preview moves to top as static card */
@media (max-width: 1100px) {
  .hb-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .hb-preview {
    position: static !important;
    left: auto; right: auto; bottom: auto;
    width: 100%;
    max-height: none;
    max-width: 100%;
    border-radius: 20px;
    padding: 22px 22px 24px;
    box-shadow: var(--shadow-sm);
    order: -1; /* Move preview ABOVE the catalog on tablet */
  }
  .hb-preview.collapsed { max-height: none !important; overflow: visible; padding: 22px 22px 24px; }
  .hb-preview.collapsed .hb-stage,
  .hb-preview.collapsed .hb-chips,
  .hb-preview.collapsed .hb-cta { display: block; }
  .hb-preview-head::after { display: none !important; }
  .hb-wrap { padding-bottom: 60px !important; }
}

/* Phablet ≤760px: tighter cards, smaller heading icons */
@media (max-width: 760px) {
  .hb-wrap { padding: 20px 0 50px; }
  .hb-section { padding: 18px 14px 20px; border-radius: 18px; }
  .hb-sec-head { flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
  .hb-sec-title { font-size: 15px; gap: 10px; }
  .hb-sec-ic { width: 34px; height: 34px; border-radius: 10px; }
  .hb-sec-ic svg { width: 18px; height: 18px; }
  .hb-sec-sub { margin-left: 44px !important; font-size: 11.5px; }
  .hb-required { font-size: 9.5px; padding: 2px 7px; }
  .hb-cards { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
  .hb-card { padding: 10px 8px; gap: 6px; }
  .hb-card-img { width: 70px; height: 70px; }
  .hb-card-name { font-size: 12.5px; text-align: center; line-height: 1.3; }
  .hb-card-price { font-size: 12px; }
  /* Preview card adjustments */
  .hb-preview { padding: 18px 16px 18px; }
  .hb-preview-head h3 { font-size: 18px; }
  .hb-stage-3d, .hb-stage { aspect-ratio: 1.35 / 1; }
  .hb-total-row { padding: 12px 14px; flex-wrap: wrap; gap: 10px; }
  .hb-total-row .num { font-size: 22px; }
  .hb-total-row .count .n { font-size: 18px; }
  .hb-cta { width: 100%; justify-content: center; padding: 14px 18px; font-size: 14px; }
}

/* Mobile ≤480px: 2-col cards, condensed everything */
@media (max-width: 480px) {
  .hb-wrap { padding: 14px 0 40px; }
  .hb-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hb-section { padding: 16px 12px 18px; border-radius: 16px; }
  .hb-card { border-radius: 14px; padding: 10px 6px; }
  .hb-card-img { width: 64px; height: 64px; border-radius: 12px; }
  .hb-card-name { font-size: 11.5px; }
  .hb-card-price { font-size: 11.5px; }
  .hb-section::before { display: none; }
  .hb-preview { padding: 16px 14px; border-radius: 16px; }
  .hb-preview-head h3 { font-size: 16px; }
  .hb-stage-3d, .hb-stage { aspect-ratio: 1.5 / 1; }
  .hb-total-row .num { font-size: 20px; }
  .hb-total-row .lbl { font-size: 12px; }
  .hb-chips { gap: 6px !important; }
  .hb-chip { font-size: 11.5px !important; padding: 5px 10px !important; }
}

/* Tiny mobile ≤360px: single-column cards */
@media (max-width: 360px) {
  .hb-cards { grid-template-columns: 1fr; }
  .hb-card { flex-direction: row; padding: 10px 12px; align-items: center; gap: 12px; text-align: left; }
  .hb-card-img { width: 56px; height: 56px; flex-shrink: 0; }
  .hb-card-name, .hb-card-price { text-align: left; }
}

/* Make sure inline page-banner doesn't add side gutters on tiny screens */
@media (max-width: 720px) {
  #hamper-builder .page-banner { padding: 28px 0 !important; }
}

/* ===== Success modal: Mandatory WhatsApp block ===== */
.os-mandatory {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 18px;
  padding: 20px 18px;
  margin: 4px 0 16px;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
  text-align: center;
}
.os-mandatory-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.os-mandatory-note {
  color: rgba(255, 255, 255, 0.95);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 0 14px;
}
.btn-wa-mandatory {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%;
  background: #fff;
  color: #128C7E;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* Pulsing call-to-action animation */
  animation: waPulse 1.6s ease-in-out infinite;
}
.btn-wa-mandatory:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12), 0 0 0 0 rgba(255, 255, 255, 0.5); }
  50%      { box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12), 0 0 0 10px rgba(255, 255, 255, 0); }
}
.os-wa-number {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}
.os-actions--secondary { margin-bottom: 12px; }
.os-actions--secondary .btn-ghost { font-size: 13px; padding: 10px 18px; }

/* =====================================================================
   HOMEPAGE FEATURES — keep all 4 in one row on mobile to reduce scroll
   (web/desktop view stays as it is)
   ===================================================================== */
@media (max-width: 720px) {
  .features-v2 { padding: 14px 0; }
  .features-v2 .features-grid,
  .features .features-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
    align-items: stretch;
  }
  .features-v2 .feature,
  .features .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 4px 2px;
  }
  .features-v2 .feature .f-ic,
  .features .feature .f-ic {
    width: 38px; height: 38px; border-radius: 12px;
  }
  .features-v2 .feature .f-ic svg,
  .features .feature .f-ic svg { width: 18px; height: 18px; }
  .features-v2 .feature strong,
  .features .feature strong {
    font-size: 11.5px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  /* Hide the secondary description on mobile to keep the row compact */
  .features-v2 .feature em,
  .features .feature em { display: none; }
}

@media (max-width: 380px) {
  .features-v2 .feature strong,
  .features .feature strong { font-size: 10.5px; }
  .features-v2 .feature .f-ic,
  .features .feature .f-ic { width: 34px; height: 34px; border-radius: 10px; }
  .features-v2 .feature .f-ic svg,
  .features .feature .f-ic svg { width: 16px; height: 16px; }
}

/* =====================================================================
   HOMEPAGE — "Every gift, beautifully curated" tiles on MOBILE
   Switch the cat-carousel from horizontal scroll to a 2-col tile grid
   so the user can see everything at once without swiping.
   ===================================================================== */
@media (max-width: 760px) {
  /* Disable the horizontal scroller behavior */
  .bento-section .cat-carousel { padding-top: 0; }
  .bento-section .cat-carousel .hcarousel-track {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    overflow: visible !important;
    scroll-snap-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  /* Each tile takes its grid cell instead of a fixed flex-basis */
  .bento-section .cat-carousel .hcarousel-track > * {
    flex: 0 0 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    scroll-snap-align: none !important;
  }
  /* Hide the prev/next arrows on mobile — not needed for grid */
  .bento-section .cat-carousel .hcarousel-prev,
  .bento-section .cat-carousel .hcarousel-next { display: none !important; }
  /* Disable autoplay shadows / edge fades just in case */
  .bento-section .cat-carousel::before,
  .bento-section .cat-carousel::after { display: none !important; }

  /* Compact tile styling so 2-per-row fits nicely on phone */
  .bento-section .cat-tile { border-radius: 14px; }
  .bento-section .cat-tile-img { aspect-ratio: 1 / 1; }
  .bento-section .cat-tile-body { padding: 12px 12px 14px; gap: 6px; }
  .bento-section .cat-tile h3 { font-size: 0.95rem; }
  .bento-section .cat-tile p { font-size: 12px; line-height: 1.4; }
  .bento-section .cat-tile-tag { font-size: 10px; padding: 3px 8px; }
  .bento-section .cat-tile-cta { font-size: 12px; }
}

/* Single column on very small phones */
@media (max-width: 380px) {
  .bento-section .cat-carousel .hcarousel-track { grid-template-columns: 1fr; }
}

/* =====================================================================
   Carousel prev/next buttons — active/hover color set to brand pink #E63E7C
   ===================================================================== */
.hcarousel-prev:hover,
.hcarousel-next:hover,
.hcarousel-prev:focus-visible,
.hcarousel-next:focus-visible,
.hcarousel-prev:active,
.hcarousel-next:active {
  background: #E63E7C !important;
  color: #fff !important;
  border-color: #E63E7C !important;
  box-shadow: 0 14px 32px rgba(230, 62, 124, 0.45) !important;
}

/* =====================================================================
   FOOTER — Ultra-compact MOBILE version
   Goal: footer fits in ~4 short rows instead of pages of scrolling.
   ===================================================================== */
@media (max-width: 760px) {
  .site-footer {
    padding: 22px 0 14px !important;
    margin-top: 30px !important;
  }
  /* Collapse the 4-column grid into a single tight stack */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
    text-align: center;
  }
  /* Brand: small inline logo + 1-line tagline (hide the long paragraph) */
  .site-footer .foot-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 0;
  }
  .site-footer .foot-brand p {
    display: none !important;
  }
  .site-footer .foot-brand .logo {
    justify-content: center;
  }
  .site-footer .foot-brand .logo img {
    width: 32px !important; height: 32px !important;
  }
  /* Hide the long Categories / Occasions / Help columns on mobile —
     all main links are reachable through the sticky header/mega menu */
  .footer-grid > div:not(.foot-brand) {
    display: none !important;
  }
  /* Newsletter — compact single line */
  .site-footer .foot-newsletter {
    margin: 4px auto 0;
    max-width: 320px;
    gap: 6px;
  }
  .site-footer .foot-newsletter input,
  .site-footer .foot-newsletter button {
    padding: 8px 12px;
    font-size: 12.5px;
  }
  /* Footer bottom: centered, tiny links inline */
  .foot-bottom {
    padding-top: 12px !important;
    font-size: 11px !important;
    flex-direction: column;
    text-align: center;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .foot-bottom a { display: inline-block !important; padding: 0 4px !important; font-size: 11px; }
}

/* Smallest phones: cut margin-top entirely */
@media (max-width: 420px) {
  .site-footer { padding: 18px 0 12px !important; margin-top: 24px !important; }
  .site-footer .foot-newsletter { display: none; }
}

/* =====================================================================
   FOOTER — Balanced MOBILE version (informative but compact)
   Show brand + contact + key links + newsletter — not pages-long
   ===================================================================== */
@media (max-width: 760px) {
  .site-footer {
    padding: 32px 0 16px !important;
    margin-top: 36px !important;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 18px !important;
  }

  /* Brand: centered logo + name + 1-line tagline */
  .site-footer .foot-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0;
  }
  .site-footer .foot-brand .logo { justify-content: center; }
  .site-footer .foot-brand .logo img { width: 40px !important; height: 40px !important; }
  .site-footer .foot-brand p {
    display: block !important;
    font-size: 12.5px !important;
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto 6px;
    color: rgba(255,255,255,0.7);
  }

  /* Hide the long Categories/Occasions/Help columns — they're in the sticky header */
  .footer-grid > div:not(.foot-brand):not(.foot-help-mini) {
    display: none !important;
  }

  /* Inject a contact strip + quick links via the "Help" column.
     We re-show the Help column and restyle it as compact info chips. */
  .footer-grid > div:nth-of-type(4) {
    display: block !important;
  }
  .footer-grid > div:nth-of-type(4) h4 {
    display: block !important;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.85);
  }
  .footer-grid > div:nth-of-type(4) a {
    display: inline-block !important;
    padding: 6px 12px !important;
    margin: 3px 4px !important;
    border-radius: 99px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 12px !important;
    color: rgba(255,255,255,0.85) !important;
    line-height: 1 !important;
  }
  .footer-grid > div:nth-of-type(4) a:hover {
    background: rgba(230,62,124,0.25);
    color: #fff !important;
    border-color: rgba(230,62,124,0.5);
  }

  /* Contact strip — inject after the brand block */
  .site-footer .foot-brand::after {
    content: 'Call +965 513 57950 · WhatsApp · thearjunks@gmail.com';
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    line-height: 1.5;
    max-width: 320px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
  }

  /* Newsletter compact and centered */
  .site-footer .foot-newsletter {
    margin: 6px auto 0;
    max-width: 320px;
    gap: 6px;
  }
  .site-footer .foot-newsletter input,
  .site-footer .foot-newsletter button {
    padding: 9px 14px;
    font-size: 13px;
  }

  /* Footer bottom: centered, two short lines */
  .foot-bottom {
    padding-top: 14px !important;
    font-size: 11.5px !important;
    flex-direction: column;
    text-align: center;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .foot-bottom a { display: inline-block !important; padding: 0 4px !important; font-size: 11.5px; }
}

@media (max-width: 420px) {
  .site-footer { padding: 24px 0 14px !important; }
  .site-footer .foot-brand p { font-size: 12px !important; }
}

/* =====================================================================
   HEADER — Bigger search box (now Track Order is out of the nav, more room)
   ===================================================================== */
.site-header .gk-search--inline {
  max-width: 520px !important;
  width: 100% !important;
}
.site-header .gk-form {
  padding: 5px 5px 5px 16px !important;
  border-radius: 99px;
}
.site-header .gk-input {
  height: 42px !important;
  font-size: 15px !important;
}
.site-header .gk-submit {
  padding: 10px 20px !important;
  font-size: 13.5px !important;
}

/* Track Order icon styling — keep it visually similar to the others
   but with the package icon and a "Track" label on desktop */
.site-header .ha-track {
  position: relative;
}
.site-header .ha-track .ha-label {
  display: none;
}
@media (min-width: 1100px) {
  .site-header .ha-track {
    width: auto;
    padding: 0 12px;
    gap: 6px;
    display: inline-flex;
    align-items: center;
    border-radius: 24px;
  }
  .site-header .ha-track .ha-label {
    display: inline;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--brand-2);
  }
  .site-header .ha-track:hover .ha-label {
    color: #fff;
  }
}

/* Tablet: search box keeps generous width */
@media (max-width: 1180px) and (min-width: 981px) {
  .site-header .gk-search--inline { max-width: 420px !important; }
  .site-header .gk-input { height: 40px !important; }
}

/* Mobile (≤980px): search input on row 1, label hidden, slimmer */
@media (max-width: 980px) {
  .site-header .gk-search--inline { max-width: none !important; }
  .site-header .gk-input { height: 38px !important; }
  .site-header .ha-track .ha-label { display: none !important; }
}

/* =====================================================================
   MOBILE BOTTOM NAV BAR (Categories · Occasions · Custom Hamper · Track Order)
   Visible only on mobile. Desktop: completely hidden.
   ===================================================================== */
.mbn-bar { display: none; }

@media (max-width: 900px) {
  .mbn-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #fff;
    border-top: 1px solid var(--line-soft);
    box-shadow: 0 -8px 28px rgba(45, 27, 54, 0.12);
    z-index: 150;
    padding: 6px 4px max(6px, env(safe-area-inset-bottom));
  }
  .mbn-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    background: none;
    border: 0;
    color: var(--brand-2);
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 10.5px;
    line-height: 1.1;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: color .2s ease, transform .2s ease;
  }
  .mbn-tab svg { width: 22px; height: 22px; stroke: currentColor; }
  .mbn-tab:hover,
  .mbn-tab:active {
    color: #E63E7C;
    transform: translateY(-1px);
  }

  /* Push page content above the bottom bar so nothing's hidden */
  body { padding-bottom: 64px; }

  /* Hide the hamburger toggle, the Track Order icon, and the desktop nav drawer on mobile —
     bottom nav replaces them */
  .site-header .nav-toggle { display: none !important; }
  .site-header .main-nav { display: none !important; }
  .site-header .ha-track { display: none !important; }
  .nav-scrim { display: none !important; }

  /* Top mobile header: logo + search + cart, single row */
  .site-header .header-inner {
    grid-template-columns: auto 1fr auto !important;
    grid-template-areas: "logo search actions" !important;
    gap: 10px !important;
    padding: 8px 0 !important;
  }
  .site-header .gk-search--inline { max-width: 100% !important; min-width: 0; }
  .site-header .gk-form { padding: 4px 4px 4px 12px !important; }
  .site-header .gk-input { height: 38px !important; font-size: 14px !important; }
  .site-header .gk-submit { display: none !important; }
  .site-header .gk-clear { display: none !important; }

  /* Header actions: keep only the cart icon visible on mobile */
  .site-header .header-actions { gap: 4px; }
  .site-header .header-actions > a:not([href$="cart.html"]) {
    display: none !important;
  }

  /* Logo smaller on mobile */
  .site-header .logo img { width: 32px !important; height: 32px !important; }
  .site-header .logo-text strong { font-size: 16px !important; }
  .site-header .logo-text em { font-size: 9px !important; }
}

/* =====================================================================
   MOBILE BOTTOM SHEET (opens for Categories / Occasions taps)
   ===================================================================== */
.mbn-sheet {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.mbn-sheet.is-open { display: block; }
.mbn-sheet-scrim {
  position: absolute; inset: 0;
  background: rgba(45, 27, 54, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: mbnFade 0.25s ease;
}
@keyframes mbnFade { from { opacity: 0; } to { opacity: 1; } }
.mbn-sheet-card {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  max-height: 85vh;
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -20px 60px rgba(45, 27, 54, 0.3);
  display: flex; flex-direction: column;
  animation: mbnSlide 0.3s cubic-bezier(.2, .8, .3, 1);
}
@keyframes mbnSlide {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.mbn-sheet-card::before {
  content: '';
  display: block;
  width: 38px; height: 4px;
  background: rgba(45, 27, 54, 0.18);
  border-radius: 2px;
  margin: 10px auto 4px;
}
.mbn-sheet-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px 8px;
  border-bottom: 1px solid var(--line-soft);
}
.mbn-sheet-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #4a1e2e;
  margin: 0;
}
.mbn-sheet-close {
  background: none; border: 0; cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--brand-2);
  transition: background .2s ease;
}
.mbn-sheet-close:hover { background: #FFE0E9; }
.mbn-sheet-close svg { width: 20px; height: 20px; }
.mbn-sheet-body {
  overflow-y: auto;
  padding: 14px 16px 32px;
}
/* Style the cloned mega-inner items inside the sheet as a stacked list */
.mbn-sheet-body .mega-inner {
  display: flex; flex-direction: column;
  gap: 6px;
}
.mbn-sheet-body .mega-cat {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #c2185b;
  border: 1px solid rgba(173, 20, 87, 0.08);
  color: #ffffff;
  text-decoration: none;
  transition: all .2s ease;
}
.mbn-sheet-body .mega-cat:hover {
  background: #FFE0E9;
  border-color: rgba(230, 62, 124, 0.3);
  transform: translateX(4px);
}
.mbn-sheet-body .mega-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.mbn-sheet-body .mega-ic svg { width: 18px; height: 18px; }
.mbn-sheet-body .mega-cat > span:last-child { display: flex; flex-direction: column; min-width: 0; }
.mbn-sheet-body .mega-cat strong {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 2px;
}
.mbn-sheet-body .mega-cat em {
  font-style: normal;
  font-size: 11.5px;
  color: #8a6271;
  line-height: 1.3;
}

/* Tiny mobile: tighter nav labels */
@media (max-width: 380px) {
  .mbn-tab { font-size: 9.5px; gap: 3px; padding: 6px 2px; }
  .mbn-tab svg { width: 20px; height: 20px; }
}

/* =====================================================================
   SEARCH DROPDOWN — Mobile-friendly alignment
   ===================================================================== */
@media (max-width: 760px) {
  /* Make the dropdown span the full viewport width, anchored to the header */
  .site-header .gk-search--inline { position: static; }
  .site-header .gk-dropdown {
    position: fixed;
    top: 70px;            /* sits just below the header */
    left: 10px;
    right: 10px;
    max-height: calc(100vh - 80px);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(45, 27, 54, 0.25);
    border: 1px solid var(--line-soft);
    z-index: 250;          /* above the bottom nav */
  }
  .gk-results {
    max-height: calc(100vh - 100px);
    padding: 8px;
  }
  /* Section headings tighter */
  .gk-section { padding: 4px 0; }
  .gk-section-head {
    padding: 8px 12px 4px;
    font-size: 10.5px;
    letter-spacing: 1.5px;
  }
  /* Rows: condensed columns so everything fits and aligns neatly */
  .gk-row {
    grid-template-columns: 44px 1fr auto;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
  }
  .gk-row > svg:last-child { display: none; }   /* drop the trailing chevron column */
  .gk-row img,
  .gk-row .gk-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
  }
  .gk-row .gk-title,
  .gk-row strong {
    font-size: 13.5px;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
  }
  .gk-row .gk-sub,
  .gk-row em,
  .gk-row small {
    font-size: 11.5px;
    color: var(--muted);
    font-style: normal;
  }
  .gk-row .gk-price {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--brand-2);
    white-space: nowrap;
  }
}

/* Tiny phones: tighter padding */
@media (max-width: 380px) {
  .site-header .gk-dropdown { left: 6px; right: 6px; }
  .gk-row { grid-template-columns: 40px 1fr auto; gap: 8px; padding: 9px 10px; }
  .gk-row img, .gk-row .gk-thumb { width: 40px; height: 40px; }
  .gk-row .gk-title { font-size: 13px; }
}

/* =====================================================================
   HOW TO ORDER section — left text steps, right YouTube video
   ===================================================================== */
.how-to-order {
  padding: 80px 0 70px;
  background: linear-gradient(180deg, #FFF9F5 0%, #FFEDE2 100%);
  position: relative;
  overflow: hidden;
}
.hto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hto-text .eyebrow {
  display: inline-block;
  color: #C2185B;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.hto-text h2 {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #4a1e2e;
  margin: 0 0 14px;
}
.hto-lede {
  color: #6b3a4d;
  font-size: 15px;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 0 26px;
}
.hto-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hto-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(173, 20, 87, 0.08);
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(173, 20, 87, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hto-step:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 26px rgba(173, 20, 87, 0.12);
}
.hto-step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E63E7C 0%, #C2185B 100%);
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(194, 24, 91, 0.32);
}
.hto-step-body h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #4a1e2e;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.hto-step-body p {
  margin: 0;
  font-size: 13.5px;
  color: #6b3a4d;
  line-height: 1.5;
}
.hto-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hto-video { position: relative; }
.hto-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px rgba(173, 20, 87, 0.20), 0 8px 20px rgba(45, 27, 54, 0.15);
  border: 4px solid #fff;
}
.hto-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hto-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 99px;
  border: 1px solid rgba(173, 20, 87, 0.12);
  box-shadow: 0 8px 18px rgba(173, 20, 87, 0.08);
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #C2185B;
}
.hto-video-badge svg {
  width: 16px;
  height: 16px;
  fill: #E63E7C;
}
@media (max-width: 980px) {
  .how-to-order { padding: 56px 0 50px; }
  .hto-grid { grid-template-columns: 1fr; gap: 36px; }
  .hto-video { order: -1; }
  .hto-text h2,
  .hto-text .eyebrow,
  .hto-lede { text-align: center; }
  .hto-lede { margin-left: auto; margin-right: auto; }
  .hto-cta { justify-content: center; }
}
@media (max-width: 600px) {
  .how-to-order { padding: 40px 0 36px; }
  .hto-step { padding: 12px 14px; gap: 12px; }
  .hto-step-num { width: 34px; height: 34px; font-size: 15px; }
  .hto-step-body h3 { font-size: 14.5px; }
  .hto-step-body p { font-size: 12.5px; }
  .hto-video-frame { border-width: 3px; border-radius: 16px; }
  .hto-video-badge { font-size: 12px; padding: 8px 14px; }
}

/* =====================================================================
   VIDEO BANNER — Bumped to proper promo banner heights
   (overrides earlier smaller breakpoint rules)
   ===================================================================== */

@media (max-width: 1200px) {
}
@media (max-width: 900px) {
}
@media (max-width: 600px) {
}
@media (max-width: 480px) {
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
/* =====================================================================
   VIDEO BANNER — Slightly reduced heights (less full-screen)
   ===================================================================== */

@media (max-width: 1200px) {
}
@media (max-width: 900px) {
}
@media (max-width: 600px) {
}
@media (max-width: 480px) {
}

/* =====================================================================
   CHECKOUT — Per-field validation styles
   ===================================================================== */
.form-control { position: relative; }

/* Invalid field */
.form-control.has-error input,
.form-control.has-error select,
.form-control.has-error textarea {
  border-color: #E63E7C !important;
  background: #FFF5F8 !important;
  box-shadow: 0 0 0 4px rgba(230, 62, 124, 0.1) !important;
}
.form-control.has-error label {
  color: #C2185B;
}

/* Inline error message */
.field-error {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 12.5px;
  color: #C2185B;
  line-height: 1.3;
  animation: feShake 0.3s ease;
}
.field-error::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #E63E7C;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
}
@keyframes feShake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-3px); }
  75%      { transform: translateX(3px); }
}

/* Valid field — soft green check border */
.form-control.is-valid input,
.form-control.is-valid select,
.form-control.is-valid textarea {
  border-color: #25D366 !important;
  background: #F4FBF7 !important;
}
.form-control.is-valid::after {
  content: '✓';
  position: absolute;
  right: 14px;
  top: 39px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: vPop 0.3s ease;
}
@keyframes vPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
/* Don't show the green check on textareas (positioning differs) */
.form-control.is-valid:has(textarea)::after { display: none; }

/* =====================================================================
   ORDER SUCCESS PAGE
   ===================================================================== */
.os-hero {
  padding: 50px 0 40px;
  background: linear-gradient(180deg, #FFF9F5 0%, #FFEDE2 100%);
  text-align: center;
}
.os-hero-inner { max-width: 720px; margin: 0 auto; }
.os-check {
  width: 84px; height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.4);
  animation: osCheckPop 0.5s cubic-bezier(.2,.9,.3,1.4);
}
.os-check svg { width: 44px; height: 44px; }
@keyframes osCheckPop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.os-hero .eyebrow {
  color: #C2185B;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
}
.os-hero h1 {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #4a1e2e;
  margin: 8px 0 12px;
}
.os-sub {
  color: #6b3a4d;
  max-width: 560px;
  margin: 0 auto 22px;
  line-height: 1.55;
}
.os-tracking-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(173, 20, 87, 0.12);
  box-shadow: 0 12px 28px rgba(173, 20, 87, 0.10);
}
.os-tracking-label {
  font-size: 12px;
  color: #8a6271;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.os-tracking-id {
  font-family: 'Rubik', sans-serif;
  font-size: 1.05rem;
  color: #C2185B;
  letter-spacing: 0.02em;
}
.os-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFE0E9;
  color: #C2185B;
  border: 0;
  border-radius: 99px;
  padding: 6px 12px;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.os-copy svg { width: 14px; height: 14px; }
.os-copy:hover { background: #C2185B; color: #fff; }
.os-copy.is-copied { background: #25D366; color: #fff; }
.os-email-note {
  font-size: 13px;
  color: #6b3a4d;
  margin: 0;
}

/* Mandatory WhatsApp share section */
.os-wa-section { padding: 18px 0 30px; background: #FFEDE2; }
.os-wa-card {
  max-width: 680px; margin: 0 auto;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 22px;
  padding: 28px 26px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(37, 211, 102, 0.30);
  position: relative;
  overflow: hidden;
}
.os-wa-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(500px 240px at 50% -20%, rgba(255,255,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.os-wa-icon {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.os-wa-icon svg { width: 30px; height: 30px; }
.os-wa-step {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.os-wa-card h2 {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: #fff;
  margin: 0 0 8px;
  position: relative; z-index: 1;
}
.os-wa-card p {
  color: rgba(255,255,255,0.95);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.os-wa-card p strong { color: #fff; font-weight: 800; }
.os-wa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  color: #128C7E;
  padding: 16px 26px;
  border-radius: 14px;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  position: relative; z-index: 1;
  animation: osWaPulse 1.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.os-wa-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}
.os-wa-button svg { width: 22px; height: 22px; }
@keyframes osWaPulse {
  0%, 100% { box-shadow: 0 10px 22px rgba(0,0,0,0.18), 0 0 0 0 rgba(255,255,255,0.5); }
  50%      { box-shadow: 0 10px 22px rgba(0,0,0,0.18), 0 0 0 12px rgba(255,255,255,0); }
}
.os-wa-number {
  display: block;
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  position: relative; z-index: 1;
}

/* Summary card */
.os-summary-section { padding: 30px 0 70px; background: #FFF9F5; }
.os-summary-card {
  max-width: 720px; margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(173, 20, 87, 0.08);
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: 0 12px 30px rgba(173, 20, 87, 0.08);
}
.os-summary-card h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #4a1e2e;
  margin: 0 0 18px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 12px;
}
.os-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.os-block {
  background: #FFF5F0;
  border: 1px solid rgba(173, 20, 87, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.os-block-label {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a6271;
  font-weight: 700;
  margin-bottom: 4px;
}
.os-block strong {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #4a1e2e;
}
.os-block em {
  font-style: normal;
  font-size: 12px;
  color: #6b3a4d;
  line-height: 1.35;
}

/* Items list */
.os-items-list { margin: 14px 0 12px; }
.os-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  margin-bottom: 8px;
  background: #fff;
}
.os-item img {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #FFE0E9;
}
.os-item-body strong {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: #4a1e2e;
  line-height: 1.25;
}
.os-item-body em {
  font-style: normal;
  font-size: 11.5px;
  color: #8a6271;
}
.os-item-meta { text-align: right; }
.os-qty {
  display: block;
  font-size: 12px;
  color: #6b3a4d;
}
.os-price {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: #C2185B;
}

/* Totals */
.os-totals {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.os-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #4a1e2e;
  padding: 6px 0;
}
.os-row span:first-child { color: #6b3a4d; }
.os-row-total {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #C2185B;
  padding-top: 12px;
  margin-top: 6px;
  border-top: 1px dashed rgba(173, 20, 87, 0.18);
}
.os-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
  padding-top: 16px;
  bo
/* ============================================================
   WHATSAPP FLOATING CHAT BUTTON — Modern FAB
   ============================================================ */

/* Wrapper — fixed position, right side, always on top */
.wa-fab-wrap {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  pointer-events: none; /* children opt back in */
}

/* ---- Pulsing rings ---- */
.wa-fab-ring {
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  pointer-events: none;
  animation: waRingPulse 2.8s ease-out infinite;
}
.wa-fab-ring--2 {
  animation-delay: 1.4s;
  background: rgba(37, 211, 102, 0.2);
}
@keyframes waRingPulse {
  0%   { transform: scale(1);    opacity: .9; }
  100% { transform: scale(2.4);  opacity: 0; }
}

/* ---- Tooltip bubble ---- */
.wa-fab-tooltip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #1a1a2e;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px 9px 12px;
  border-radius: 20px 20px 4px 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.08);
  white-space: nowrap;
  pointer-events: none;
  margin-bottom: 10px;
  /* Hidden by default — GSAP controls visibility */
  opacity: 0;
  transform: translateY(8px) scale(.95);
  transform-origin: bottom right;
}
.wa-fab-tooltip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #25D366;
  animation: waDotBounce 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
.wa-fab-tooltip-dot:nth-child(2) { animation-delay: .18s; }
.wa-fab-tooltip-dot:nth-child(3) { animation-delay: .36s; }
@keyframes waDotBounce {
  0%, 60%, 100% { transform: translateY(0);   }
  30%           { transform: translateY(-4px); }
}
.wa-fab-tooltip-text { color: #111; line-height: 1; }

/* ---- Main FAB button ---- */
.wa-fab {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 22px 14px 14px;
  box-shadow:
    0 8px 32px rgba(37,211,102,.5),
    0 2px 8px rgba(0,0,0,.15),
    inset 0 1px 0 rgba(255,255,255,.25);
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* GSAP will set initial opacity/transform on load */
}

/* Sheen sweep on hover */
.wa-fab::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
  pointer-events: none;
}
.wa-fab:hover::before { left: 160%; }

/* Icon container */
.wa-fab-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.wa-fab-icon svg {
  display: block !important;
  width: 24px  !important;
  height: 24px !important;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px !important;
  max-height: 24px !important;
  flex-shrink: 0;
}

/* Label */
.wa-fab-label {
  display: block;
  line-height: 1;
  font-size: 14px;
  flex-shrink: 0;
}

/* ---- Mobile: 58px circle, icon only ---- */
@media (max-width: 520px) {
  .wa-fab-wrap {
    bottom: 84px;  /* clear the mobile bottom nav bar */
    right: 16px;
  }
  .wa-fab {
    width: 58px;
    height: 58px;
    padding: 0 !important;
    border-radius: 50% !important;
    gap: 0;
    justify-content: center;
  }
  .wa-fab-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: none;
    border-radius: 0;
  }
  .wa-fab-icon svg {
    width: 28px  !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    min-width: 28px;
    min-height: 28px;
  }
  .wa-fab-label   { display: none !important; }
  .wa-fab-tooltip { display: none !important; }
  .wa-fab-ring {
    width: 58px; height: 58px;
  }
}
