/* ===================== ملورا - تم عسلی Liquid Glass ===================== */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&family=Lalezar&display=swap');

:root {
  --honey: #E8A317;
  --honey-deep: #C8860D;
  --gold: #F6B41A;
  --gold-light: #FFD66B;
  --amber-dark: #A85D00;
  --cream: #FFF8EC;
  --cream-2: #FDF1DC;
  --paper: #FFFDF8;
  --brown: #2E2009;
  --brown-soft: #6B5530;
  --bee: #1A1208;
  --glass: rgba(255, 252, 244, 0.55);
  --glass-border: rgba(255, 255, 255, 0.65);
  --shadow-honey: 0 18px 50px -18px rgba(168, 93, 0, 0.45);
  --shadow-soft: 0 10px 30px -12px rgba(168, 93, 0, 0.28);
  --radius: 22px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Vazirmatn', system-ui, sans-serif;
  background: var(--cream);
  color: var(--brown);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.75;
  min-height: 100vh;
}
::selection { background: var(--gold); color: var(--bee); }

/* اسکرول‌بار */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--honey), var(--honey-deep));
  border-radius: 20px; border: 3px solid var(--cream-2);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

/* ===================== بک‌گراند انیمیشنی ===================== */
#bg-canvas {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
}
.bg-gradient {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(1200px 600px at 80% -5%, rgba(255, 214, 107, 0.55), transparent 60%),
    radial-gradient(900px 500px at 10% 10%, rgba(232, 163, 23, 0.30), transparent 55%),
    radial-gradient(800px 800px at 50% 110%, rgba(255, 211, 110, 0.35), transparent 60%),
    linear-gradient(160deg, #FFF8EC 0%, #FDEFD3 55%, #FCE8C2 100%);
}
/* لکه‌های شناور honey blobs */
.blob {
  position: fixed; z-index: -1; border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  filter: blur(36px); opacity: 0.5; pointer-events: none;
  animation: blobFloat 18s var(--ease) infinite alternate;
}
.blob.b1 { width: 420px; height: 420px; top: 8%; right: -120px;
  background: radial-gradient(circle at 30% 30%, #FFD66B, #E8A317); }
.blob.b2 { width: 360px; height: 360px; top: 55%; left: -110px;
  background: radial-gradient(circle at 30% 30%, #FFCB52, #C8860D); animation-delay: -6s; }
.blob.b3 { width: 300px; height: 300px; bottom: 4%; right: 18%;
  background: radial-gradient(circle at 30% 30%, #FFE08A, #D98E04); animation-delay: -11s; }
@keyframes blobFloat {
  0% { transform: translate(0,0) scale(1) rotate(0deg); }
  100% { transform: translate(40px,-50px) scale(1.12) rotate(25deg); }
}

/* الگوی لانه‌زنبوری روی برخی بخش‌ها */
.honeycomb-bg { position: relative; }
.honeycomb-bg::before {
  content: ''; position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 18px, var(--amber-dark) 18px 19px),
    repeating-linear-gradient(60deg, transparent 0 18px, var(--amber-dark) 18px 19px),
    repeating-linear-gradient(-60deg, transparent 0 18px, var(--amber-dark) 18px 19px);
  background-size: 22px 38px;
}

/* ===================== کلاس‌های عمومی ===================== */
.container { width: min(1200px, 92%); margin-inline: auto; }
.glass {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}
.section { padding: 90px 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700;
  color: var(--amber-dark); font-size: 0.92rem; letter-spacing: 0.5px;
  background: rgba(232, 163, 23, 0.14); padding: 6px 16px; border-radius: 50px;
  border: 1px solid rgba(232, 163, 23, 0.3);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin: 16px 0 10px;
  color: var(--brown); line-height: 1.3;
}
.section-title .hl { color: var(--honey-deep); position: relative; }
.section-sub { color: var(--brown-soft); font-size: 1.05rem; max-width: 620px; }
.text-center { text-align: center; }
.center-block { margin-inline: auto; }

/* دکمه‌ها */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--honey-deep));
  color: #fff; box-shadow: var(--shadow-honey);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -16px rgba(168,93,0,.6); }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); transition: left .6s;
}
.btn-primary:hover::after { left: 130%; }
.btn-ghost {
  background: var(--glass); color: var(--brown); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,.8); }
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-block { width: 100%; }

/* ===================== نوار اعلان ===================== */
.announce {
  background: linear-gradient(90deg, var(--bee), #3a2a12);
  color: var(--gold-light); text-align: center; padding: 9px 12px;
  font-size: .88rem; font-weight: 500; position: relative; z-index: 60;
}

/* ===================== هدر ===================== */
header.nav {
  position: sticky; top: 0; z-index: 50; padding: 12px 0;
  transition: padding .3s, background .3s;
}
header.nav.scrolled { padding: 6px 0; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 10px 22px; border-radius: 50px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Lalezar'; font-size: 1.9rem; color: var(--honey-deep); }
.logo .bee-ico { width: 38px; height: 38px; }
.logo small { font-family: 'Vazirmatn'; font-size: .62rem; color: var(--brown-soft); font-weight: 600; letter-spacing: 1px; display:block; margin-top:-6px; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  padding: 9px 16px; border-radius: 50px; font-weight: 600; font-size: .96rem;
  color: var(--brown); transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(232,163,23,.16); color: var(--honey-deep); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--glass); border: 1px solid var(--glass-border); color: var(--brown);
  transition: transform .2s, background .2s; position: relative;
}
.icon-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.85); color: var(--honey-deep); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: -4px; left: -4px; min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--honey-deep); color: #fff; border-radius: 50px; font-size: .72rem;
  display: grid; place-items: center; font-weight: 700; border: 2px solid var(--cream);
}
.menu-toggle { display: none; }

/* ===================== هیرو ===================== */
.hero { position: relative; padding: 70px 0 60px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 50px;
  background: rgba(255,255,255,.6); border: 1px solid var(--glass-border); font-weight: 600;
  font-size: .9rem; color: var(--amber-dark); margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #3bbf6e; box-shadow: 0 0 0 0 #3bbf6e; animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(59,191,110,.6);} 70%{box-shadow:0 0 0 10px rgba(59,191,110,0);} 100%{box-shadow:0 0 0 0 rgba(59,191,110,0);} }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.18; font-weight: 900;
  color: var(--brown); letter-spacing: -1px; margin-bottom: 18px;
}
.hero h1 .drip {
  background: linear-gradient(135deg, var(--honey), var(--amber-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent; position: relative;
}
.hero p.lead { font-size: 1.18rem; color: var(--brown-soft); max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stats .stat b { font-size: 1.7rem; font-weight: 800; color: var(--honey-deep); font-family: 'Lalezar'; }
.hero-stats .stat span { display: block; font-size: .85rem; color: var(--brown-soft); }

/* شیشه‌ی عسل سه‌بعدی CSS */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 460px; }
.honey-jar {
  position: relative; width: 260px; height: 360px; animation: floaty 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(168,93,0,.4));
}
@keyframes floaty { 0%,100%{ transform: translateY(0) rotate(-1deg);} 50%{ transform: translateY(-22px) rotate(1deg);} }
.jar-ring {
  position: absolute; inset: -30px; border-radius: 50%;
  border: 2px dashed rgba(168,93,0,.35); animation: spin 26s linear infinite;
}
.jar-ring.r2 { inset: -60px; border-color: rgba(168,93,0,.18); animation-duration: 40s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.float-chip {
  position: absolute; padding: 10px 16px; border-radius: 16px; font-weight: 700; font-size: .85rem;
  background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 8px; color: var(--brown);
  animation: floaty 4s ease-in-out infinite;
}
.float-chip svg { width: 18px; height: 18px; color: var(--honey-deep); }
.float-chip.c1 { top: 6%; right: 0; animation-delay: -1s; }
.float-chip.c2 { bottom: 16%; left: -10px; animation-delay: -2.5s; }
.float-chip.c3 { top: 44%; right: -20px; animation-delay: -1.8s; }

/* موج پایین هیرو */
.hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; z-index: 1; }

/* ===================== نوار اعتماد ===================== */
.trust { padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: var(--radius-sm); }
.trust-item svg { width: 30px; height: 30px; color: var(--honey-deep); flex-shrink: 0; }
.trust-item b { display: block; font-size: .98rem; }
.trust-item span { font-size: .8rem; color: var(--brown-soft); }

/* ===================== کارت محصول ===================== */
.toolbar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 9px 18px; border-radius: 50px; font-weight: 600; font-size: .9rem;
  background: var(--glass); border: 1px solid var(--glass-border); color: var(--brown-soft);
  transition: all .2s;
}
.chip.active, .chip:hover { background: linear-gradient(135deg, var(--gold), var(--honey-deep)); color: #fff; border-color: transparent; }
.select-sort {
  padding: 10px 18px; border-radius: 50px; border: 1px solid var(--glass-border);
  background: var(--glass); color: var(--brown); font-family: inherit; font-weight: 600; cursor: pointer;
}

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  border-radius: var(--radius); overflow: hidden; position: relative;
  display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-honey); }
.pc-media {
  height: 200px; position: relative; display: grid; place-items: center; overflow: hidden;
}
.pc-media .jar-mini { width: 110px; filter: drop-shadow(0 14px 18px rgba(168,93,0,.35)); transition: transform .4s var(--ease); }
.product-card:hover .jar-mini { transform: scale(1.08) rotate(-3deg); }
.pc-media.has-photo { padding: 0; }
.pc-photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.product-card:hover .pc-photo { transform: scale(1.06); }
.pd-media .pc-photo-detail { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.pc-badges { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; z-index: 2; }
.pc-badge { padding: 4px 11px; border-radius: 50px; font-size: .72rem; font-weight: 700; color: #fff; background: var(--honey-deep); }
.pc-badge.discount { background: #d6453a; }
.pc-fav { position: absolute; top: 12px; left: 12px; z-index: 2; }
.pc-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; background: var(--paper); }
.pc-cat { font-size: .78rem; color: var(--amber-dark); font-weight: 700; }
.pc-name { font-size: 1.18rem; font-weight: 800; color: var(--brown); }
.pc-desc { font-size: .86rem; color: var(--brown-soft); flex: 1; }
.pc-meta { display: flex; align-items: center; justify-content: space-between; font-size: .82rem; color: var(--brown-soft); }
.pc-rating { display: flex; align-items: center; gap: 4px; color: var(--honey-deep); font-weight: 700; }
.pc-rating svg { width: 16px; height: 16px; }
.pc-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.pc-price b { font-size: 1.3rem; color: var(--brown); font-weight: 800; }
.pc-price b small { font-size: .75rem; font-weight: 600; color: var(--brown-soft); }
.pc-price .old { font-size: .85rem; color: #b08; text-decoration: line-through; color: #aa8; margin-right: 6px; }
.pc-add {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--honey-deep)); color: #fff;
  transition: transform .2s, box-shadow .2s; box-shadow: var(--shadow-soft);
}
.pc-add:hover { transform: scale(1.08) rotate(-4deg); }
.pc-add svg { width: 22px; height: 22px; }
.intensity-bar { display: flex; gap: 3px; }
.intensity-bar i { width: 14px; height: 5px; border-radius: 4px; background: rgba(168,93,0,.2); }
.intensity-bar i.on { background: var(--honey-deep); }

/* ===================== تست مزه ===================== */
.quiz-wrap { max-width: 720px; }
.quiz-card { padding: 40px; border-radius: 28px; position: relative; overflow: hidden; }
.quiz-progress { height: 8px; border-radius: 50px; background: rgba(168,93,0,.15); overflow: hidden; margin-bottom: 28px; }
.quiz-progress > i { display: block; height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--gold), var(--honey-deep)); transition: width .4s var(--ease); }
.quiz-step { display: none; animation: fadeUp .5s var(--ease); }
.quiz-step.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.quiz-q { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; color: var(--brown); }
.quiz-hint { color: var(--brown-soft); margin-bottom: 24px; }
.quiz-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.quiz-opt {
  padding: 18px 18px; border-radius: 18px; text-align: right; font-weight: 600; font-size: 1rem;
  background: rgba(255,255,255,.6); border: 2px solid var(--glass-border); color: var(--brown);
  transition: all .2s; display: flex; align-items: center; gap: 12px;
}
.quiz-opt:hover { border-color: var(--honey); transform: translateY(-2px); }
.quiz-opt.selected { border-color: var(--honey-deep); background: rgba(232,163,23,.14); }
.quiz-opt .emoji { font-size: 1.6rem; }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 26px; }
.quiz-result { text-align: center; }
.quiz-result .reco-jar { width: 150px; margin: 0 auto 16px; animation: floaty 4s ease-in-out infinite; }

/* ===================== پکیج هدیه ===================== */
.gift-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.gift-box-types { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.box-type {
  flex: 1; min-width: 130px; padding: 18px; border-radius: 18px; text-align: center; cursor: pointer;
  background: rgba(255,255,255,.55); border: 2px solid var(--glass-border); transition: all .2s;
}
.box-type.active { border-color: var(--honey-deep); background: rgba(232,163,23,.12); }
.box-type svg { width: 40px; height: 40px; color: var(--honey-deep); margin: 0 auto 8px; }
.box-type b { display: block; }
.box-type span { font-size: .82rem; color: var(--brown-soft); }
.gift-pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gift-pick {
  padding: 14px; border-radius: 16px; text-align: center; cursor: pointer; position: relative;
  background: rgba(255,255,255,.6); border: 2px solid transparent; transition: all .2s;
}
.gift-pick:hover { border-color: var(--honey); }
.gift-pick.picked { border-color: var(--honey-deep); background: rgba(232,163,23,.1); }
.gift-pick .check { position: absolute; top: 8px; left: 8px; width: 22px; height: 22px; border-radius: 50%; background: var(--honey-deep); color: #fff; display: none; place-items: center; }
.gift-pick.picked .check { display: grid; }
.gift-pick .mini-jar { width: 54px; margin: 0 auto 6px; }
.gift-pick b { font-size: .9rem; display: block; }
.gift-pick span { font-size: .8rem; color: var(--brown-soft); }
.gift-summary { padding: 26px; border-radius: 24px; position: sticky; top: 90px; }
.gift-preview-box {
  height: 160px; border-radius: 18px; margin-bottom: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--honey)); position: relative; overflow: hidden;
}
.gift-preview-box svg { width: 90px; height: 90px; color: #fff; filter: drop-shadow(0 6px 10px rgba(0,0,0,.2)); }
.gift-line { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed rgba(168,93,0,.2); font-size: .95rem; }
.gift-line.total { border: none; font-size: 1.3rem; font-weight: 800; color: var(--honey-deep); padding-top: 14px; }
.gift-msg-input { width: 100%; padding: 12px 14px; border-radius: 14px; border: 1px solid var(--glass-border); background: rgba(255,255,255,.7); font-family: inherit; resize: vertical; margin-bottom: 14px; }

/* ===================== زنبور راهنما ===================== */
.guide-bee {
  position: fixed; bottom: 26px; left: 26px; z-index: 80; width: 68px; height: 68px;
  cursor: pointer; animation: beeBob 3s ease-in-out infinite;
}
@keyframes beeBob { 0%,100%{ transform: translateY(0) rotate(-4deg);} 50%{ transform: translateY(-12px) rotate(4deg);} }
.guide-bee svg { width: 100%; height: 100%; filter: drop-shadow(0 8px 12px rgba(168,93,0,.4)); }
.guide-bee .pulse-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--honey); animation: pulseRing 2.5s ease-out infinite; }
@keyframes pulseRing { 0%{ transform: scale(.8); opacity: .8;} 100%{ transform: scale(1.6); opacity: 0;} }
.bee-bubble {
  position: fixed; bottom: 104px; left: 26px; z-index: 81; max-width: 320px; padding: 18px 20px;
  border-radius: 20px 20px 20px 4px; background: var(--paper); box-shadow: var(--shadow-honey);
  border: 1px solid var(--glass-border); transform: scale(.6) translateY(20px); opacity: 0;
  transform-origin: bottom left; transition: all .35s var(--ease); pointer-events: none;
}
.bee-bubble.show { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.bee-bubble h4 { color: var(--honey-deep); margin-bottom: 6px; display:flex; align-items:center; gap:8px; }
.bee-bubble p { font-size: .92rem; color: var(--brown-soft); margin-bottom: 12px; }
.bee-actions { display: flex; flex-direction: column; gap: 8px; }
.bee-action {
  padding: 10px 14px; border-radius: 12px; text-align: right; font-weight: 600; font-size: .9rem;
  background: rgba(232,163,23,.1); color: var(--brown); transition: all .2s; display:flex; align-items:center; gap:8px;
}
.bee-action:hover { background: rgba(232,163,23,.22); transform: translateX(-4px); }
.bee-close { position: absolute; top: 10px; left: 12px; color: var(--brown-soft); font-size: 1.1rem; }

/* ===================== فرآیند/مراحل ===================== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { padding: 28px 22px; border-radius: var(--radius); text-align: center; position: relative; transition: transform .3s; }
.step-card:hover { transform: translateY(-6px); }
.step-num { position: absolute; top: 14px; left: 18px; font-family: 'Lalezar'; font-size: 2.4rem; color: rgba(168,93,0,.15); }
.step-ico { width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; margin: 0 auto 16px; background: linear-gradient(135deg, var(--gold-light), var(--honey)); color: #fff; }
.step-ico svg { width: 32px; height: 32px; }
.step-card h3 { margin-bottom: 8px; }
.step-card p { font-size: .9rem; color: var(--brown-soft); }

/* ===================== نظرات ===================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { padding: 26px; border-radius: var(--radius); }
.review-stars { color: var(--gold); display: flex; gap: 2px; margin-bottom: 12px; }
.review-stars svg { width: 18px; height: 18px; }
.review-text { color: var(--brown-soft); margin-bottom: 16px; font-size: .96rem; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--honey-deep)); display: grid; place-items: center; color: #fff; font-weight: 800; }

/* ===================== خبرنامه/CTA ===================== */
.cta-band { border-radius: 32px; padding: 56px; text-align: center; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--bee), #3a2a12); color: var(--cream); }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; color: var(--gold-light); }
.cta-band p { color: rgba(255,248,236,.8); margin-bottom: 26px; max-width: 560px; margin-inline: auto; }
.newsletter { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter input { flex: 1; padding: 15px 20px; border-radius: 50px; border: none; font-family: inherit; font-size: 1rem; }

/* ===================== فوتر ===================== */
footer { padding: 60px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 30px; margin-bottom: 36px; }
.footer-col h4 { margin-bottom: 16px; color: var(--brown); }
.footer-col a, .footer-col p { display: block; color: var(--brown-soft); font-size: .92rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--honey-deep); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--glass); border: 1px solid var(--glass-border); }
.footer-social svg { width: 20px; height: 20px; }
.footer-seals { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.footer-seals:empty { display: none; }
.seal-box { background: #fff; border-radius: 14px; padding: 10px; box-shadow: var(--shadow-soft); display: inline-flex; align-items: center; justify-content: center; min-height: 64px; }
.seal-box:empty { display: none; }
.seal-box img { max-height: 90px; width: auto; border-radius: 6px; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(168,93,0,.15); color: var(--brown-soft); font-size: .88rem; }

/* ===================== وبلاگ ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-honey); }
.blog-cover { height: 180px; background: linear-gradient(135deg, var(--gold-light), var(--honey)); background-size: cover; background-position: center; display: grid; place-items: center; position: relative; color: #fff; }
.blog-cat { position: absolute; top: 12px; right: 12px; background: var(--bee); color: var(--gold-light); padding: 4px 12px; border-radius: 50px; font-size: .76rem; font-weight: 700; }
.blog-card-body { padding: 20px; background: var(--paper); flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-card-body h2 { font-size: 1.2rem; color: var(--brown); line-height: 1.5; }
.blog-card-body p { font-size: .9rem; color: var(--brown-soft); flex: 1; }
.blog-more { color: var(--honey-deep); font-weight: 700; font-size: .9rem; }

.post-body { font-size: 1.05rem; line-height: 2; color: var(--brown); }
.post-body h2 { font-size: 1.5rem; margin: 28px 0 12px; color: var(--honey-deep); }
.post-body h3 { font-size: 1.2rem; margin: 22px 0 10px; }
.post-body p { margin-bottom: 16px; }
.post-body ul, .post-body ol { margin: 0 22px 16px; }
.post-body li { margin-bottom: 6px; }
.post-body a { color: var(--honey-deep); text-decoration: underline; }
.post-body img { border-radius: var(--radius-sm); margin: 16px 0; }
.post-body blockquote { border-right: 4px solid var(--honey); background: rgba(232,163,23,.08); padding: 12px 18px; border-radius: 0 12px 12px 0; margin: 16px 0; }

.faq-item { border-radius: var(--radius-sm); padding: 0; margin-bottom: 12px; overflow: hidden; }
.faq-item summary { padding: 16px 20px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--honey-deep); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 20px 16px; color: var(--brown-soft); }
.crumbs a { color: var(--honey-deep); }

/* بخش وبلاگ در صفحه‌ی اصلی */
.blog-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===================== پنل کاربری ===================== */
.account-auth { max-width: 440px; margin: 0 auto; padding: 30px; border-radius: var(--radius); }
.auth-tabs { display: flex; gap: 8px; background: rgba(168,93,0,.08); border-radius: 14px; padding: 5px; margin-bottom: 22px; }
.auth-tab { flex: 1; padding: 11px; border-radius: 10px; font-weight: 700; color: var(--brown-soft); transition: all .2s; }
.auth-tab.active { background: linear-gradient(135deg, var(--gold), var(--honey-deep)); color: #fff; }
.auth-form h2 { font-size: 1.3rem; margin-bottom: 16px; }
.field-a { width: 100%; padding: 13px 16px; border-radius: 14px; border: 1px solid var(--glass-border); background: var(--cream); font-family: inherit; font-size: 1rem; color: var(--brown); }
.field-a:focus { outline: none; border-color: var(--honey); }
.account-hero { padding: 26px; border-radius: var(--radius); margin-bottom: 18px; }
.acc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.acc-stat { padding: 22px; border-radius: var(--radius-sm); text-align: center; }
.acc-stat b { font-size: 2rem; font-family: 'Lalezar'; display: block; color: var(--brown); }
.acc-stat span { color: var(--brown-soft); font-size: .88rem; }
.order-card { padding: 18px 20px; border-radius: var(--radius-sm); margin-bottom: 12px; }
.order-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.order-items { display: flex; gap: 8px; flex-wrap: wrap; color: var(--brown-soft); font-size: .9rem; margin-bottom: 12px; }
.order-items span { background: rgba(168,93,0,.08); padding: 4px 10px; border-radius: 50px; }
.order-bottom { display: flex; justify-content: space-between; border-top: 1px dashed rgba(168,93,0,.2); padding-top: 10px; }
.order-bottom b { color: var(--honey-deep); }
.verified-badge { font-size: .7rem; font-weight: 700; color: #1a9e5f; background: #d4f5e0; padding: 2px 8px; border-radius: 50px; margin-right: 6px; }
@media (max-width: 560px) { .acc-stats { grid-template-columns: 1fr; } }

/* ===================== سبد خرید (کشویی) ===================== */
.drawer-overlay { position: fixed; inset: 0; background: rgba(46,32,9,.45); backdrop-filter: blur(4px); z-index: 90; opacity: 0; visibility: hidden; transition: .3s; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; left: 0; height: 100%; width: min(420px, 90%); z-index: 91;
  background: var(--paper); box-shadow: 20px 0 60px rgba(0,0,0,.2); transform: translateX(-100%);
  transition: transform .4s var(--ease); display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(168,93,0,.15); }
.drawer-head h3 { display: flex; align-items: center; gap: 10px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px dashed rgba(168,93,0,.2); }
.cart-item .ci-jar { width: 56px; height: 56px; border-radius: 14px; background: var(--cream-2); display: grid; place-items: center; flex-shrink: 0; overflow: hidden; }
.cart-item .ci-jar svg { width: 36px; }
.cart-item .ci-jar img { width: 100%; height: 100%; object-fit: cover; }
.ci-info { flex: 1; }
.ci-info b { font-size: .98rem; }
.ci-info .ci-price { color: var(--honey-deep); font-weight: 700; font-size: .92rem; }
.ci-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.ci-qty button { width: 28px; height: 28px; border-radius: 8px; background: var(--cream-2); display: grid; place-items: center; font-weight: 700; }
.ci-remove { color: #c0392b; font-size: .82rem; }
.cart-empty { text-align: center; padding: 50px 20px; color: var(--brown-soft); }
.cart-empty svg { width: 80px; opacity: .5; margin: 0 auto 16px; }
.drawer-foot { padding: 22px; border-top: 1px solid rgba(168,93,0,.15); }
.coupon-row { display: flex; gap: 8px; margin-bottom: 14px; }
.coupon-row input { flex: 1; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--glass-border); font-family: inherit; }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: .92rem; color: var(--brown-soft); }
.cart-total-row.grand { font-size: 1.3rem; font-weight: 800; color: var(--brown); margin: 12px 0 18px; }

/* ===================== مودال ===================== */
.modal-overlay { position: fixed; inset: 0; background: rgba(46,32,9,.5); backdrop-filter: blur(5px); z-index: 100; display: none; place-items: center; padding: 20px; }
.modal-overlay.open { display: grid; animation: fadeIn .3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal { background: var(--paper); border-radius: 26px; width: min(560px, 100%); max-height: 90vh; overflow-y: auto; padding: 32px; position: relative; animation: fadeUp .4s var(--ease); }
.modal-close { position: absolute; top: 16px; left: 16px; width: 40px; height: 40px; border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; }
.modal h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 7px; font-size: .92rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border-radius: 14px; border: 1px solid var(--glass-border);
  background: var(--cream); font-family: inherit; font-size: 1rem; color: var(--brown); transition: border .2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--honey); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===================== توست ===================== */
#toast-zone { position: fixed; bottom: 26px; right: 26px; z-index: 120; display: flex; flex-direction: column; gap: 10px; }
.toast {
  padding: 14px 20px; border-radius: 14px; background: var(--bee); color: var(--cream);
  box-shadow: var(--shadow-honey); display: flex; align-items: center; gap: 10px; font-weight: 600;
  animation: toastIn .4s var(--ease); max-width: 340px;
}
.toast svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.toast.success svg { color: #5fd68a; }
.toast.error svg { color: #ff7a6b; }
@keyframes toastIn { from { transform: translateX(60px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===================== انیمیشن ورود اسکرول ===================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===================== ریسپانسیو ===================== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid, .steps-grid, .trust-grid, .blog-grid, .blog-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr !important; }
  .gift-layout { grid-template-columns: 1fr; }
  .gift-summary { position: static; }
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { min-height: 360px; order: -1; }
  .hero-cta, .hero-stats { justify-content: center; }
  .nav-links { display: none; position: absolute; top: 70px; right: 4%; left: 4%; flex-direction: column; padding: 16px; border-radius: 22px; background: var(--paper); box-shadow: var(--shadow-honey); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: grid; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .products-grid, .reviews-grid, .steps-grid, .trust-grid, .quiz-options, .gift-pick-grid, .blog-grid, .blog-teaser-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr !important; }
  .gift-pick-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 0; }
  .quiz-card { padding: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .guide-bee { width: 56px; height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
