/* ============================================================
   GBCook — Grandma Bundle Cook
   Design tokens
   Color: extracted from logo — deep chocolate, matte gold, cream
   Type:  Noto Serif Persian (display) + Vazirmatn (body/UI)
   Signature: hand-drawn "whisk swoosh" divider, echoing the logo
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&family=Noto+Serif:ital,wght@0,400;0,600;1,400&display=swap');
@font-face{
  font-family:'Noto Serif Persian';
  src: local('Noto Serif');
}

:root{
  /* colors, drawn from the uploaded logo */
  --white:      #ffffff;
  --cream:      #f8f2e6;
  --beige:      #efe2c9;
  --gold:       #b3872f;
  --gold-soft:  #d9b876;
  --brown:      #4a2c18;
  --brown-deep: #2c1a10;
  --brown-soft: #7a5233;
  --ink:        #2a1c12;

  --shadow-soft: 0 20px 45px -20px rgba(44, 26, 16, 0.25);
  --shadow-card: 0 12px 30px -14px rgba(44, 26, 16, 0.22);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --font-display: 'Vazirmatn', 'Noto Serif Persian', serif;
  --font-body: 'Vazirmatn', sans-serif;

  --ease: cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor: pointer; border:none; background:none; }
input, textarea, select{ font-family: inherit; }

.container{
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

section{ position: relative; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--brown-deep);
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before{
  content:'';
  width: 26px; height: 1px;
  background: var(--gold);
}

.lead{
  color: var(--brown-soft);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 400;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: all .45s var(--ease);
  white-space: nowrap;
}
.btn-gold{
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 70%);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(179,135,47,0.55);
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(179,135,47,.65); }
.btn-outline{
  border: 1px solid var(--brown-deep);
  color: var(--brown-deep);
  background: transparent;
}
.btn-outline:hover{ background: var(--brown-deep); color: var(--white); }
.btn-ghost{
  color: var(--brown-deep);
  border-bottom: 1px solid currentColor;
  border-radius:0;
  padding: 4px 2px;
}
.btn-sm{ padding: 10px 20px; font-size: 13px; }
.btn-block{ width:100%; }

/* ---------- header ---------- */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .4s var(--ease);
  background: rgba(248,242,230,0);
}
.site-header.scrolled{
  background: rgba(248,242,230,0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(74,44,24,.08);
  padding: 12px 0;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height: 44px; width:auto; transition: height .4s var(--ease); }
.scrolled .brand img{ height: 36px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text .en{ font-family: 'Noto Serif', serif; font-size: 18px; letter-spacing:.04em; color: var(--brown-deep); }
.brand-text .fa{ font-size: 11px; color: var(--gold); letter-spacing:.05em; }

.main-nav{ display:flex; align-items:center; gap: 36px; }
.main-nav a{
  font-size: 14.5px;
  font-weight: 500;
  color: var(--brown);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after{
  content:'';
  position:absolute; right:0; bottom:-2px; height:1px; width:0;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }
.main-nav a.active{ color: var(--gold); }

.header-actions{ display:flex; align-items:center; gap:16px; }
.icon-btn{
  width: 40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  color: var(--brown-deep);
  transition: all .3s var(--ease);
}
.icon-btn:hover{ background: var(--beige); color: var(--gold); }
.icon-btn svg{ width:19px; height:19px; }

.nav-toggle{ display:none; }

/* ---------- hero ---------- */
.hero{
  padding: 190px 0 120px;
  position:relative;
  overflow:hidden;
}
.hero-bg-ring{
  position:absolute; top:-260px; left:-220px; width:640px; height:640px;
  border:1px solid rgba(179,135,47,.28); border-radius:50%;
  pointer-events:none;
}
.hero-bg-ring.two{ top:auto; bottom:-320px; left:auto; right:-260px; width:520px; height:520px; border-color: rgba(74,44,24,.12); }
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items:center;
}
.hero h1{
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -.01em;
}
.hero h1 em{
  font-style: normal;
  color: var(--gold);
  position:relative;
}
.hero-slogan{
  margin: 26px 0 38px;
  max-width: 480px;
}
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-stats{
  display:flex; gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(74,44,24,.14);
}
.hero-stats .stat b{ display:block; font-family: var(--font-display); font-size: 26px; color:var(--brown-deep); }
.hero-stats .stat span{ font-size: 12.5px; color: var(--brown-soft); }

.hero-visual{ position:relative; }
.hero-plate{
  aspect-ratio: 1/1.05;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.5), transparent 45%),
    linear-gradient(155deg, var(--beige), var(--cream) 55%, #fff 100%);
  box-shadow: var(--shadow-soft);
  display:flex; align-items:center; justify-content:center;
  position:relative;
  overflow:hidden;
}
.hero-plate::before{
  content:'';
  position:absolute; inset:24px;
  border:1px dashed rgba(179,135,47,.35);
  border-radius: calc(var(--radius-lg) - 8px);
}
.hero-plate .logo-mark{ width: 46%; opacity:.94; filter: drop-shadow(0 18px 30px rgba(74,44,24,.18)); }
.hero-badge{
  position:absolute; bottom: -22px; right: -18px;
  background: var(--white);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display:flex; align-items:center; gap:12px;
  max-width: 230px;
}
.hero-badge .dot{ width:10px; height:10px; border-radius:50%; background: var(--gold); flex:none; }
.hero-badge small{ display:block; font-size:11px; color:var(--brown-soft); }
.hero-badge strong{ font-size: 13.5px; color: var(--brown-deep); }

/* ---------- whisk swoosh divider — signature element ---------- */
.swoosh{
  display:flex; align-items:center; justify-content:center;
  margin: 6px auto;
  width: 100%;
  max-width: 340px;
}
.swoosh svg{ width:100%; height:auto; overflow:visible; }
.swoosh path{
  fill:none; stroke: var(--gold); stroke-width: 1.4; stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.swoosh.in-view path{ stroke-dashoffset: 0; }
.swoosh .heart{
  fill: var(--gold); stroke:none;
  opacity:0; transform: scale(.4); transform-origin: center;
  transition: all .5s var(--ease) .9s;
}
.swoosh.in-view .heart{ opacity:1; transform: scale(1); }

/* ---------- section titles ---------- */
.section-head{
  max-width: 640px;
  margin: 0 auto 56px;
  text-align:center;
}
.section-head.left{ margin: 0 0 48px; text-align: right; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); }
.section-head p{ margin-top: 16px; }

.pad{ padding: 110px 0; }
.pad-sm{ padding: 70px 0; }
.bg-white{ background: var(--white); }
.bg-brown{ background: var(--brown-deep); color: var(--cream); }
.bg-brown h2, .bg-brown h3, .bg-brown h4{ color: var(--cream); }
.bg-beige{ background: var(--beige); }

/* ---------- product cards ---------- */
.grid{ display:grid; gap: 30px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }

.card-product{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display:flex; flex-direction:column;
}
.card-product:hover{ transform: translateY(-8px); box-shadow: 0 26px 50px -20px rgba(44,26,16,.3); }
.card-media{
  aspect-ratio: 4/3.2;
  position:relative;
  overflow:hidden;
  background: linear-gradient(150deg, var(--beige), var(--cream));
}
.card-media .icon-plate{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  transition: transform .7s var(--ease);
}
.card-product:hover .icon-plate{ transform: scale(1.08) rotate(-2deg); }
.card-media svg{ width: 42%; height:42%; color: var(--gold); opacity:.85; }
.card-tag{
  position:absolute; top:14px; left:14px;
  background: rgba(255,255,255,.92);
  color: var(--brown-deep);
  font-size:11.5px; font-weight:600;
  padding: 6px 12px; border-radius: 999px;
  letter-spacing:.02em;
}
.card-body{ padding: 22px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.card-body h3{ font-size: 19px; }
.card-body p{ color: var(--brown-soft); font-size: 14px; line-height:1.8; margin:0; flex:1; }
.card-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:10px; }
.price{ font-family: var(--font-display); font-weight:700; color: var(--gold); font-size: 17px; }
.price small{ font-size:12px; color: var(--brown-soft); font-weight:400; }

/* ---------- why us / features ---------- */
.feature{
  text-align:center;
  padding: 34px 20px;
}
.feature .ico{
  width: 70px; height:70px; margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid rgba(179,135,47,.35);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold);
  transition: all .4s var(--ease);
}
.feature:hover .ico{ background: var(--gold); color: var(--white); transform: translateY(-4px); }
.feature .ico svg{ width:28px; height:28px; }
.feature h4{ font-size:17px; margin-bottom:10px; }
.feature p{ color: var(--brown-soft); font-size:13.5px; line-height:1.8; margin:0; }

/* ---------- gallery ---------- */
.gallery{
  columns: 4 220px;
  column-gap: 22px;
}
.gallery figure{
  margin: 0 0 22px;
  break-inside: avoid;
  border-radius: var(--radius-md);
  overflow:hidden;
  position:relative;
  box-shadow: var(--shadow-card);
}
.gallery .ph{
  width:100%;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(160deg, var(--beige), var(--cream));
  color: var(--gold);
}
.gallery .ph svg{ width:34%; opacity:.8; }
.gallery figure::after{
  content: attr(data-label);
  position:absolute; inset:auto 0 0 0;
  padding: 14px 16px;
  font-size:13px; color:#fff; font-weight:600;
  background: linear-gradient(0deg, rgba(44,26,16,.75), transparent);
  opacity:0; transform: translateY(10px);
  transition: all .4s var(--ease);
}
.gallery figure:hover::after{ opacity:1; transform: translateY(0); }
.gallery figure:hover .ph{ transform: scale(1.06); }
.gallery .ph{ transition: transform .6s var(--ease); }

/* ---------- about / story ---------- */
.story{
  display:grid; grid-template-columns: .9fr 1.1fr; gap:70px; align-items:center;
}
.story-visual{
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.6), transparent 50%), linear-gradient(160deg, var(--brown-deep), #5a3820);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-soft);
}
.story-visual img{ width:52%; filter: brightness(0) invert(1); opacity:.92; }
.story-text p{ margin: 0 0 18px; }
.quote{
  border-right: 3px solid var(--gold);
  padding-right: 22px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--brown-deep);
  line-height:1.9;
}

/* ---------- reviews ---------- */
.review-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
}
.review-card .stars{ color: var(--gold); font-size:14px; letter-spacing:2px; margin-bottom:14px; }
.review-card p{ color: var(--brown); font-size:14.5px; line-height:1.9; margin:0 0 18px; }
.review-who{ display:flex; align-items:center; gap:12px; }
.review-avatar{
  width:42px; height:42px; border-radius:50%;
  background: linear-gradient(140deg, var(--gold-soft), var(--gold));
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700;
}
.review-who b{ display:block; font-size:14px; }
.review-who span{ font-size:12px; color: var(--brown-soft); }

/* ---------- instagram strip ---------- */
.insta-strip{ display:grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.insta-tile{
  aspect-ratio: 1/1; border-radius: 16px; overflow:hidden; position:relative;
  background: linear-gradient(150deg, var(--beige), var(--cream));
  display:flex; align-items:center; justify-content:center;
  color: var(--gold);
}
.insta-tile svg{ width:32%; opacity:.75; transition: transform .5s var(--ease); }
.insta-tile:hover svg{ transform: scale(1.15) rotate(4deg); }

/* ---------- order / CTA band ---------- */
.order-band{
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brown-deep), #5a3820);
  padding: 64px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 40px;
  color: var(--cream);
  position:relative;
  overflow:hidden;
}
.order-band::before{
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(circle at 85% 20%, rgba(217,184,118,.18), transparent 55%);
}
.order-band h3{ font-size: clamp(24px,3vw,32px); color:#fff; max-width:480px; }
.order-band p{ color: rgba(248,242,230,.75); margin-top:10px; }
.order-actions{ display:flex; gap:14px; flex-wrap:wrap; position:relative; z-index:1; }

/* ---------- footer ---------- */
.site-footer{ background: var(--brown-deep); color: rgba(248,242,230,.8); padding: 70px 0 26px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; margin-bottom: 50px; }
.footer-brand img {
    width: 110px;
    height: auto;
    object-fit: contain;
    margin-bottom: 18px;
    filter: none;
    opacity: 1;
}
.footer-brand p{ font-size:13.5px; line-height:1.9; color: rgba(248,242,230,.6); max-width:280px; }
.site-footer h5{ color:#fff; font-size:14.5px; margin-bottom:20px; font-family: var(--font-display); }
.site-footer li{ margin-bottom:12px; font-size:13.5px; }
.site-footer a:hover{ color: var(--gold-soft); }
.footer-social{ display:flex; gap:12px; margin-top:18px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(248,242,230,.25);
  display:flex; align-items:center; justify-content:center;
  transition: all .3s var(--ease);
}
.footer-social a:hover{ background: var(--gold); border-color: var(--gold); }
.footer-social svg{ width:16px; height:16px; }
.footer-bottom{
  border-top: 1px solid rgba(248,242,230,.14);
  padding-top: 24px;
  display:flex; justify-content:space-between; align-items:center;
  font-size:12.5px; color: rgba(248,242,230,.5);
  flex-wrap:wrap; gap:10px;
}

/* ---------- back to top ---------- */
.back-top{
  position:fixed; left:24px; bottom:24px; z-index:90;
  width:48px; height:48px; border-radius:50%;
  background: var(--brown-deep); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-card);
  opacity:0; visibility:hidden; transform: translateY(10px);
  transition: all .4s var(--ease);
}
.back-top.show{ opacity:1; visibility:visible; transform:none; }
.back-top:hover{ background: var(--gold); }
.back-top svg{ width:18px; height:18px; }

/* ---------- loader ---------- */
.loader{
  position:fixed; inset:0; z-index:999;
  background: var(--cream);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.done{ opacity:0; visibility:hidden; }
.loader-mark{ width:96px; animation: pulseLoader 1.4s ease-in-out infinite; }
@keyframes pulseLoader{ 0%,100%{ transform: scale(1); opacity:1;} 50%{ transform: scale(.92); opacity:.7;} }

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform: translateY(28px); transition: all .9s var(--ease); }
.reveal.in-view{ opacity:1; transform:none; }
.reveal-delay-1{ transition-delay:.1s; }
.reveal-delay-2{ transition-delay:.2s; }
.reveal-delay-3{ transition-delay:.3s; }
.reveal-delay-4{ transition-delay:.4s; }

/* ---------- breadcrumb / page hero (inner pages) ---------- */
.page-hero{
  padding: 170px 0 80px;
  text-align:center;
  position:relative;
}
.page-hero .eyebrow{ justify-content:center; }
.page-hero .eyebrow::before, .page-hero .eyebrow::after{ content:''; width:26px; height:1px; background:var(--gold); }
.page-hero h1{ font-size: clamp(32px,4.4vw,50px); }
.breadcrumb{ margin-top:14px; font-size:13px; color: var(--brown-soft); }
.breadcrumb a:hover{ color: var(--gold); }

/* ---------- forms ---------- */
.form-field{ margin-bottom: 22px; }
.form-field label{ display:block; font-size:13.5px; font-weight:600; margin-bottom:8px; color: var(--brown-deep); }
.form-field input, .form-field textarea, .form-field select{
  width:100%; padding: 14px 16px;
  border: 1px solid rgba(74,44,24,.18);
  border-radius: 12px;
  background: var(--white);
  font-size:14.5px; color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{
  outline:none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(179,135,47,.14);
}
.form-field textarea{ min-height:130px; resize: vertical; }
.form-note{ font-size:12.5px; color: var(--brown-soft); margin-top:8px; }

/* ---------- category pills / search ---------- */
.toolbar{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; margin-bottom: 44px; }
.pills{ display:flex; gap:10px; flex-wrap:wrap; }
.pill{
  padding: 10px 20px; border-radius:999px; font-size:13.5px; font-weight:600;
  border:1px solid rgba(74,44,24,.18); color: var(--brown);
  transition: all .3s var(--ease);
}
.pill.active, .pill:hover{ background: var(--brown-deep); color:#fff; border-color: var(--brown-deep); }
.search-box{
  display:flex; align-items:center; gap:10px;
  border:1px solid rgba(74,44,24,.18); border-radius:999px;
  padding: 10px 18px; min-width: 240px; background:#fff;
}
.search-box input{ border:none; outline:none; flex:1; font-size:13.5px; background:transparent; }
.search-box svg{ width:16px; height:16px; color: var(--brown-soft); flex:none; }

/* ---------- FAQ accordion ---------- */
.faq-item{
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow-card);
  margin-bottom:16px; overflow:hidden;
}
.faq-q{
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 26px; font-weight:600; font-size:15px; color: var(--brown-deep);
}
.faq-q svg{ width:18px; height:18px; color: var(--gold); transition: transform .4s var(--ease); flex:none; }
.faq-item.open .faq-q svg{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .5s var(--ease); }
.faq-a p{ padding: 0 26px 24px; color: var(--brown-soft); font-size:14px; line-height:1.9; margin:0; }

/* ---------- product detail ---------- */
.product-hero{ display:grid; grid-template-columns: .95fr 1.05fr; gap:60px; align-items:start; }
.product-gallery-main{
  aspect-ratio: 1/1; border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--beige), var(--cream));
  display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-soft);
  margin-bottom:18px;
}
.product-gallery-main svg{ width:36%; color: var(--gold); }
.product-thumbs{ display:grid; grid-template-columns: repeat(4,1fr); gap:14px; }
.product-thumbs .th{
  aspect-ratio:1/1; border-radius:12px; background: var(--white); box-shadow: var(--shadow-card);
  display:flex; align-items:center; justify-content:center; color: var(--gold); cursor:pointer;
  border: 2px solid transparent; transition: all .3s var(--ease);
}
.product-thumbs .th.active, .product-thumbs .th:hover{ border-color: var(--gold); }
.product-thumbs svg{ width:44%; }

.product-info h1{ font-size: clamp(28px,3.4vw,38px); margin-bottom:14px; }
.product-price{ font-family: var(--font-display); font-size:26px; color: var(--gold); font-weight:700; margin: 6px 0 22px; }
.product-meta{ display:flex; gap:26px; margin: 24px 0; flex-wrap:wrap; }
.product-meta div{ font-size:13px; color: var(--brown-soft); }
.product-meta b{ display:block; color: var(--brown-deep); font-size:15px; margin-bottom:4px; }
.tag-list{ display:flex; flex-wrap:wrap; gap:10px; margin: 20px 0 28px; }
.tag-list span{ background: var(--beige); color: var(--brown-deep); font-size:12.5px; padding:8px 16px; border-radius:999px; }
.product-actions{ display:flex; gap:14px; margin-top: 10px; }

.detail-tabs{ display:flex; gap:34px; border-bottom:1px solid rgba(74,44,24,.14); margin: 90px 0 34px; }
.detail-tab{ padding-bottom:16px; font-weight:600; color: var(--brown-soft); position:relative; }
.detail-tab.active{ color: var(--brown-deep); }
.detail-tab.active::after{ content:''; position:absolute; right:0; bottom:-1px; height:2px; width:100%; background: var(--gold); }
.detail-panel{ display:none; }
.detail-panel.active{ display:block; }
.detail-panel p{ color: var(--brown-soft); line-height:2; max-width: 760px; }
.ingredient-list{ display:grid; grid-template-columns: repeat(2,1fr); gap: 14px; max-width:640px; }
.ingredient-list li{ display:flex; align-items:center; gap:10px; font-size:14px; color: var(--brown); }
.ingredient-list li::before{ content:''; width:6px; height:6px; border-radius:50%; background: var(--gold); flex:none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px){
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .insta-strip{ grid-template-columns: repeat(3,1fr); }
  .story, .product-hero{ grid-template-columns: 1fr; }
}
@media (max-width: 860px){
  .main-nav{
    display:none;
    position:absolute; top:100%; right:20px; left:20px;
    background: var(--white); border-radius: 18px;
    box-shadow: var(--shadow-card);
    flex-direction:column; align-items:flex-start; gap:2px;
    padding: 14px 22px;
  }
  .main-nav.mobile-open{ display:flex; }
  .main-nav a{ width:100%; padding:12px 0; border-bottom:1px solid rgba(74,44,24,.08); }
  .main-nav a:last-child{ border-bottom:none; }
  .nav-toggle{ display:flex; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero{ padding-top:150px; }
  .order-band{ flex-direction:column; text-align:center; padding: 44px 30px; }
  .gallery{ columns: 2 180px; }
}
@media (max-width: 620px){
  .container{ padding: 0 20px; }
  .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; }
  .insta-strip{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr; gap:34px; }
  .toolbar{ flex-direction:column; align-items:stretch; }
  .ingredient-list{ grid-template-columns:1fr; }
}
