/* ═══════════════════════════════════════════════════════
   Dadi's Bayleaf Spice — Complete Stylesheet
   styles.css  |  v2.0
   ═══════════════════════════════════════════════════════ */

:root {
  --ivory:      #fdf8f0;
  --cream:      #f5ead8;
  --gold:       #c9973a;
  --gold-light: #e8c46a;
  --gold-pale:  #f5e6c0;
  --brown:      #e48a36;
  --brown-dark: #774419;
  --spice-red:  #b84a2e;
  --turmeric:   #d4a017;
  --text:       #3a1f08;
  --text-light: #7a5c3a;
  --border:     #d4b07a;
  --header-h:   105px;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Cormorant Garamond',serif;
  background:var(--ivory);
  color:var(--text);
  overflow-x:hidden;
}
img { max-width:100%; }
/* img { display:block; max-width:100%; } */
a   { text-decoration:none; color:inherit; }
button { cursor:pointer; font-family:inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1,h2,h3,h4 { font-family:'Playfair Display',serif; line-height:1.2; }

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
header {
  position:fixed; top:0; width:100%; z-index:1000;
  background:linear-gradient(180deg,var(--brown-dark) 0%,#2d1508 100%);
  border-bottom:2px solid var(--gold);
  box-shadow:0 4px 30px rgba(0,0,0,.4);
  transition:box-shadow .3s;
  +
}
header.scrolled { box-shadow:0 4px 50px rgba(0,0,0,.6); }

.header-top {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  color: white;
  background:linear-gradient(90deg,var(--brown-dark),#5a2d0c,var(--brown-dark));
  text-align:center; padding:6px;
  font-size:15px;
  letter-spacing:3px;
  border-bottom:1px solid rgba(201,151,58,.3);
}

.header-main {
  display:flex; align-items:center;
  justify-content:space-between;
  padding:0px 4%; gap:16px;
}

.logo-wrap { display:flex; align-items:center; flex-shrink:0; }
.logo-img  {
  height:130px; width:auto;
  filter:drop-shadow(0 2px 8px rgba(201,151,58,.5));
}

/* ── DESKTOP NAV ─────────────────────────────────────── */
.main-nav { display:flex; align-items:center; gap:0; position:relative; }

.nav-item {
  position:relative; }

.nav-link {
  color:var(--cream);
  font-size:18px; font-weight:500;
  letter-spacing:1.5px; text-transform:uppercase;
  padding:10px 14px; display:flex; align-items:center; gap:5px;
  transition:color .3s; white-space:nowrap;
}
.nav-link:hover { color:var(--gold-light); }
.nav-link::after {
  content:''; position:absolute; bottom:0; left:50%;
  transform:translateX(-50%); width:0; height:2px;
  background:var(--gold); transition:width .3s;
}
.nav-link:hover::after { width:70%; }

/* ── ACTIVE NAV LINK ─────────────────────────────────────
   Mirrors hover style (gold colour + underline) and adds
   a soft gold glow so the current page is always visible.
   Works two ways:
     1. CSS :has() — auto-detects the active SPA page div
     2. .nav-link.active class — add to the correct <a> on
        standalone pages (shop, about, contact, partner)
─────────────────────────────────────────────────────────── */

/* Colour + glow — shared declaration */
.nav-link.active,
body:has(#page-home.active)    .nav-item:nth-child(1) .nav-link,
body:has(#page-recipes.active) .nav-item:nth-child(3) .nav-link,
body:has(#page-blog.active)    .nav-item:nth-child(4) .nav-link {
  color: var(--gold-light);
  text-shadow:
    0 0 8px  rgba(232,196,106,.75),
    0 0 20px rgba(232,196,106,.45),
    0 0 40px rgba(232,196,106,.20);
}

/* Underline — shared declaration */
.nav-link.active::after,
body:has(#page-home.active)    .nav-item:nth-child(1) .nav-link::after,
body:has(#page-recipes.active) .nav-item:nth-child(3) .nav-link::after,
body:has(#page-blog.active)    .nav-item:nth-child(4) .nav-link::after {
  width: 70%;
}

.nav-link .chevron {
  font-size:9px; transition:transform .3s;
  display:inline-block;
}
.nav-item:hover .chevron { transform:rotate(180deg); }

/* ── DROPDOWN ─────────────────────────────────────────── */
.dropdown {
  position:absolute; top:100%; left:0;
  background:var(--brown-dark);
  border:1px solid rgba(201,151,58,.3);
  border-top:2px solid var(--gold);
  min-width:220px;
  opacity:0; visibility:hidden; transform:translateY(-8px);
  transition:all .25s;
  z-index:200;
}
.nav-item:hover .dropdown {
  opacity:1; visibility:visible; transform:translateY(0);
}

.dropdown-section { padding:8px 0; }
.dropdown-label {
  font-size:10px; letter-spacing:3px;
  color:var(--gold); text-transform:uppercase;
  padding:8px 18px 4px;
}
.dropdown-link {
  display:flex; align-items:center; gap:10px;
  padding:9px 18px;
  color:rgba(245,234,216,.75);
  font-size:14px; letter-spacing:.5px;
  transition:all .2s;
  border-left:2px solid transparent;
}
.dropdown-link:hover {
  color:var(--gold-light);
  background:rgba(201,151,58,.08);
  border-left-color:var(--gold);
}
.dropdown-link .d-icon { font-size:16px; }
.dropdown-divider {
  height:1px;
  background:rgba(201,151,58,.2);
  margin:4px 0;
}

/* ── HEADER ACTIONS ──────────────────────────────────── */
.header-actions { display:flex; align-items:center; gap:18px; }

.search-wrap {
  display:flex; align-items:center;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(201,151,58,.4);
  border-radius:2px; padding:7px 12px; gap:8px;
}
.search-wrap input {
  background:none; border:none;
  color:var(--cream);
  font-family:'Cormorant Garamond',serif; font-size:14px;
  outline:none; width:140px;
}
.search-wrap input::placeholder { color:rgba(245,234,216,.45); }
.search-wrap svg { color:var(--gold); flex-shrink:0; }

.icon-btn {
  background:none; border:none;
  color:var(--cream); position:relative;
  display:flex; flex-direction:column;
  align-items:center; gap:2px;
  font-size:10px; letter-spacing:1px;
  transition:color .3s;
}
.icon-btn:hover { color:var(--gold-light); }

.badge {
  position:absolute; top:-4px; right:-6px;
  background:var(--spice-red); color:#fff;
  border-radius:50%; width:16px; height:16px;
  font-size:9px; display:flex; align-items:center;
  justify-content:center; font-family:sans-serif;
}

.hamburger {
  display:none; background:none; border:none;
  flex-direction:column; gap:5px; padding:4px;
}
.hamburger span {
  display:block; width:24px; height:2px;
  background:var(--gold); transition:.3s;
}
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE NAV ──────────────────────────────────────── */
.mobile-nav {
  
  display:none; position:fixed;
  top:var(--header-h); left:0; right:0; bottom:200px;
  background-color:var(--brown-dark); opacity: 0.97;
  /* background:var(--brown-dark); */
  border-top:1px solid var(--gold);
  padding:20px; z-index:999;
  flex-direction:column; gap:2px;
  overflow-y:auto;
}
.mobile-nav.open { display:flex; }

.mob-nav-section { margin-bottom:8px; }
.mob-nav-label {
  font-size:10px; letter-spacing:4px;
  color:var(--gold); text-transform:uppercase;
  padding:10px 14px 6px;
}
.mob-nav-link {
  display:block; color:var(--cream);
  font-size:16px; letter-spacing:2px; text-transform:uppercase;
  padding:11px 14px;
  border-bottom:1px solid rgba(201,151,58,.12);
  transition:color .2s;
}
.mob-nav-link:hover { color:var(--gold); }

/* ══════════════════════════════════════════════════════
   PAGE SYSTEM  (SPA routing via hash)
══════════════════════════════════════════════════════ */
.page { display:none; }
.page.active { display:block; }

/* ══════════════════════════════════════════════════════
   HERO — HOME
══════════════════════════════════════════════════════ */
.hero {
  margin-top:var(--header-h);
  min-height:92vh;
  display:flex; align-items:center;
  position:relative; overflow:hidden;
}

/* Slideshow background */
.hero-slides { position:absolute; inset:0; z-index:0; }
.hero-slide {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transition:opacity 1.4s ease;
}
.hero-slide.active { opacity:1; }

/* Overlay gradient so text is readable */
.hero-overlay {
  position:absolute; inset:0; z-index:1;
  /* background:linear-gradient(135deg,
    rgba(100, 49, 26, 0.82) 0%,
    rgba(161, 98, 61, 0.6) 50%,
    rgba(141, 68, 38, 0.45) 100%); */
}

/* Mandala watermark */
.hero-overlay::after {
  content:'';
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='60' cy='60' r='55' fill='none' stroke='%23c9973a18' stroke-width='1'/%3E%3Ccircle cx='60' cy='60' r='40' fill='none' stroke='%23c9973a12' stroke-width='1'/%3E%3Cpath d='M60 5 L63 57 L60 115 L57 57Z' fill='%23c9973a0a'/%3E%3Cpath d='M5 60 L57 63 L115 60 L57 57Z' fill='%23c9973a0a'/%3E%3C/svg%3E");
  background-size:120px 120px;
  pointer-events:none;
}

.hero-content {
  position:relative; z-index:2;
  padding:70px 8%; max-width:720px;
}

.hero-eyebrow {
  display:flex; align-items:center;
  gap:14px; margin-bottom:22px;
}
.hero-eyebrow span {
  color:var(--gold); font-size:12px;
  letter-spacing:5px; text-transform:uppercase;
}
.hero-eyebrow::before,.hero-eyebrow::after {
  content:''; height:1px; background:var(--gold);
  flex:1; max-width:40px;
}

h1.hero-title {
  font-size:clamp(60px,6vw,80px);
  color:var(--ivory); line-height:1.08; margin-bottom:14px;
}
h1.hero-title em { color:var(--gold-light); font-style:italic; }

.hero-sub {
  font-family:'IM Fell English',serif;
  color:rgba(245,234,216,.75);
  font-size:17px; margin-bottom:28px; line-height:1.6;
}
.hero-desc {
  color:white;
  font-size:17px; line-height:1.75; margin-bottom:44px; max-width:520px;
}
.hero-btns { display:flex; gap:16px; flex-wrap:wrap; }

/* Slide dots */
.hero-dots {
  position:absolute; bottom:28px; left:50%;
  transform:translateX(-50%);
  display:flex; gap:10px; z-index:3;
}
.hero-dot {
  width:8px; height:8px; border-radius:50%;
  background:rgba(201,151,58,.4);
  border:1px solid var(--gold);
  cursor:pointer; transition:all .3s;
}
.hero-dot.active {
  background:var(--gold);
  transform:scale(1.3);
}

/* ── SPICE BLOBS ─────────────────────────────────────── */
.hero-spices {
  position:absolute; right:4%; top:50%; transform:translateY(-50%);
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
  z-index:2;
}
.spice-blob {
  width:clamp(90px,10vw,140px);
  height:clamp(90px,10vw,140px);
  border-radius:50%;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  font-size:clamp(24px,3vw,42px);
  box-shadow:0 8px 32px rgba(0,0,0,.35);
  border:2px solid rgba(201,151,58,.35);
  animation:float 3s ease-in-out infinite;
  cursor:default; user-select:none;
}
.spice-blob:hover{
  cursor:pointer;
}
.spice-blob:nth-child(2){animation-delay:1s;}
.spice-blob:nth-child(3){animation-delay:1.5s;}
.spice-blob:nth-child(4){animation-delay:2s;}
.spice-blob span {
  font-size:clamp(9px,1vw,12px);
  color:rgba(255,255,255,.75); margin-top:4px; letter-spacing:1px;
  font-family:'Cormorant Garamond',serif;
}
.sb1{background:radial-gradient(circle,#8b1a0a,#3d0a03);}
.sb2{background:radial-gradient(circle,#d4a017,#7a5c00);}
.sb3{background:radial-gradient(circle,#5a3200,#2d1800);}
.sb4{background:radial-gradient(circle,#b84a2e,#5a1800);}

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn-gold {
  background:linear-gradient(135deg,var(--gold) 0%,var(--turmeric) 100%);
  color:white; border:none;
  padding:14px 36px;
  font-size:14px; font-weight:600;
  letter-spacing:2px; text-transform:uppercase;
  display:inline-block; transition:all .3s;
  box-shadow:0 4px 20px rgba(201,151,58,.4);
  clip-path:polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
}
.btn-gold:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(201,151,58,.6); }

.btn-outline {
  background:white; color:var(--gold-light);
  border:1px solid var(--gold);
  padding:14px 36px; font-size:14px;
  letter-spacing:2px; text-transform:uppercase;
  display:inline-block; transition:all .3s;
  /* clip-path:polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%); */
}
.btn-outline:hover { color:white;background:var(--gold-light); transform:translateY(-2px); }

.btn-dark {
  background:var(--brown-dark); color:var(--gold-light);
  border:none; padding:14px 36px;
  font-size:14px; font-weight:600; letter-spacing:2px; text-transform:uppercase;
  display:inline-block; transition:all .3s;
  clip-path:polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
}
.btn-dark:hover { background:#1a0e05; transform:translateY(-2px); }

/* ══════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════ */
.marquee-strip {
  background:linear-gradient(90deg,var(--brown-dark),#5a2d0c,var(--brown-dark));
  padding:13px 0; overflow:hidden;
  border-top:1px solid var(--gold); border-bottom:1px solid var(--gold);
}
.marquee-track {
  display:flex; gap:40px;
  animation:marquee 22s linear infinite; white-space:nowrap;
}
.marquee-track span {
  color:var(--gold-light); font-size:12px;
  letter-spacing:3px; text-transform:uppercase; flex-shrink:0;
}
.marquee-track .dot { color:var(--spice-red); letter-spacing:0; }

/* ══════════════════════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════════════════════ */
.features-strip {
  background:var(--cream);
  padding:38px 6%;
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.feature-item {
  display:flex; flex-direction:column; align-items:center;
  text-align:center; padding:18px 20px; gap:10px;
  border-right:1px solid var(--border);
}
.feature-item:last-child { border-right:none; }
.feature-icon {
  width:54px; height:54px;
  background:linear-gradient(135deg,var(--gold),var(--turmeric));
  border-radius:50%; display:flex; align-items:center;
  justify-content:center; font-size:22px;
  box-shadow:0 4px 16px rgba(201,151,58,.3);
}
.feature-item h4 { font-size:15px; color:var(--brown-dark); }
.feature-item p  { font-size:13px; color:var(--text-light); line-height:1.5; }

/* ══════════════════════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════════════════════ */
.section      { padding:80px 6%; }
.section.alt  { background:var(--cream); }
.section.dark {
  background:linear-gradient(135deg,var(--brown-dark),#5a2d0c);
  color:var(--cream);
}

.section-title      { text-align:center; margin-bottom:52px; }
.section-tag        { font-family: 'Playfair Display'; display:block; font-size:15px; letter-spacing:5px; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.section-title h2   { font-size:clamp(30px,4vw,52px); color:var(--brown-dark); }
.section.dark .section-title h2 { color:var(--ivory); }
.section-title p    { font-family:'IM Fell English',serif; font-style:italic; color:var(--text-light); font-size:18px; margin-top:12px; }
.section.dark .section-title p  { color:rgba(245,234,216,.65); }
.title-ornament {
  display:flex; align-items:center; justify-content:center;
  gap:12px; margin-top:16px;
}
.title-ornament::before,.title-ornament::after {
  content:''; width:60px; height:1px; background:var(--gold);
}
.title-ornament span { color:var(--gold); font-size:16px; }

/* Page hero banner (inner pages) */
.page-hero {
  margin-top:var(--header-h);
  padding:70px 6% 60px;
  background:linear-gradient(135deg,var(--brown-dark) 0%,#5a2d0c 100%);
  text-align:center; position:relative; overflow:hidden;
}
.page-hero::before {
  content:'❋';
  position:absolute; font-size:300px;
  color:rgba(201,151,58,.06);
  left:50%; top:50%; transform:translate(-50%,-50%);
  pointer-events:none;
}
.page-hero h1 {
  color:var(--ivory); font-size:clamp(32px,5vw,60px); margin-bottom:12px;
}
.page-hero h1 em { color:var(--gold-light); font-style:italic; }
.page-hero p {
  font-family:'IM Fell English',serif;
  color:white; font-size:18px;
}
.breadcrumb {
  display:flex; align-items:center; justify-content:center;
  gap:8px; margin-top:18px;
  font-size:12px; letter-spacing:2px; text-transform:uppercase;
  color:rgba(245,234,216,.45);
}
.breadcrumb a { color:var(--gold); transition:color .2s; }
.breadcrumb a:hover { color:var(--gold-light); }
.breadcrumb span { color:rgba(245,234,216,.3); }

/* ══════════════════════════════════════════════════════
   SHOP PAGE
══════════════════════════════════════════════════════ */
/* .shop-layout {
   display: flex ;
  flex-direction: column;
  align-items: center;;
} */

/* Sidebar */
/* .shop-sidebar { position:sticky; top:calc(var(--header-h) + 24px); align-self:start; } */
.sidebar-block { visibility: hidden;argin-bottom:32px; }
.sidebar-title {
  font-family:'Playfair Display',serif; font-size:18px;
  color:var(--brown-dark); margin-bottom:14px;
  padding-bottom:10px;
  border-bottom:1px solid var(--border);
}
.filter-list { display:flex; flex-direction:column; gap:8px; }
.filter-item {
  display:flex; align-items:center; gap:10px;
  cursor:pointer; font-size:14px; color:var(--text);
  padding:6px 0; transition:color .2s;
}
.filter-item:hover { color:var(--gold); }
.filter-check {
  width:18px; height:18px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; transition:all .2s;
}
.filter-item.active .filter-check {
  background:var(--gold); border-color:var(--gold); color:var(--brown-dark); font-size:11px;
}
.filter-count { margin-left:auto; font-size:11px; color:var(--text-light); }

.price-range { display:flex; flex-direction:column; gap:10px; }
.price-inputs { display:flex; gap:10px; }
.price-inputs input {
  flex:1; padding:8px 10px; border:1px solid var(--border);
  background:white; font-family:'Cormorant Garamond',serif;
  font-size:14px; color:var(--text); outline:none;
}
.price-inputs input:focus { border-color:var(--gold); }

/* Products grid */
/* .shop-main {
  margin-left: 20px;
  margin-right: 20px;   
} */
.shop-toolbar {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:28px; padding-bottom:16px;
  border-bottom:1px solid var(--border);
  flex-wrap:wrap; gap:12px;
}
.shop-count { font-size:14px; color:var(--text-light); }
.shop-sort select {
  padding:8px 12px; border:1px solid var(--border);
  background:white; font-family:'Cormorant Garamond',serif;
  font-size:14px; color:var(--text); outline:none;
  cursor:pointer;
}
.shop-view-btns { display:flex; gap:6px; }
.view-btn {
  width:34px; height:34px; border:1px solid var(--border);
  background:white; display:flex; align-items:center;
  justify-content:center; font-size:14px; color:var(--text-light);
  transition:all .2s;
}
.view-btn.active { background:var(--gold); border-color:var(--gold); color:var(--brown-dark); }

/* .products-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
} */
.products-grid.list-view { grid-template-columns:1fr; }

/* Product Card */
.product-card {
  background:white; border:1px solid var(--border);
  position:relative; overflow:hidden;
  transition:box-shadow .3s, transform .3s;
}
.product-card:hover {
  .product-img.p-bg1 {
  background-image: url("Product Mockups/Amchur\ Powder.jpg");
}
.product-img.p-bg2 {
  background-image: url("Product Mockups/Biryani\ Masala.jpg");
}
.product-img.p-bg3 {
  background-image: url("Product Mockups/Black\ Pepper.jpg");
}
.product-img.p-bg4 {
  background-image: url("Product Mockups/Chaat\ Masala.jpg");
}
.product-img.p-bg5 {
  background-image: url("Product Mockups/Chole\ Masala.jpg");
}
.product-img.p-bg6 {
  background-image: url("Product Mockups/Chicken\ Masala.jpg");
}
.product-img.p-bg7 {
  background-image: url("Product Mockups/Garam\ Masala.jpg");
}
.product-img.p-bg8 {
  background-image: url("Product Mockups/Jeera\ Powder.jpg");
}
.product-img.p-bg9 {
  background-image: url("Product Mockups/Kashmiri\ Lal\ Mirch.jpg");
}
.product-img.p-bg10 {
  background-image: url("Product Mockups/Kitchen\ King\ Masala.jpg");
}
.product-img.p-bg11 {
  background-image: url("Product Mockups/Meat\ Masala.jpg");
}
.product-img.p-bg12 {
  background-image: url("Product Mockups/Dadi\'s\ Paneer\ Masala.jpg");
}
.product-img.p-bg13 {
  background-image: url("Product Mockups/Pav\ Bhaji\ Masala.jpg");
}
.product-img.p-bg14 {
  background-image: url("Product Mockups/Rajma\ Masala.jpg");
}
.product-img.p-bg15 {
  background-image: url("Product Mockups/Sabji\ Masala.jpg");
}
.product-img.p-bg16 {
  background-image: url("Product Mockups/Sambhar\ Masala.jpg");
}
.product-img.p-bg17 {
  background-image: url("Product Mockups/Besan.jpg");
}
.product-img.p-bg18 {
  background-image: url("Product Mockups/Coriander\ Powder.jpg");
}
.product-img.p-bg19 {
  background-image: url("Product Mockups/Red\ Chilli.jpg");
}
.product-img.p-bg20 {
  background-image: url("Product Mockups/Turmeric\ Powder.jpg");
}

  box-shadow:0 12px 40px rgba(122,74,30,.2);
  transform:translateY(-3px);
}
.product-img {
  height:200px; display:flex; align-items:center;
  justify-content:center; font-size:58px;
  position:relative; overflow:hidden;
}
.p-bg1{background:linear-gradient(135deg,#fff5e6,#ffe0b0);}
.p-bg2{background:linear-gradient(135deg,#fff0e0,#ffd9a0);}
.p-bg3{background:linear-gradient(135deg,#ffeee0,#fcc990);}
.p-bg4{background:linear-gradient(135deg,#fff2e0,#f5d27e);}
.p-bg5{background:linear-gradient(135deg,#ffe8e0,#f5c0a0);}
.p-bg6{background:linear-gradient(135deg,#f0f5e0,#d8e8a0);}

.product-badge {
  position:absolute; top:12px; left:12px;
  background:var(--spice-red); color:white;
  font-size:10px; padding:4px 10px;
  letter-spacing:1px; text-transform:uppercase;
}
.product-badge.new-badge { background:var(--brown); }
.product-badge.sale-badge{ background:var(--spice-red); }

.product-info { padding:18px; }
.product-info h4 { font-size:16px; color:var(--brown-dark); margin-bottom:4px; }
.product-info .origin { font-size:12px; color:var(--gold); letter-spacing:1px; margin-bottom:6px; }
.product-info .desc   { font-size:13px; color:var(--text-light); line-height:1.5; margin-bottom:12px; }

.stars { color:var(--gold); font-size:12px; margin-bottom:6px; }

.product-footer {
  display:flex; align-items:center;
  justify-content:space-between; gap:8px;
}
.price { font-size:20px; font-weight:600; color:var(--brown); }
.price .original { font-size:14px; text-decoration:line-through; color:var(--text-light); margin-left:6px; }

.add-btn {
  background:linear-gradient(135deg,var(--gold),var(--turmeric));
  border:none; color:var(--brown-dark);
  padding:9px 18px; font-size:12px;
  letter-spacing:1px; text-transform:uppercase;
  font-weight:600; transition:all .3s;
  white-space:nowrap;
}
.add-btn:hover { transform:scale(1.05); box-shadow:0 4px 12px rgba(201,151,58,.4); }
.add-btn.added {
  background:linear-gradient(135deg,#5a8a3a,#3a6a1a);
  color:white;
}

.wishlist-btn {
  background:none; border:1px solid var(--border);
  width:36px; height:36px; display:flex;
  align-items:center; justify-content:center;
  font-size:16px; transition:all .2s; flex-shrink:0;
}
.wishlist-btn:hover { border-color:var(--spice-red); color:var(--spice-red); }
.wishlist-btn.active { background:var(--spice-red); border-color:var(--spice-red); color:white; }

/* Quantity Selector (product page) */
.qty-selector {
  display:flex; align-items:center; gap:0;
  border:1px solid var(--border);
}
.qty-btn {
  width:34px; height:34px; background:var(--cream);
  border:none; font-size:18px; color:var(--brown);
  transition:background .2s;
}
.qty-btn:hover { background:var(--gold-pale); }
.qty-num {
  width:40px; height:34px; background:white;
  display:flex; align-items:center; justify-content:center;
  font-size:15px; color:var(--brown-dark); font-weight:600;
  border-left:1px solid var(--border); border-right:1px solid var(--border);
}

/* Category filter pills */
.cat-pills { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:28px; }
.cat-pill {
  padding:8px 18px; border:1px solid var(--border);
  background:white; font-family:'Cormorant Garamond',serif;
  font-size:13px; letter-spacing:1px; text-transform:uppercase;
  color:var(--text); cursor:pointer; transition:all .2s;
}
.cat-pill:hover { border-color:var(--gold); color:var(--gold); }
.cat-pill.active { background:var(--gold); border-color:var(--gold); color:var(--brown-dark); font-weight:600; }

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.about-story {
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
  padding:80px 6%;
}
.about-story.reverse { direction:rtl; }
.about-story.reverse > * { direction:ltr; }

.about-text .section-tag { text-align:left; }
.about-text h2 { font-size:clamp(28px,4vw,46px); color:var(--brown-dark); margin-bottom:20px; }
.about-text h2 em { color:var(--gold); font-style:italic; }
.about-text p  { font-size:16px; color:var(--text-light); line-height:1.85; margin-bottom:14px; }

.about-img-frame {
  border:2px solid var(--gold); padding:8px; position:relative; justify-content: center;
}
.about-img-inner {
  background:linear-gradient(135deg,#8b4513,#5a2d0c);
  height:380px; display:flex; align-items:center; justify-content:center;
}

.about-logo-img  {

  height:200px; width:auto;
  filter:drop-shadow(0 2px 8px rgba(201,151,58,.5));
}
.about-corner { position:absolute; width:22px; height:22px; border-color:var(--gold); border-style:solid; }
.about-corner.tl{top:-2px;left:-2px;border-width:2px 0 0 2px;}
.about-corner.tr{top:-2px;right:-2px;border-width:2px 2px 0 0;}
.about-corner.bl{bottom:-2px;left:-2px;border-width:0 0 2px 2px;}
.about-corner.br{bottom:-2px;right:-2px;border-width:0 2px 2px 0;}

.about-stats-row {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:var(--border); border:1px solid var(--border);
}
.stat-box {
  background:var(--ivory); padding:36px 20px;
  text-align:center;
}
.stat-box .num { font-family:'Playfair Display',serif; font-size:44px; color:var(--gold); display:block; }
.stat-box .label { font-size:13px; letter-spacing:2px; color:var(--text-light); text-transform:uppercase; }

.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.team-card { background:white; border:1px solid var(--border); text-align:center; overflow:hidden; }
.team-card-img { height:220px; display:flex; align-items:center; justify-content:center; font-size:72px; }
.t-bg1{background:linear-gradient(135deg,#ffe0c0,#ffc070);}
.t-bg2{background:linear-gradient(135deg,#f0e0ff,#d0b0f0);}
.t-bg3{background:linear-gradient(135deg,#e0f0e0,#a0d0a0);}
.team-card-info { padding:20px; }
.team-card-info h4 { font-size:18px; color:var(--brown-dark); margin-bottom:4px; }
.team-card-info .role { font-size:12px; letter-spacing:2px; color:var(--gold); text-transform:uppercase; margin-bottom:10px; }
.team-card-info p { font-size:13px; color:var(--text-light); line-height:1.6; }

.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.value-card {
  padding:36px 28px; border:1px solid var(--border);
  background:white; text-align:center;
  transition:box-shadow .3s;
}
.value-card:hover { box-shadow:0 8px 32px rgba(122,74,30,.15); }
.value-icon { font-size:40px; margin-bottom:16px; }
.value-card h4 { font-size:18px; color:var(--brown-dark); margin-bottom:10px; }
.value-card p  { font-size:14px; color:var(--text-light); line-height:1.7; }

/* ══════════════════════════════════════════════════════
   RECIPES PAGE
══════════════════════════════════════════════════════ */
.recipe-filters { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:36px; justify-content:center; }
.recipe-pill {
  padding:9px 22px; border:1px solid var(--border);
  background:white; font-size:13px; letter-spacing:1px;
  text-transform:uppercase; color:var(--text); cursor:pointer; transition:all .2s;
}
.recipe-pill:hover { border-color:var(--gold); color:var(--gold); }
.recipe-pill.active { background:var(--gold); border-color:var(--gold); color:var(--brown-dark); font-weight:600; }

.recipes-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.recipe-card {
  border:1px solid var(--border); overflow:hidden;
  background:white; transition:all .3s; cursor:pointer;
}
.recipe-card:hover { box-shadow:0 10px 36px rgba(122,74,30,.18); transform:translateY(-4px); }
.recipe-img {
  height:325px; display:flex; align-items:center;
  justify-content:center; font-size:72px; position:relative;
}
.r-bg1{background:linear-gradient(135deg,#ffe0b0,#fcc880);}
.r-bg2{background:linear-gradient(135deg,#ffd5b0,#f0a870);}
.r-bg3{background:linear-gradient(135deg,#ffe5c8,#f5c078);}
.r-bg4{background:linear-gradient(135deg,#f5ffe0,#d0e890);}
.r-bg5{background:linear-gradient(135deg,#ffe0f0,#f0a0c0);}
.r-bg6{background:linear-gradient(135deg,#e0f0ff,#90c8f0);}

.recipe-time {
  position:absolute; bottom:12px; right:12px;
  background:rgba(30,10,2,.7); color:var(--gold-light);
  font-size:11px; padding:4px 10px; letter-spacing:1px;
}
.recipe-meta { padding:16px 18px 0; display:flex; gap:8px; flex-wrap:wrap; }
.recipe-tag {
  background:var(--gold-pale); color:var(--brown);
  font-size:10px; padding:4px 10px; letter-spacing:1px; text-transform:uppercase;
}
.recipe-info { padding:10px 18px 22px; }
.recipe-info h3 { font-size:20px; color:var(--brown-dark); margin-bottom:6px; }
.recipe-info p  { font-size:13px; color:var(--text-light); line-height:1.6; margin-bottom:14px; }
.recipe-info .link {
  color:var(--gold); font-size:12px; letter-spacing:2px;
  text-transform:uppercase; border-bottom:1px solid var(--gold); padding-bottom:2px;
}

.recipe-detail { display:none; }
.recipe-detail.open { display:block; }
.recipe-detail-inner {
  display:grid; grid-template-columns:1fr 320px; gap:48px;
  padding:60px 6%;
}
.recipe-detail-hero {
  height:360px; display:flex; align-items:center;
  justify-content:center; font-size:120px;
  margin-bottom:32px;
}
.recipe-detail h2 { font-size:36px; color:var(--brown-dark); margin-bottom:12px; }
.recipe-detail .recipe-meta { padding:0; margin-bottom:20px; }
.recipe-detail p  { font-size:16px; color:var(--text-light); line-height:1.8; margin-bottom:16px; }
.recipe-steps { counter-reset:step; }
.recipe-step {
  display:flex; gap:16px; margin-bottom:20px; align-items:flex-start;
}
.step-num {
  width:32px; height:32px; background:var(--gold);
  color:var(--brown-dark); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:700; flex-shrink:0;
}
.step-text { font-size:15px; color:var(--text); line-height:1.7; padding-top:5px; }

.recipe-sidebar-card {
  border:1px solid var(--border); padding:24px; background:var(--cream);
  position:sticky; top:calc(var(--header-h)+24px);
}
.recipe-sidebar-card h4 { font-size:18px; color:var(--brown-dark); margin-bottom:16px; border-bottom:1px solid var(--border); padding-bottom:8px; }
.ingredient-item { display:flex; justify-content:space-between; padding:8px 0; border-bottom:1px solid rgba(212,176,122,.3); font-size:14px; }
.ingredient-item:last-child { border-bottom:none; }
.ingredient-name { color:var(--text); }
.ingredient-qty  { color:var(--gold); font-weight:600; }

/* ══════════════════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════════════════ */
.blog-layout { display:grid; grid-template-columns:1fr 300px; gap:48px; padding:60px 6%; }

.blog-filters-row {
  display:flex; gap:10px; flex-wrap:wrap; margin-bottom:32px;
}
.blog-pill {
  padding:8px 18px; border:1px solid var(--border);
  background:white; font-size:12px; letter-spacing:1px;
  text-transform:uppercase; color:var(--text); cursor:pointer; transition:all .2s;
}
.blog-pill:hover { border-color:var(--gold); color:var(--gold); }
.blog-pill.active { background:var(--gold); border-color:var(--gold); color:var(--brown-dark); font-weight:600; }

.blog-posts { display:flex; flex-direction:column; gap:28px; }
.blog-post-card {
  display:grid; grid-template-columns:200px 1fr; gap:0;
  border:1px solid var(--border); overflow:hidden;
  background:white; cursor:pointer; transition:all .3s;
}
.blog-post-card:hover { box-shadow:0 8px 32px rgba(122,74,30,.15); transform:translateX(4px); }
.blog-post-img {
  display:flex; align-items:center; justify-content:center;
  font-size:60px; min-height:180px;
}
.b-bg1{background:linear-gradient(135deg,#ffe0c0,#f0b070);}
.b-bg2{background:linear-gradient(135deg,#e0f0e0,#a0d0a0);}
.b-bg3{background:linear-gradient(135deg,#e0e8ff,#a0b0f0);}
.b-bg4{background:linear-gradient(135deg,#ffe0e8,#f0a0b0);}
.b-bg5{background:linear-gradient(135deg,#fff0c0,#f0d080);}
.blog-post-content { padding:24px; display:flex; flex-direction:column; justify-content:center; }
.blog-post-content .cat-tag {
  font-size:10px; letter-spacing:3px; text-transform:uppercase;
  color:var(--gold); margin-bottom:8px;
}
.blog-post-content h3 { font-size:20px; color:var(--brown-dark); margin-bottom:8px; line-height:1.3; }
.blog-post-content p  { font-size:14px; color:var(--text-light); line-height:1.7; margin-bottom:12px; }
.blog-post-meta { display:flex; align-items:center; gap:16px; font-size:12px; color:var(--text-light); }
.blog-post-meta .read-more { color:var(--gold); letter-spacing:1px; text-transform:uppercase; font-size:11px; }

/* Blog sidebar */
.blog-sidebar {}
.blog-sidebar-block { margin-bottom:32px; }
.blog-sidebar-title {
  font-family:'Playfair Display',serif; font-size:18px;
  color:var(--brown-dark); margin-bottom:14px;
  padding-bottom:8px; border-bottom:1px solid var(--border);
}
.sidebar-post { display:flex; gap:12px; margin-bottom:16px; cursor:pointer; }
.sidebar-post-img {
  width:64px; height:64px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:28px;
  background:var(--gold-pale);
}
.sidebar-post h5 { font-size:14px; color:var(--brown-dark); line-height:1.4; margin-bottom:4px; }
.sidebar-post .date { font-size:11px; color:var(--text-light); }

.tag-cloud { display:flex; flex-wrap:wrap; gap:8px; }
.tag-chip {
  padding:6px 14px; background:var(--gold-pale);
  color:var(--brown); font-size:12px; letter-spacing:1px;
  text-transform:uppercase; cursor:pointer; transition:all .2s;
}
.tag-chip:hover { background:var(--gold); color:var(--brown-dark); }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testimonial {
  background:white; border:1px solid var(--border);
  padding:32px; position:relative;
}
.testimonial::before {
  content:'"'; font-family:'Playfair Display',serif;
  font-size:80px; color:var(--gold-pale);
  position:absolute; top:8px; left:20px; line-height:1;
}
.testimonial p {
  font-family:'IM Fell English',serif; font-style:italic;
  font-size:16px; line-height:1.7; color:var(--text);
  position:relative; z-index:1; margin-bottom:20px;
}
.testimonial-author { display:flex; align-items:center; gap:12px; }
.author-avatar {
  width:44px; height:44px; border-radius:50%;
  background:var(--gold-pale); display:flex;
  align-items:center; justify-content:center;
  font-size:20px; border:2px solid var(--gold);
}
.author-name { font-weight:600; font-size:15px; color:var(--brown-dark); }
.author-loc  { font-size:12px; color:var(--text-light); }

/* ══════════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════════ */
.newsletter {
  background:linear-gradient(135deg,var(--gold) 0%,#a8740a 100%);
  padding:70px 6%; text-align:center; position:relative; overflow:hidden;
}
.newsletter::before {
  content:'❋'; position:absolute; font-size:300px;
  color:rgba(255,255,255,.08);
  left:50%; top:50%; transform:translate(-50%,-50%);
  pointer-events:none;
}
.newsletter h2 { font-size:clamp(28px,4vw,46px); color:var(--brown-dark); margin-bottom:12px; }
.newsletter p  { color:rgba(62,31,5,.7); font-size:18px; margin-bottom:32px; font-family:'IM Fell English',serif; font-style:italic; }
.newsletter-form { display:flex; max-width:500px; margin:0 auto; }
.newsletter-form input {
  flex:1; padding:14px 20px; border:none;
  font-family:'Cormorant Garamond',serif; font-size:15px;
  background:rgba(255,255,255,.9); color:var(--text); outline:none;
}
.newsletter-form button {
  background:var(--brown-dark); color:var(--gold-light);
  border:none; padding:14px 28px; font-size:14px;
  letter-spacing:2px; text-transform:uppercase; font-weight:600; transition:background .3s;
}
.newsletter-form button:hover { background:#1a0e05; }

/* ══════════════════════════════════════════════════════
   CATEGORIES GRID (home)
══════════════════════════════════════════════════════ */
.categories-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.cat-card { position:relative; overflow:hidden; cursor:pointer; border:1px solid var(--border); }
.cat-card-inner {
  padding:44px 28px; text-align:center; position:relative;
  transition:transform .4s;
  background:linear-gradient(160deg,var(--ivory),var(--cream));
}
.cat-card:hover .cat-card-inner { transform:translateY(-4px); }
.cat-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--gold),var(--turmeric),var(--spice-red));
  transform:scaleX(0); transition:transform .4s; transform-origin:left;
}
.cat-card:hover::before { transform:scaleX(1); }
.cat-emoji { font-size:44px; margin-bottom:14px; display:block; }
.cat-card h3 { font-size:20px; color:var(--brown-dark); margin-bottom:8px; }
.cat-card p  { color:var(--text-light); font-size:14px; line-height:1.6; margin-bottom:14px; }
.cat-count   { font-size:11px; letter-spacing:2px; color:var(--gold); text-transform:uppercase; }

/* ══════════════════════════════════════════════════════
   ABOUT BANNER (home section)
══════════════════════════════════════════════════════ */
.about-banner {
  background:linear-gradient(135deg,var(--brown-dark) 0%,#5a2d0c 100%);
  padding:100px 6%;
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
  position:relative; overflow:hidden;
}
.about-banner::before {
  content:'✦'; position:absolute; right:-40px; top:50%;
  transform:translateY(-50%) rotate(15deg);
  font-size:400px; color:rgba(201,151,58,.05); pointer-events:none;
}
.about-banner .about-text .section-tag { text-align:left; }
.about-banner .about-text h2 {
  font-size:clamp(28px,4vw,46px); color:var(--ivory); margin-bottom:20px;
}
.about-banner .about-text h2 em { color:var(--gold-light); font-style:italic; }
.about-banner .about-text p { color:rgba(245,234,216,.75); font-size:16px; line-height:1.85; margin-bottom:16px; }
.about-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:40px; }
.stat {
  text-align:center; padding:22px 12px;
  border:1px solid rgba(201,151,58,.3);
  background:rgba(201,151,58,.05);
}
.stat .num   { font-size:38px; color:var(--gold-light); display:block; }
.stat .label { font-size:11px; letter-spacing:2px; color:rgba(245,234,216,.6); text-transform:uppercase; }

/* ══════════════════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════════════════ */
.cart-overlay {
  position:fixed; inset:0; background:rgba(0,0,0,.55);
  z-index:3000; opacity:0; visibility:hidden; transition:all .3s;
}
.cart-overlay.open { opacity:1; visibility:visible; }

.cart-drawer {
  position:fixed; top:0; right:-440px; bottom:0;
  width:420px; max-width:100vw;
  background:var(--ivory); z-index:3001;
  transition:right .35s cubic-bezier(.4,0,.2,1);
  display:flex; flex-direction:column;
  border-left:2px solid var(--gold);
}
.cart-drawer.open { right:0; }

.cart-header {
  padding:20px 24px;
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between;
  background:var(--brown-dark);
}
.cart-header h3 {
  font-family:'Playfair Display',serif; font-size:22px; color:var(--ivory);
}
.cart-close {
  background:none; border:none; color:var(--gold-light);
  font-size:24px; line-height:1;
}

.cart-items { flex:1; overflow-y:auto; padding:16px 20px; }

.cart-empty {
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; height:200px; gap:12px;
  color:var(--text-light); font-size:16px; text-align:center;
}
.cart-empty .empty-icon { font-size:48px; }

.cart-item {
  display:grid; grid-template-columns:64px 1fr auto;
  gap:14px; align-items:center;
  padding:14px 0; border-bottom:1px solid var(--border);
}
.cart-item:last-child { border-bottom:none; }

.cart-item-img {
  width:64px; height:64px; background:var(--cream);
  display:flex; align-items:center; justify-content:center;
  font-size:30px; border:1px solid var(--border); flex-shrink:0;
}
.cart-item-name { font-size:15px; color:var(--brown-dark); font-weight:500; margin-bottom:4px; }
.cart-item-price { font-size:14px; color:var(--gold); font-weight:600; }

.cart-qty {
  display:flex; align-items:center; gap:0;
  border:1px solid var(--border); margin-top:8px; width:fit-content;
}
.cqty-btn {
  width:28px; height:28px; background:var(--cream);
  border:none; font-size:16px; color:var(--brown); transition:background .2s;
}
.cqty-btn:hover { background:var(--gold-pale); }
.cqty-num {
  width:34px; height:28px; display:flex; align-items:center;
  justify-content:center; font-size:14px; font-weight:600; color:var(--brown-dark);
  border-left:1px solid var(--border); border-right:1px solid var(--border);
}

.cart-item-remove {
  background:none; border:none; color:var(--text-light);
  font-size:18px; align-self:flex-start; padding:2px; transition:color .2s;
}
.cart-item-remove:hover { color:var(--spice-red); }

.cart-footer {
  padding:20px 24px;
  border-top:2px solid var(--border);
  background:var(--cream);
}
.cart-summary { margin-bottom:16px; }
.cart-row {
  display:flex; justify-content:space-between;
  padding:6px 0; font-size:15px; color:var(--text);
}
.cart-row.total {
  font-family:'Playfair Display',serif; font-size:20px;
  color:var(--brown-dark); font-weight:700;
  border-top:1px solid var(--border); margin-top:8px; padding-top:12px;
}
.cart-row.total span:last-child { color:var(--gold); }
.cart-checkout { width:100%; text-align:center; margin-bottom:10px; }
.cart-continue {
  width:100%; text-align:center; padding:12px;
  background:none; border:1px solid var(--border);
  font-family:'Cormorant Garamond',serif; font-size:13px;
  letter-spacing:2px; text-transform:uppercase; color:var(--text-light);
  transition:all .2s;
}
.cart-continue:hover { border-color:var(--gold); color:var(--gold); }

/* ══════════════════════════════════════════════════════
   AUTH MODAL (Login + Register)
══════════════════════════════════════════════════════ */
.modal-overlay {
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,.6); z-index:4000;
  align-items:center; justify-content:center;
}
.modal-overlay.open { display:flex; }

.modal-box {
  background:var(--ivory); width:480px; max-width:92vw;
  position:relative; border-top:3px solid var(--gold);
  max-height:90vh; overflow-y:auto;
}
.modal-close {
  position:absolute; top:14px; right:18px;
  background:none; border:none; font-size:22px; color:var(--text-light);
}

.auth-tabs {
  display:flex; border-bottom:1px solid var(--border);
}
.auth-tab {
  flex:1; padding:16px; text-align:center;
  font-family:'Playfair Display',serif; font-size:16px;
  color:var(--text-light); cursor:pointer;
  border-bottom:2px solid transparent; transition:all .25s;
  background:none; border-top:none; border-left:none; border-right:none;
}
.auth-tab.active {
  color:var(--brown-dark); border-bottom-color:var(--gold);
}

.auth-form { padding:32px 36px; display:none; }
.auth-form.active { display:block; }

.auth-form h3 {
  font-family:'Playfair Display',serif; font-size:26px;
  color:var(--brown-dark); margin-bottom:6px;
}
.auth-form .subtitle {
  font-family:'IM Fell English',serif; font-style:italic;
  color:var(--text-light); font-size:15px; margin-bottom:28px;
}

.form-group { margin-bottom:18px; }
.form-group label {
  display:block; font-size:11px; letter-spacing:2px;
  text-transform:uppercase; color:var(--text-light); margin-bottom:6px;
}
.form-group input, .form-group select {
  width:100%; padding:12px 16px;
  border:1px solid var(--border); background:white;
  font-family:'Cormorant Garamond',serif; font-size:16px;
  color:var(--text); outline:none; transition:border-color .3s;
}
.form-group input:focus { border-color:var(--gold); }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

.form-hint { font-size:12px; color:var(--text-light); margin-top:5px; }

.auth-submit {
  width:100%; margin-top:8px; margin-bottom:16px; text-align:center;
}
.auth-switch {
  text-align:center; font-size:14px; color:var(--text-light);
}
.auth-switch a { color:var(--gold); }

.divider-or {
  display:flex; align-items:center; gap:12px;
  margin:20px 0; color:var(--text-light); font-size:13px;
}
.divider-or::before,.divider-or::after {
  content:''; flex:1; height:1px; background:var(--border);
}

.social-auth { display:flex; gap:12px; }
.social-auth-btn {
  flex:1; padding:12px; border:1px solid var(--border);
  background:white; font-family:'Cormorant Garamond',serif;
  font-size:14px; color:var(--text); display:flex;
  align-items:center; justify-content:center; gap:8px;
  transition:border-color .2s;
}
.social-auth-btn:hover { border-color:var(--gold); }

.password-strength { height:4px; background:var(--border); margin-top:6px; border-radius:2px; overflow:hidden; }
.strength-bar { height:100%; width:0; transition:width .3s, background .3s; border-radius:2px; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer { background:var(--brown-dark); color:rgba(245,234,216,.7); padding:60px 6% 28px; }
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:44px; padding-bottom:40px;
  border-bottom:1px solid rgba(201,151,58,.2); margin-bottom:28px;
}

.footer-brand img { height:120px; filter:drop-shadow(0 2px 8px rgba(201,151,58,.5)); }
.footer-brand p   { font-size:14px; line-height:1.7; margin-bottom:20px; }
.social-links { display:flex; gap:10px; }
.social-btn {
  width:75px; height:72px; border:1px solid rgba(201,151,58,.4);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; transition:border-color .3s;
} 
.social-btn img{
  height: 100px;
  width: 100px;
}
.social-btn:hover { border-color:var(--gold); }
.footer-col h4 {
  font-family:'Playfair Display',serif; font-size:17px;
  color:var(--cream); margin-bottom:16px;
  padding-bottom:8px; border-bottom:1px solid rgba(201,151,58,.3);
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { color:rgba(245,234,216,.6); font-size:14px; transition:color .3s; }
.footer-col ul li a:hover { color:var(--gold-light); cursor: pointer; }
.footer-bottom { text-align:center; font-size:13px; color:rgba(245,234,216,.4); letter-spacing:1px; }
.footer-bottom span { color:var(--gold); }

/* ══════════════════════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════════════════════ */
.scroll-top {
  position:fixed; bottom:24px; right:24px;
  width:44px; height:44px;
  background:linear-gradient(135deg,var(--gold),var(--turmeric));
  border:none; display:flex; align-items:center;
  justify-content:center; font-size:20px;
  box-shadow:0 4px 16px rgba(0,0,0,.3); z-index:900;
  clip-path:polygon(50% 0%,100% 50%,50% 100%,0% 50%);
  transition:transform .3s; opacity:0; visibility:hidden;
}
.scroll-top.visible { opacity:1; visibility:visible; }
.scroll-top:hover { transform:scale(1.15); }

/* ══════════════════════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════════════════════ */
.toast-container {
  position:fixed; bottom:80px; left:50%;
  transform:translateX(-50%); z-index:5000;
  display:flex; flex-direction:column; gap:10px; align-items:center;
}
.toast {
  background:var(--brown-dark); color:var(--gold-light);
  padding:12px 24px; font-size:14px; letter-spacing:1px;
  border:1px solid var(--gold); white-space:nowrap;
  animation:toastIn .3s ease;
}
@keyframes toastIn { from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);} }

/* ══════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════ */
@keyframes float {
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}
@keyframes marquee {
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
@keyframes fadeInUp {
  from{opacity:0;transform:translateY(32px);}
  to{opacity:1;transform:translateY(0);}
}
.hero-content > * { animation:fadeInUp .75s ease both; }
.hero-content > *:nth-child(1){animation-delay:.1s;}
.hero-content > *:nth-child(2){animation-delay:.25s;}
.hero-content > *:nth-child(3){animation-delay:.4s;}
.hero-content > *:nth-child(4){animation-delay:.55s;}
.hero-content > *:nth-child(5){animation-delay:.7s;}

/* ══════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════════════════ */
.product-detail-container {
  padding:60px 6%;
}

.product-detail-main {
  display:grid; grid-template-columns:1fr 1fr; gap:60px;
  align-items:flex-start; margin-bottom:60px;
}

.product-detail-image {
  position:sticky; top:calc(var(--header-h) + 20px);
}

.product-image-large {
  height:500px; display:flex; align-items:center;
  justify-content:center; border:1px solid var(--border);
  background:var(--cream);
}

.product-image-content { width:100%; height:100%; display:flex; align-items:center; justify-content:center; }

.product-detail-info h1 {
  font-size:36px; color:var(--brown-dark); margin-bottom:12px;
}

.product-detail-info {
}

.product-rating {
  display:flex; align-items:center; gap:8px; margin-bottom:16px;
}

.product-origin {
  font-size:14px; color:var(--gold); letter-spacing:1px;
  margin-bottom:20px; padding-bottom:16px;
  border-bottom:1px solid var(--border);
}

.product-price-section {
  margin-bottom:28px;
}

.price-display {
  font-family:'Playfair Display',serif;
}

.price-current {
  font-size:42px; font-weight:700;
  color:var(--gold); display:block;
}

.price-original {
  font-size:18px; color:var(--text-light);
  text-decoration:line-through; margin-left:12px;
}

.product-description {
  font-size:16px; color:var(--text-light);
  line-height:1.8; margin-bottom:28px;
}

.product-details-specs {
  margin-bottom:28px;
  padding:20px; background:var(--cream);
  border:1px solid var(--border);
}

.product-details-specs h4 {
  font-size:16px; color:var(--brown-dark); margin-bottom:14px;
}

.specs-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}

.spec-item {
  display:flex; flex-direction:column; gap:4px;
}

.spec-label {
  font-size:11px; letter-spacing:2px;
  text-transform:uppercase; color:var(--text-light);
}

.spec-value {
  font-size:14px; color:var(--brown-dark);
}

.product-actions {
  display:grid; gap:12px; margin-bottom:28px;
}

.quantity-selector {
  display:flex; gap:0; border:1px solid var(--border); width:fit-content;
}

.qty-btn {
  width:38px; height:38px; background:var(--cream);
  border:none; font-size:20px; color:var(--brown);
  cursor:pointer; transition:background .2s;
}

.qty-btn:hover { background:var(--gold-pale); }

#productQty {
  width:50px; height:38px; border-left:1px solid var(--border);
  border-right:1px solid var(--border); background:white;
  text-align:center; font-size:16px; font-family:'Cormorant Garamond',serif;
  color:var(--brown-dark); outline:none;
}

.add-to-cart-btn {
  padding:14px 32px; font-size:14px;
}

.wishlist-btn-large {
  background:white; border:1px solid var(--border);
  padding:14px 36px; font-size:14px; color:var(--brown);
  letter-spacing:2px; text-transform:uppercase;
  transition:all .3s; cursor:pointer; font-family:inherit;
}

.wishlist-btn-large:hover { border-color:var(--gold); color:var(--gold); }

.wishlist-btn-large.active {
  background:var(--spice-red); border-color:var(--spice-red);
  color:white;
}

.shipping-info {
  display:flex; flex-direction:column; gap:12px;
  padding:20px; background:var(--ivory); border:1px solid var(--border);
}

.shipping-item {
  font-size:13px; color:var(--text-light);
  display:flex; align-items:center; gap:8px;
}

/* Product Tabs */
.product-tabs {
  margin-top:60px;
}

.tabs-header {
  display:flex; gap:0; border-bottom:2px solid var(--border);
  margin-bottom:40px;
}

.tab-btn {
  padding:16px 24px; background:none; border:none;
  font-family:'Playfair Display',serif; font-size:16px;
  color:var(--text-light); cursor:pointer;
  border-bottom:2px solid transparent;
  transition:all .3s; position:relative;
}

.tab-btn:hover { color:var(--brown-dark); }

.tab-btn.active {
  color:var(--brown-dark); border-bottom-color:var(--gold);
}

.tab-content {
  display:none;
}

.tab-content.active {
  display:block;
}

/* Reviews Section */
.reviews-section {
}

.review-summary {
  display:grid; grid-template-columns:200px 1fr; gap:40px;
  padding:30px; background:var(--cream); margin-bottom:32px;
  border:1px solid var(--border);
}

.summary-left {
  text-align:center;
}

.rating-large {
  font-family:'Playfair Display',serif; font-size:54px;
  color:var(--gold); margin-bottom:8px;
}

.rating-stars-large {
  font-size:22px; color:var(--gold); margin-bottom:8px;
}

.review-text {
  font-size:13px; color:var(--text-light); letter-spacing:1px;
}

.summary-right {
  display:flex; flex-direction:column; gap:12px;
}

.rating-bar {
  display:grid; grid-template-columns:40px 1fr 40px; gap:10px;
  align-items:center;
}

.bar-label {
  font-size:13px; color:var(--text); font-weight:600;
}

.progress-bar {
  height:6px; background:var(--border); border-radius:3px; overflow:hidden;
}

.progress-fill {
  height:100%; background:var(--gold); border-radius:3px;
  width:0; transition:width .3s;
}

.bar-count {
  font-size:13px; color:var(--text); text-align:right;
}

.reviews-list {
  display:flex; flex-direction:column; gap:24px;
}

.review-item {
  padding:24px; border:1px solid var(--border); background:white;
}

.review-header {
  display:flex; justify-content:space-between; align-items:flex-start;
  margin-bottom:12px;
}

.review-author {
  font-size:15px; color:var(--brown-dark); font-weight:600;
  margin-bottom:4px;
}

.review-rating {
  font-size:13px; color:var(--gold);
}

.review-date {
  font-size:12px; color:var(--text-light);
}

.review-title {
  font-size:16px; color:var(--brown-dark); font-weight:600;
  margin-bottom:8px;
}

.review-text {
  font-size:14px; color:var(--text-light); line-height:1.7;
}

/* Review Form */
.review-form-container {
}

.review-form-container h3 {
  font-family:'Playfair Display',serif; font-size:22px;
  color:var(--brown-dark);
}

.rating-input {
  display:flex; gap:8px; margin-bottom:12px;
}

.star-btn {
  background:none; border:1px solid var(--border); width:40px; height:40px;
  font-size:20px; color:var(--text-light); cursor:pointer;
  transition:all .2s; border-radius:4px;
}

.star-btn:hover { border-color:var(--gold); color:var(--gold); }

.star-btn.active { background:var(--gold); border-color:var(--gold); color:var(--brown-dark); }

#ratingSelected {
  display:block; margin-top:8px; font-size:13px;
  color:var(--text-light);
}

#reviewName, #reviewTitle, #reviewTextarea {
  width:100%; padding:12px 14px;
  border:1px solid var(--border); background:white;
  font-family:'Cormorant Garamond',serif; font-size:14px;
  color:var(--text); outline:none;
}

#reviewName:focus, #reviewTitle:focus, #reviewTextarea:focus {
  border-color:var(--gold);
}

.form-actions {
  display:flex; gap:12px; margin-top:20px;
}

.form-actions button {
  flex:1;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media(max-width:1200px){
  .products-grid{grid-template-columns:repeat(2,1fr);}
  .shop-layout{grid-template-columns:220px 1fr;gap:28px;}
  .product-detail-main{grid-template-columns:1fr;gap:40px;}
  .product-detail-image{position:static;}
}
@media(max-width:1024px){
  
  .main-nav{display:none;}
  .hamburger{display:flex;}
  .about-story{grid-template-columns:1fr;gap:40px;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px;}
  .blog-layout{grid-template-columns:1fr;}
  .shop-layout{grid-template-columns:1fr;}
  .shop-sidebar{position:static;display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
  .logo-img { height:175px; width:auto; }
}
@media(max-width:900px){
  /* Stack hero as a column, push content+spices to the bottom */
  .hero{
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-end;
  }

  /* Hero content sits near the bottom, above the spices */
  .hero-content{
    max-width:100%;
    padding: 0 6% 16px;
    margin-top:auto;
  }
  .hero-content h1{ margin-top:0; }

  /* Spice blobs sit just below the content, above the dots */
  .hero-spices{
    position:relative; right:auto; top:auto; transform:none;
    display:grid; grid-template-columns:repeat(4,1fr);
    gap:10px; padding:0 6% 56px; /* 56px leaves room above dots */
    width:100%;
  }
  .about-banner{grid-template-columns:1fr;gap:40px;}
  .categories-grid{grid-template-columns:repeat(2,1fr);}
  .features-strip{grid-template-columns:repeat(2,1fr);}
  .feature-item:nth-child(2){border-right:none;}
  /* .feature-item:nth-child(3){border-right:1px solid var(--border);} */
  .recipes-grid{grid-template-columns:repeat(2,1fr);}
  .testimonials-grid{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:1fr 1fr;}
  .values-grid{grid-template-columns:1fr 1fr;}
  .about-stats-row{grid-template-columns:repeat(2,1fr);}
  .search-wrap{display:none;}
  .recipe-detail-inner{grid-template-columns:1fr;}
  .logo-img  {
  height:130px; width:auto;
  
}
} /* close @media(max-width:900px) */
@media(max-width:600px){
  
  :root{--header-h:98px;}
  .hero-content{font-size: 50px;}
  .hero-content h1{margin-top: 0;}
  .hero-spices{grid-template-columns:repeat(2,1fr); gap:12px;}
  .spice-blob{width:clamp(80px,40vw,100px);height:clamp(80px,40vw,100px);}
  .categories-grid{grid-template-columns:1fr;}
  .products-grid{grid-template-columns:1fr 1fr;}
  .features-strip{grid-template-columns:1fr;}
  .feature-item{border-right:none;border-bottom:1px solid var(--border);}
  .feature-item:last-child{border-bottom:none;}
  .about-stats{grid-template-columns:repeat(3,1fr);}
  .about-stats-row{grid-template-columns:1fr 1fr;}
  .recipes-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;gap:24px;}
  .newsletter-form{flex-direction:column;}
  .newsletter-form input,.newsletter-form button{width:100%;}
  .hero-btns{flex-direction:column;}
  .blog-post-card{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:1fr;}
  .values-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .about-story{gap:28px;}
  .logo-img{height:130px;}
}
@media(max-width:400px){
  .hero-spices{grid-template-columns:repeat(2,1fr);}
  .spice-blob{width:clamp(70px,38vw,100px);height:clamp(70px,38vw,100px);}
}

/* ══════════════════════════════════════════════════════
   LUXURY ANIMATIONS — v2.0
   CSS transitions (not keyframes) for scroll-reveal so
   they work reliably on ALL pages and SPA route changes.
══════════════════════════════════════════════════════ */

/* ── Scroll-Reveal: hidden state ──────────────────────
   JS adds .lux-will-reveal + .lux-dir-* to elements.
   The element stays invisible until JS also adds .lux-seen,
   which triggers the CSS transition to visible.
────────────────────────────────────────────────────── */
.lux-will-reveal {
  transition:
    opacity  0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

/* hidden states per direction */
.lux-dir-up:not(.lux-seen)    { opacity:0; transform:translateY(38px); }
.lux-dir-left:not(.lux-seen)  { opacity:0; transform:translateX(-50px); }
.lux-dir-right:not(.lux-seen) { opacity:0; transform:translateX(50px); }
.lux-dir-scale:not(.lux-seen) { opacity:0; transform:scale(0.91); }
.lux-dir-fade:not(.lux-seen)  { opacity:0; }

/* revealed state — override everything */
.lux-will-reveal.lux-seen {
  opacity:1   !important;
  transform:none !important;
}

/* ── Stagger delays ───────────────────────────────────── */
.lux-d1 { transition-delay: 0.08s; }
.lux-d2 { transition-delay: 0.16s; }
.lux-d3 { transition-delay: 0.24s; }
.lux-d4 { transition-delay: 0.32s; }
.lux-d5 { transition-delay: 0.40s; }
.lux-d6 { transition-delay: 0.48s; }

/* ── Page-hero entrance (shop, about — CSS-only) ──────── */
.page-hero h1 {
  animation: _luxUp 0.85s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}
.page-hero > p {
  animation: _luxUp 0.85s cubic-bezier(0.22,1,0.36,1) 0.30s both;
}
.page-hero .breadcrumb {
  animation: _luxUp 0.80s cubic-bezier(0.22,1,0.36,1) 0.44s both;
}

/* ── Blog post hero (blog-post-*.html — CSS-only) ─────── */
.post-hero-ornament { animation: _luxFade 0.7s ease 0.1s both; }
.post-hero h1       { animation: _luxUp  1.0s cubic-bezier(0.22,1,0.36,1) 0.22s both; }
.post-hero-meta     { animation: _luxUp  0.8s cubic-bezier(0.22,1,0.36,1) 0.42s both; }

/* ── Section-tag gold shimmer ────────────────────────── */
.section-tag {
  display:inline-block;
  background:linear-gradient(
    90deg,
    var(--gold) 0%, var(--gold-light) 30%,
    #fff6df 50%, var(--gold-light) 70%,
    var(--gold) 100%
  );
  background-size:240% auto;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.section-tag.lux-seen {
  animation: _luxGoldSweep 3.5s linear infinite;
}

/* ── Section-title ornament lines draw in ─────────────── */
.title-ornament::before,
.title-ornament::after { transform:scaleX(0); transform-origin:center; }
.section-title.lux-seen .title-ornament::before {
  animation: _luxLineDraw 0.6s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
.section-title.lux-seen .title-ornament::after  {
  animation: _luxLineDraw 0.6s cubic-bezier(0.22,1,0.36,1) 0.45s both;
}

/* ── Auth modal entrance ─────────────────────────────── */
.modal-overlay.open .modal-box {
  animation: _luxModalIn 0.45s cubic-bezier(0.22,1,0.36,1) both;
}

/* ── Stat box entry pulse ────────────────────────────── */
.stat-box.lux-seen .num {
  animation: _luxUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}

/* ── Decorative hover micro-interactions ──────────────── */

/* Product card */
.product-card {
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

/* Shimmer-sweep across product image on hover */
.product-img { position:relative; overflow:hidden; }
.product-img::before {
  content:'';
  position:absolute; top:0; left:-80%; width:55%; height:100%;
  background:linear-gradient(to right, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
  transform:skewX(-18deg);
  z-index:2; pointer-events:none;
  opacity:0;
}
.product-card:hover .product-img::before {
  opacity:1;
  animation:_luxShimmer 0.65s ease forwards;
}

/* Value card */
.value-card {
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s ease;
}
.value-card:hover {
  transform:translateY(-7px);
  box-shadow:0 18px 52px rgba(122,74,30,.18);
  border-color:var(--gold);
}
.value-icon { transition:transform 0.4s cubic-bezier(0.34,1.56,0.64,1); display:inline-block; }
.value-card:hover .value-icon { transform:scale(1.18) rotate(6deg); }

/* Team card */
.team-card { transition:transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease; }
.team-card:hover { transform:translateY(-7px); box-shadow:0 18px 52px rgba(122,74,30,.18); }

/* Recipe card */
.recipe-card { transition:box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1); }

/* Feature item */
.feature-item { transition:transform 0.35s ease, box-shadow 0.35s ease; }
.feature-item:hover { transform:translateY(-5px); box-shadow:0 10px 30px rgba(201,151,58,.14); }
.feature-icon { transition:transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.feature-item:hover .feature-icon { transform:scale(1.14) rotate(8deg); }

/* Testimonial */
.testimonial {
  transition:transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}
.testimonial:hover {
  transform:translateY(-5px);
  box-shadow:0 14px 44px rgba(122,74,30,.15);
  border-color:var(--gold);
}

/* Stat box */
.stat-box { transition:transform 0.3s ease, box-shadow 0.3s ease; }
.stat-box:hover { transform:translateY(-4px); box-shadow:0 12px 36px rgba(201,151,58,.15); }

/* Btn gold ripple */
.btn-gold { position:relative; overflow:hidden; }
.btn-gold::before {
  content:''; position:absolute; top:50%; left:50%;
  width:0; height:0; background:rgba(255,255,255,.18); border-radius:50%;
  transform:translate(-50%,-50%);
  transition:width 0.55s ease, height 0.55s ease, opacity 0.55s ease;
  opacity:0; pointer-events:none;
}
.btn-gold:hover::before { width:340px; height:340px; opacity:1; }

/* Icon btn */
.icon-btn {
  transition:color 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.icon-btn:hover { transform:translateY(-3px); }

/* Search wrap focus */
.search-wrap { transition:border-color 0.3s ease, box-shadow 0.3s ease; }
.search-wrap:focus-within { border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,151,58,.15); }

/* Form inputs */
.form-group input:focus, .form-group textarea:focus,
#reviewName:focus, #reviewTitle:focus, #reviewTextarea:focus {
  border-color:var(--gold) !important;
  box-shadow:0 0 0 3px rgba(201,151,58,.1);
  outline:none;
}
.newsletter-form input:focus {
  box-shadow:0 0 0 3px rgba(201,151,58,.25);
  outline:none;
}

/* Review items */
.review-item { transition:border-color 0.3s ease, box-shadow 0.3s ease; }
.review-item:hover { border-color:var(--gold); box-shadow:0 6px 24px rgba(201,151,58,.1); }

/* About image frame */
.about-img-frame { transition:box-shadow 0.4s ease; }
.about-img-frame:hover { box-shadow:0 0 0 4px rgba(201,151,58,.15), 0 16px 48px rgba(201,151,58,.15); }

/* Social btn */
.social-btn { transition:border-color 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.social-btn:hover { transform:translateY(-3px); }

/* Tag chip / cat pill */
.tag-chip, .cat-pill {
  transition:background 0.25s ease, color 0.25s ease,
             transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.tag-chip:hover, .cat-pill:hover { transform:translateY(-2px); }

/* Footer col links */
.footer-col ul li a { transition:color 0.25s ease; display:inline-block; }

/* Product detail image */
.product-image-large { overflow:hidden; transition:box-shadow 0.4s ease; }
.product-image-large:hover { box-shadow:0 8px 36px rgba(201,151,58,.25); }
.product-image-large img { transition:transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.product-image-large:hover img { transform:scale(1.05); }

/* Marquee pause */
.marquee-strip:hover .marquee-track { animation-play-state:paused; }

/* Dropdown smooth */
.dropdown {
  transition:opacity 0.22s ease, transform 0.32s cubic-bezier(0.22,1,0.36,1),
             visibility 0.22s ease;
}

/* ── Shared Keyframes ─────────────────────────────────── */
@keyframes _luxUp {
  from { opacity:0; transform:translateY(38px); }
  to   { opacity:1; transform:none; }
}
@keyframes _luxFade {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes _luxGoldSweep {
  0%   { background-position:200% center; }
  100% { background-position:-200% center; }
}
@keyframes _luxLineDraw {
  from { transform:scaleX(0); }
  to   { transform:scaleX(1); }
}
@keyframes _luxModalIn {
  from { opacity:0; transform:scale(0.94) translateY(18px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}
@keyframes _luxShimmer {
  0%   { left:-80%; }
  100% { left:130%; }
}

/* ══════════════════════════════════════════════════════
   YOU MAY ALSO LIKE CAROUSEL — visual styles only
   (layout is handled via inline styles in main.js / HTML
    so nothing here can break the horizontal flex row)
══════════════════════════════════════════════════════ */

/* Hide the scrollbar in WebKit browsers for #ymalTrack */
#ymalTrack::-webkit-scrollbar { display: none; }

/* Arrow hover/active polish */
.ymal-arrow:hover {
  background: var(--gold) !important;
  color: #fff !important;
  transform: scale(1.1);
  box-shadow: 0 4px 18px rgba(201,151,58,0.3);
}
.ymal-arrow:active { transform: scale(0.97); }

/* Mobile: make cards 82vw so one peeks at edge */
@media (max-width: 560px) {
  #ymalTrack .product-card {
    flex: 0 0 82vw !important;
    width: 82vw !important;
    min-width: 82vw !important;
    max-width: 82vw !important;
  }
}

/* ══════════════════════════════════════════════════════
   PRODUCT PAGE — THUMBNAIL CAROUSEL (mobile)
══════════════════════════════════════════════════════ */

/* Desktop: wrapper is transparent — keeps existing vertical column layout */
.thumb-carousel-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.thumb-arrow {
  display: none !important; /* hidden on desktop */
}

@media (max-width: 768px) {

  /* Gallery becomes a single stacked column */
  .product-image-gallery {
    grid-template-columns: 1fr !important;
  }

  /* Wrapper flips to a horizontal row with arrows on each side */
  .thumb-carousel-wrap {
    flex-direction: row !important;
    align-items: center;
    gap: 4px;
    width: 100%;
  }

  /* Scrollable thumbnail track */
  .thumbnail-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 6px !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 4px 0;
  }
  .thumbnail-list::-webkit-scrollbar { display: none; }

  /* Thumbnails: bigger and never squeeze */
  .thumbnail-item {
    width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start;
  }

  /* Arrow buttons */
  .thumb-arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0 !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: var(--ivory);
    color: var(--brown-dark);
    font-size: 22px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    transition: background .2s, color .2s;
    z-index: 2;
  }
  .thumb-arrow:hover {
    background: var(--gold) !important;
    color: #fff !important;
  }
}
