/* ============================================================
   Laimon Fresh Iran — limonfreshir  ·  Amaj Shaygan Aras
   Palette: Persian emerald + teal + gold accents
   Distinct from the Iraq site (dark-green/lime)
   ============================================================ */
:root {
  --emerald:    #0a5a3c;
  --emerald-dk: #073d29;
  --emerald-ink:#052a1c;
  --teal:       #1f8a70;
  --teal-lt:    #37b89a;
  --gold:       #c9a24b;
  --gold-lt:    #e4c877;
  --lime:       #a6d71c;
  --mist:       #eaf6ee;
  --paper:      #f6fbf7;
  --white:      #ffffff;
  --ink:        #08281c;

  --font-fa: "Vazirmatn", "Fredoka", sans-serif;
  --font-lat: "Fredoka", "Vazirmatn", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-lat);
  background: var(--emerald);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
html[lang="fa"] body { font-family: var(--font-fa); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
section { position: relative; z-index: 2; scroll-margin-top: 82px; }

/* Persian tile pattern — subtle luxury texture */
.tile-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .05;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(-45deg, var(--gold) 0 1px, transparent 1px 22px);
}

/* ---------- preloader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 999; display: grid; place-items: center;
  background: radial-gradient(120% 90% at 50% 40%, var(--teal), var(--emerald-ink));
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { display: grid; justify-items: center; gap: 24px; }
.loader-inner img { height: 46px; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.55;transform:scale(.97)} 50%{opacity:1;transform:scale(1.03)} }
.loader-bar { width: 190px; height: 3px; border-radius: 999px; background: rgba(255,255,255,.16); overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 40%; border-radius: 999px; background: var(--gold-lt); animation: slide 1.25s ease-in-out infinite; }
@keyframes slide { 0%{transform:translateX(-110%)} 100%{transform:translateX(320%)} }

/* ---------- bubbles ---------- */
#bubbles { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 6; pointer-events: none; opacity: .7; }

/* ---------- header ---------- */
header {
  position: fixed; top: 0; inset-inline: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 48px); transition: background .4s, box-shadow .4s;
}
header.scrolled { background: rgba(7,61,41,.85); backdrop-filter: blur(14px); box-shadow: 0 2px 24px rgba(0,0,0,.28); }
.logo img { height: 40px; }
nav.main-nav { display: flex; gap: clamp(10px, 1.9vw, 24px); font-weight: 500; font-size: .95rem; }
nav.main-nav a { opacity: .85; transition: opacity .2s, color .2s; white-space: nowrap; }
nav.main-nav a:hover { opacity: 1; color: var(--gold-lt); }
.lang-switch { position: relative; }
.lang-switch .current {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: var(--white);
  border-radius: 999px; padding: 7px 16px; font-family: inherit; font-size: .9rem; cursor: pointer;
}
.lang-menu {
  position: absolute; top: calc(100% + 8px); inset-inline-end: 0;
  background: var(--white); color: var(--emerald-ink); border-radius: 14px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.3); display: none; min-width: 168px;
}
.lang-menu.open { display: block; }
.lang-menu button { display: flex; align-items: center; gap: 9px; width: 100%; padding: 10px 18px; border: 0; background: none; font-family: inherit; font-size: .95rem; cursor: pointer; text-align: start; }
.lang-menu button:hover { background: var(--mist); }
.lang-menu button.active { color: var(--emerald); font-weight: 600; }
.lang-flag { width: 22px; height: 15px; border-radius: 3px; overflow: hidden; flex: none; box-shadow: 0 0 0 1px rgba(0,0,0,.12); }
.lang-flag svg { width: 100%; height: 100%; display: block; }

/* ---------- shared ---------- */
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 14px; }
html[lang="fa"] .eyebrow { letter-spacing: 0; }
h1, h2 { font-weight: 600; line-height: 1.14; }
h2 { font-size: clamp(1.9rem, 4.6vw, 3.3rem); }
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 13px 30px; font-weight: 600; font-size: 1rem; transition: transform .25s var(--ease), box-shadow .25s; cursor: pointer; border: 0; font-family: inherit; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-lt), var(--gold)); color: var(--emerald-ink); box-shadow: 0 8px 30px rgba(201,162,75,.4); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: var(--gold-lt); color: var(--gold-lt); }

/* floating fruit elements */
.el { position: absolute; z-index: 1; pointer-events: none; user-select: none; filter: drop-shadow(0 20px 30px rgba(0,0,0,.4)); animation: elf 9s ease-in-out infinite; }
@keyframes elf { 0%,100%{transform:translateY(0) rotate(var(--rot,0deg))} 50%{transform:translateY(-18px) rotate(calc(var(--rot,0deg) + 4deg))} }

/* ---------- HERO (big image + video clip) ---------- */
.hero-stage { min-height: 100vh; position: relative; }
.hero-pin {
  position: relative; min-height: 100vh; min-height: 100dvh; display: grid; place-items: center; overflow: hidden;
  padding: 100px clamp(20px, 5vw, 70px) 60px;
  background: radial-gradient(120% 90% at 50% 42%, var(--teal) 0%, var(--emerald) 52%, var(--emerald-dk) 100%);
}
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 60px); align-items: center; max-width: 1240px; width: 100%; }
.hero-copy { text-align: start; }
.hero-copy h1 { font-size: clamp(2.3rem, 5.4vw, 4.6rem); text-shadow: 0 6px 40px rgba(0,0,0,.4); }
.hero-copy h1 .accent { color: var(--gold-lt); display: block; }
.hero-copy p { margin: 22px 0 32px; max-width: 500px; font-size: clamp(1rem, 2vw, 1.18rem); opacity: .95; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; gap: 20px; }
.hero-can { width: clamp(180px, 24vw, 340px); filter: drop-shadow(0 40px 60px rgba(0,0,0,.5)); animation: canFloat 5s ease-in-out infinite; }
@keyframes canFloat { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-20px) rotate(2deg)} }
.hero-clip { width: clamp(150px, 20vw, 260px); aspect-ratio: 9/16; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.45); border: 3px solid rgba(255,255,255,.15); }
.hero-clip video { width: 100%; height: 100%; object-fit: cover; }
.hero-el-1 { --rot:-14deg; width: clamp(100px,11vw,180px); top: 10%; inset-inline-start: 3%; }
.hero-el-2 { --rot:16deg; width: clamp(90px,10vw,150px); bottom: 12%; inset-inline-start: 8%; animation-delay: -3s; }
@media (max-width: 920px){
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { text-align: center; } .hero-copy p { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-clip { display: none; }
  .hero-el-1, .hero-el-2 { opacity: .6; }
}
#canCanvas { position: absolute; inset: 0; width: 100%; height: 100%;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 62%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 50%, #000 62%, transparent 78%); }
.can-fallback { position: absolute; inset: 0; }
.can-fallback img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity .12s linear; }
.scroll-hint { position: absolute; bottom: 5vh; inset-inline-start: 50%; transform: translateX(-50%); z-index: 3; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; opacity: .7; display: flex; flex-direction: column; align-items: center; gap: 8px; }
html[lang="fa"] .scroll-hint { letter-spacing: .04em; }
.scroll-hint::after { content: ""; width: 2px; height: 44px; background: linear-gradient(var(--gold-lt), transparent); animation: drip 1.6s infinite; }
@keyframes drip { 0%{transform:scaleY(0);transform-origin:top} 60%{transform:scaleY(1)} 100%{opacity:0} }
.hero-el-1 { --rot:-14deg; width: clamp(120px,13vw,210px); top: 12%; inset-inline-start: 6%; }
.hero-el-2 { --rot:16deg; width: clamp(100px,11vw,170px); bottom: 14%; inset-inline-start: 11%; animation-delay: -3s; }
.hero-el-3 { --rot:-20deg; width: clamp(130px,14vw,220px); top: 16%; inset-inline-end: 7%; animation-delay: -5s; }
@media (max-width:900px){ .hero-el-2{display:none} .el{width:clamp(80px,20vw,120px)!important;opacity:.75} }

/* ---------- PRODUCTS ---------- */
.products-band { padding: 12vh 0; background: linear-gradient(180deg, var(--emerald), var(--emerald-dk)); overflow: hidden; }
.band-head { text-align: center; padding-inline: 5vw; margin-bottom: 6vh; }
.prod-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 3vh; }
.prod-tabs button { border: 2px solid rgba(255,255,255,.35); background: transparent; color: var(--white); border-radius: 999px; padding: 10px 24px; font-family: inherit; font-weight: 600; font-size: .95rem; cursor: pointer; transition: all .2s; }
.prod-tabs button.active, .prod-tabs button:hover { background: linear-gradient(135deg, var(--gold-lt), var(--gold)); border-color: var(--gold); color: var(--emerald-ink); }
.slider-wrap { position: relative; }
.prod-slider { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px max(4vw,24px) 20px; scrollbar-width: none; }
.prod-slider::-webkit-scrollbar { display: none; }
.prod-card { flex: 0 0 min(320px, 80vw); scroll-snap-align: center; transition: transform .35s var(--ease); }
.prod-card:hover { transform: translateY(-6px); }
/* کارت محصول — محصول کامل در ناحیه رنگی (مثل سایت مادر) */
.prod-card { position: relative; background: var(--white); border-radius: 26px; overflow: hidden; box-shadow: 0 22px 46px rgba(0,0,0,.24); }
.prod-stage {
  position: relative; aspect-ratio: 1 / 1;
  overflow: hidden;
}
.pi-back { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
/* محصول کامل و وسط‌چین در ناحیه رنگی */
.pi-front {
  position: absolute; inset: 0; z-index: 5;
  width: 100%; height: 100%;
  padding: 9% 15%;
  object-fit: contain; object-position: center center;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.3));
  transition: transform .5s var(--ease), opacity .18s;
}
.prod-card:hover .pi-front { transform: rotate(-3deg) scale(1.05); }
.pi-front.swap { opacity: 0; transform: scale(.94); }
.prod-info {
  position: relative; z-index: 4;
  background: var(--white); color: var(--emerald-ink);
  padding: 20px 20px 22px; text-align: start;
}
.prod-info h3 { color: var(--emerald); font-size: 1.05rem; line-height: 1.3; margin-bottom: 12px; min-height: 2.6em; }
.size-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.chip { border: 1.5px solid var(--emerald); color: var(--emerald); background: var(--white); border-radius: 999px; padding: 4px 13px; font-size: .82rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: all .2s; }
.chip:hover { transform: translateY(-2px); }
.chip.chip-hot { background: var(--emerald); color: var(--white); }
.btn-buy { background: linear-gradient(135deg, var(--teal), var(--emerald)); color: var(--white); padding: 10px 26px; font-size: .92rem; border-radius: 999px; box-shadow: 0 8px 20px rgba(31,138,112,.3); }
.sl-arrow { position: absolute; top: 40%; transform: translateY(-50%); z-index: 3; width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer; background: linear-gradient(135deg, var(--gold-lt), var(--gold)); color: var(--emerald-ink); font-size: 1.7rem; box-shadow: 0 10px 26px rgba(0,0,0,.3); display: grid; place-items: center; transition: transform .2s; }
.sl-arrow:hover { transform: translateY(-50%) scale(1.08); }
.sl-prev { inset-inline-start: 14px; } .sl-next { inset-inline-end: 14px; }
@media (max-width:700px){ .sl-arrow{display:none} }

/* tea cards */
/* کارت چای — عمودی مثل سایت مادر: نام بالا، نوشیدنی وسط، دکمه پایین */
.tea-slider .tea-card { flex: 0 0 min(420px, 86vw); scroll-snap-align: center; display: flex; flex-direction: column; border-radius: 30px; overflow: hidden; padding: 30px 30px 28px; color: var(--white); box-shadow: 0 22px 46px rgba(0,0,0,.24); transition: transform .35s var(--ease); min-height: 560px; }
.tea-card:hover { transform: translateY(-8px); }
.tgreen{background:linear-gradient(160deg,#3c8a1e,#8fc21f)} .tyellow{background:linear-gradient(160deg,#6f9a1f,#c9d34a)} .torange{background:linear-gradient(160deg,#c85a1f,#f0903e)} .tpeach{background:linear-gradient(160deg,#c96a3c,#f0a878)} .tgold{background:linear-gradient(160deg,#8a6a17,#d9b64a)} .tblue{background:linear-gradient(160deg,#3f5f9a,#7a9ed8)}
.tea-top { position: relative; z-index: 2; }
.tea-top h3 { font-size: clamp(1.15rem,1.8vw,1.5rem); line-height: 1.3; margin-bottom: 16px; text-shadow: 0 2px 14px rgba(0,0,0,.25); font-weight: 600; }
.tea-size { display: inline-block; background: var(--emerald-ink); color: #fff; border-radius: 999px; padding: 7px 20px; font-size: 1rem; font-weight: 700; }
.tea-img { flex: 1; display: grid; place-items: center; margin: 10px 0; position: relative; z-index: 1; }
.tea-img img { height: clamp(300px,38vh,420px); width: 100%; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(0,0,0,.35)); }
.tea-buy { align-self: start; background: rgba(255,255,255,.95); color: var(--emerald-ink); position: relative; z-index: 2; box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.tea-buy:hover { background: #fff; }
@media (max-width:620px){ .tea-slider .tea-card{min-height:480px} .tea-img img{height:280px} }


/* ---------- INGREDIENTS + NUTRITION ---------- */
.ingredients { background: var(--paper); color: var(--emerald-ink); padding: 14vh clamp(20px,6vw,80px); }
.ing-inner { max-width: 1160px; margin: 0 auto; }
.ing-head { text-align: center; margin-bottom: 8vh; }
.ing-head .eyebrow { color: var(--teal); } .ing-head h2 { color: var(--emerald); }
.ing-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; }
.ing-cards { display: grid; gap: 18px; }
.ing-card { display: flex; gap: 18px; align-items: center; background: var(--white); border: 1px solid #e3efe6; border-radius: 22px; padding: 22px 24px; box-shadow: 0 10px 30px rgba(10,90,60,.06); }
.ing-card img { width: 64px; height: 64px; flex: none; }
.ing-card h3 { color: var(--emerald); font-size: 1.2rem; margin-bottom: 4px; }
.ing-card p { font-size: .95rem; opacity: .82; }
.nutrition { background: linear-gradient(160deg, var(--emerald), var(--teal)); color: var(--white); border-radius: 28px; padding: 40px 34px; box-shadow: 0 24px 60px rgba(10,90,60,.28); }
.nutrition h3 { font-size: 1.15rem; margin-bottom: 22px; color: var(--gold-lt); }
.nut-row { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.nut-row:last-of-type { border-bottom: 0; }
.nut-row .k { opacity: .88; } .nut-row .v { font-weight: 700; font-size: 1.15rem; }
.claims { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.claim { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24); border-radius: 999px; padding: 7px 15px; font-size: .82rem; font-weight: 600; }
@media (max-width:820px){ .ing-grid{grid-template-columns:1fr} }

/* ---------- STORY ---------- */
.story { position: relative; padding: 16vh clamp(20px,6vw,80px); background: linear-gradient(160deg, var(--emerald-dk), var(--emerald)); overflow: hidden; }
.story-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.story p { font-size: clamp(1.05rem,2vw,1.28rem); opacity: .92; margin-top: 20px; }
.story-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 8vh; }
.stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 22px; padding: 30px 18px; }
.stat .n { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; color: var(--gold-lt); }
.stat .t { opacity: .85; margin-top: 6px; font-size: .95rem; }
.story .el-lg { position: absolute; z-index: 1; opacity: .5; }
@media (max-width:620px){ .story-stats{grid-template-columns:1fr} }

/* ---------- MOMENTS (video) ---------- */
.moments { position: relative; min-height: 80vh; display: grid; place-items: center; overflow: hidden; background: var(--emerald-ink); }
.moments video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.moments::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,42,28,.5), transparent 30%, transparent 70%, rgba(5,42,28,.5)); }
.moments .overlay { position: relative; z-index: 2; text-align: center; padding: 44px 32px; max-width: 720px; background: radial-gradient(120% 100% at 50% 50%, rgba(5,42,28,.5), transparent 72%); border-radius: 30px; }
.moments .overlay p { margin-top: 16px; opacity: .92; font-size: clamp(1rem,2vw,1.2rem); }

/* ---------- DISTRIBUTION MAP ---------- */
.distribution { padding: 14vh clamp(20px,6vw,80px); background: var(--emerald); position: relative; }
.dist-head { text-align: center; margin-bottom: 6vh; }
.dist-head .eyebrow { color: var(--gold-lt); }
.map-wrap { max-width: 1000px; margin: 0 auto; position: relative; background: linear-gradient(160deg, rgba(5,42,28,.5), rgba(10,90,60,.35)); border-radius: 28px; padding: 4% 3%; }
.iran-map { width: 100%; height: auto; }
.city-dot { fill: var(--gold-lt); stroke: var(--white); stroke-width: 2; cursor: pointer; transition: r .2s, fill .2s; }
.city-dot:hover { fill: var(--lime); }
.city-label { fill: var(--white); font-size: 13px; font-family: var(--font-fa); font-weight: 600; }
.city-hub .city-dot { fill: var(--lime); }
.city-hub .city-label { fill: var(--gold-lt); font-size: 15px; font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); color: var(--emerald-ink); padding: 14vh clamp(20px,6vw,80px); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 6vh; }
.faq-head .eyebrow { color: var(--teal); } .faq-head h2 { color: var(--emerald); }
.faq-item { border: 1px solid #dceae1; border-radius: 18px; margin-bottom: 14px; overflow: hidden; background: var(--white); box-shadow: 0 6px 20px rgba(10,90,60,.05); }
.faq-q { width: 100%; text-align: start; padding: 20px 24px; background: none; border: 0; font-family: inherit; font-size: 1.05rem; font-weight: 600; color: var(--emerald); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-q::after { content: "+"; font-size: 1.5rem; color: var(--gold); transition: transform .3s; flex: none; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 24px 20px; opacity: .82; }
.faq-item.open .faq-a { max-height: 240px; }

/* ---------- REP FORM ---------- */
.rep { position: relative; background: linear-gradient(160deg, var(--emerald-dk), var(--emerald)); padding: 14vh clamp(20px,6vw,80px); overflow: hidden; }
.rep-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px,6vw,70px); align-items: start; position: relative; z-index: 2; }
.rep-lead { opacity: .92; margin-top: 16px; max-width: 460px; }
.rep-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.wa-btn { background: #25d366; color: #fff; }
.cat-btn { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; }
.rep form { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 26px; padding: 30px; display: grid; gap: 14px; }
.role-label { font-weight: 600; color: var(--gold-lt); font-size: .95rem; }
.role-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.role-chip { border: 1.5px solid rgba(255,255,255,.3); background: rgba(255,255,255,.06); color: #fff; border-radius: 999px; padding: 8px 15px; font-family: inherit; font-size: .85rem; cursor: pointer; transition: all .2s; }
.role-chip.active { background: linear-gradient(135deg, var(--gold-lt), var(--gold)); border-color: var(--gold); color: var(--emerald-ink); font-weight: 600; }
.rep input, .rep textarea { width: 100%; border: 1px solid rgba(255,255,255,.25); background: rgba(5,42,28,.4); color: #fff; border-radius: 14px; padding: 13px 16px; font-family: inherit; font-size: .95rem; }
.rep input::placeholder, .rep textarea::placeholder { color: rgba(255,255,255,.55); }
.rep textarea { min-height: 90px; resize: vertical; }
.rep .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width:820px){ .rep-inner{grid-template-columns:1fr} .rep .row2{grid-template-columns:1fr} }

/* ---------- CONTACT ---------- */
.contact { background: var(--emerald-ink); padding: 12vh clamp(20px,6vw,80px); }
.contact-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.contact .eyebrow { color: var(--gold-lt); }
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 6vh; }
.c-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; padding: 30px 22px; }
.c-card .c-k { color: var(--gold-lt); font-weight: 700; font-size: .9rem; margin-bottom: 8px; }
.c-card a, .c-card span { opacity: .9; }
.c-card a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width:700px){ .contact-cards{grid-template-columns:1fr} }

/* ---------- footer ---------- */
footer { background: var(--emerald-ink); border-top: 1px solid rgba(255,255,255,.08); padding: 44px clamp(20px,6vw,80px); text-align: center; font-size: .9rem; }
footer .logo-f img { height: 32px; margin: 0 auto 16px; opacity: .9; }
footer p { opacity: .65; }

/* edge fizz glow removed per feedback */

@media (max-width:860px){ nav.main-nav{display:none} #bubbles{opacity:.5} }
@media (prefers-reduced-motion: reduce){ .el,.scroll-hint::after{animation:none} html{scroll-behavior:auto} }

/* ═══════ v2 · محصولات بزرگ‌تر + سه بخش مجزا + نقشه واقعی ═══════ */
/* محصولات بزرگ‌تر (مثل سایت مادر) */
.prod-card { flex: 0 0 min(420px, 86vw); }
.prod-info h3 { font-size: 1.25rem; }
.prod-info .size-chips .chip { font-size: .9rem; padding: 5px 15px; }
.tea-img img { height: clamp(340px, 42vh, 500px); }
.band-head h2 { font-size: clamp(2rem, 5vw, 3.4rem); }

/* بخش چای: پس‌زمینه متمایز */
.tea-section { background: linear-gradient(180deg, var(--emerald-dk), var(--emerald)); }

/* new flavors بزرگ‌تر */


/* نقشه واقعی ایران */
.map-wrap { max-width: 1050px; }
.iran-map { width: 100%; height: auto; }
.city-dot { fill: var(--gold-lt); stroke: var(--white); stroke-width: 2; cursor: pointer; transition: fill .2s, r .2s; }
.city:hover .city-dot { fill: var(--lime); r: 8; }
.city-label { fill: var(--white); font-family: var(--font-fa); font-size: 15px; font-weight: 600; paint-order: stroke; stroke: rgba(5,42,28,.85); stroke-width: 4px; stroke-linejoin: round; }
.city-hub .city-dot { fill: var(--lime); }
.city-hub .city-label { fill: var(--gold-lt); font-size: 18px; font-weight: 700; }

/* اصلاح بخش تماس: متن درست و چیدمان بهتر */
.contact-cards { align-items: stretch; }
.c-card { display: flex; flex-direction: column; justify-content: center; gap: 6px; min-height: 120px; }
.c-card .c-v { font-size: 1.05rem; font-weight: 600; }

/* نقشه: کامل در قاب جا شود */
.map-wrap { max-width: 900px; padding: 3%; }
.iran-map { max-height: 62vh; display: block; margin: 0 auto; }


/* طعم‌های جدید: یک ردیف قوسی، بدون شکست خط */

/* ═══════ v3 · اصلاحات ═══════ */


/* نوشیدنی گازدار: بطری‌های PET یکپارچه، بدون سفیدی گرد پایین */
.prod-img { overflow: hidden; }


/* ── بخش کجا پیدا کنید (به سبک سایت مادر) ── */
.wheretofind { background: var(--paper); color: var(--emerald-ink); padding: 14vh clamp(20px,6vw,80px); position: relative; overflow: hidden; }
.wtf-inner { max-width: 1140px; margin: 0 auto; }
.wtf-head { margin-bottom: 6vh; }
.wtf-head .eyebrow { color: var(--teal); }
.wtf-head h2 { color: var(--emerald); }
.wtf-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(20px,3vw,36px); }
.wtf-box { background: var(--mist); border-radius: 30px; padding: clamp(24px,3vw,40px); }
.wtf-box h3 { color: var(--emerald); font-size: clamp(1.2rem,2.2vw,1.7rem); text-align: center; margin-bottom: 28px; font-weight: 600; }
.wtf-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wtf-card {
  background: var(--white); border-radius: 20px; min-height: 92px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 1.15rem; font-weight: 700; color: var(--emerald);
  box-shadow: 0 8px 24px rgba(10,90,60,.08); transition: transform .25s var(--ease), box-shadow .25s;
  text-align: center; padding: 16px;
}
.wtf-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(10,90,60,.16); }
.wtf-online .wtf-card { min-height: 118px; font-size: 1.25rem; }
.wtf-insta { background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af); color: #fff; }
.wtf-insta:hover { color: #fff; }
.wtf-insta svg { width: 34px; height: 34px; }
.wtf-wa { background: #25d366; color: #fff; }
.wtf-wa:hover { color: #fff; }
.wtf-wa svg { width: 34px; height: 34px; }
.retail-grid { grid-template-columns: 1fr 1fr; }
.retail-card { font-size: 1.05rem; min-height: 78px; }
@media (max-width: 860px){ .wtf-grid { grid-template-columns: 1fr; } }










/* ═══════ v7 · محصولات واقعاً بزرگ + طعم‌های جدید بهتر ═══════ */
/* کارت‌های سودا و چای بزرگ‌تر */
.prod-card { flex: 0 0 min(480px, 88vw) !important; }
.band-head h2 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }

/* طعم‌های جدید: قوطی‌ها بزرگ + پس‌زمینه پررنگ‌تر */




/* ═══════ NEW FLAVORS — عیناً مثل سایت مادر ═══════ */
.newtastes {
  position: relative;
  padding: clamp(60px, 10vh, 130px) 0 clamp(80px, 12vh, 160px);
  overflow: hidden;
  background: var(--emerald-dk);
}
.newtastes-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.newtastes-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.newtastes .band-head { position: relative; z-index: 2; margin-bottom: clamp(30px, 6vh, 80px); }
/* ردیف کارت‌ها: flex ساده مرکزچین، بدون transform/قوس */
.newtastes-cards {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto; padding-inline: clamp(20px, 4vw, 60px);
  flex-wrap: nowrap;
}
.nt-card {
  flex: 1 1 0; min-width: 0; 
  display: block; cursor: pointer;
  transition: transform .35s var(--ease);
}
.nt-card-img { width: 100%; }
.nt-card img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,.4));
}
.nt-card:hover { transform: translateY(-14px) scale(1.05); }
@media (max-width: 860px) {
  .newtastes-cards { flex-wrap: wrap; gap: 16px; }
  .nt-card { flex: 0 0 40%; max-width: 160px; }
}

/* ═══════════════════════════════════════════════════════
   DESIGN ELEVATION — ارتقای کلی دیزاین (لوکس‌تر و منسجم‌تر)
   ═══════════════════════════════════════════════════════ */

/* ── تایپوگرافی و ریتم بهتر ── */
h2 { letter-spacing: -0.01em; line-height: 1.1; }
.eyebrow {
  position: relative; padding-inline-start: 34px;
}
.eyebrow::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 50%; transform: translateY(-50%);
  width: 26px; height: 2px; background: linear-gradient(90deg, var(--gold-lt), transparent);
}
html[lang="fa"] .eyebrow { padding-inline-start: 34px; }

/* عنوان بخش‌ها با خط تزئینی زیرش */
.band-head h2, .ing-head h2, .faq-head h2, .newtastes .band-head h2 { position: relative; display: inline-block; }
.band-head h2::after, .ing-head h2::after, .faq-head h2::after {
  content: ""; position: absolute; bottom: -18px; inset-inline-start: 50%; transform: translateX(-50%);
  width: 60px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
}
.ing-head h2::after { background: linear-gradient(90deg, transparent, var(--teal), transparent); }
.faq-head h2::after { background: linear-gradient(90deg, transparent, var(--teal), transparent); }

/* ── انیمیشن ورود بخش‌ها هنگام اسکرول ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ── دکمه‌ها: شیک‌تر با درخشش ── */
.btn { position: relative; overflow: hidden; letter-spacing: .01em; }
.btn::after {
  content: ""; position: absolute; top: 0; inset-inline-start: -120%;
  width: 60%; height: 100%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transition: inset-inline-start .6s var(--ease);
}
.btn:hover::after { inset-inline-start: 130%; }
.btn-gold { box-shadow: 0 10px 34px rgba(201,162,75,.45), inset 0 1px 0 rgba(255,255,255,.4); }

/* ── هدر: شیشه‌ای‌تر و ظریف‌تر ── */
header.scrolled { background: rgba(7,61,41,.78); backdrop-filter: blur(18px) saturate(1.2); border-bottom: 1px solid rgba(255,255,255,.06); }
nav.main-nav a { position: relative; }
nav.main-nav a::after {
  content: ""; position: absolute; bottom: -6px; inset-inline-start: 0; width: 0; height: 2px;
  background: var(--gold-lt); border-radius: 2px; transition: width .3s var(--ease);
}
nav.main-nav a:hover::after { width: 100%; }

/* ── کارت محصول: ریزجزئیات لوکس ── */
.prod-card { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.prod-card:hover { box-shadow: 0 34px 70px rgba(0,0,0,.34); }
.prod-info h3 { letter-spacing: -0.01em; }
.chip { transition: all .22s var(--ease); }
.chip.chip-hot { box-shadow: 0 6px 16px rgba(10,90,60,.35); transform: translateY(-1px); }

/* ── چیپ‌های سایز چای: درخشان‌تر ── */
.tea-size { box-shadow: 0 6px 18px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.12); }

/* ── بخش ترکیبات: کارت‌های ظریف‌تر ── */
.ing-card { transition: transform .3s var(--ease), box-shadow .3s var(--ease); position: relative; overflow: hidden; }
.ing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(10,90,60,.14); }
.ing-card::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 0; width: 4px; height: 100%;
  background: linear-gradient(var(--teal), var(--emerald)); opacity: 0; transition: opacity .3s;
}
.ing-card:hover::before { opacity: 1; }
.nutrition { position: relative; overflow: hidden; }
.nutrition::after {
  content: ""; position: absolute; top: -40%; inset-inline-end: -20%; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%); border-radius: 50%;
}
.nut-row { transition: padding .2s; }
.nut-row .v { color: var(--gold-lt); }

/* ── بخش‌های ویدیویی: سینمایی‌تر ── */
.moments .overlay h2 { letter-spacing: -0.01em; }
.moments .overlay { border: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(2px); }

/* ── FAQ: تعاملی‌تر ── */
.faq-item { transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.faq-item:hover { box-shadow: 0 12px 30px rgba(10,90,60,.1); }
.faq-item.open { box-shadow: 0 16px 40px rgba(10,90,60,.14); border-color: var(--teal); }

/* ── فرم نمایندگی: لوکس‌تر ── */
.rep form { backdrop-filter: blur(6px); box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.rep input:focus, .rep textarea:focus { outline: none; border-color: var(--gold-lt); box-shadow: 0 0 0 3px rgba(201,162,75,.15); }
.role-chip { transition: all .22s var(--ease); }

/* ── کارت‌های تماس: تعاملی ── */
.c-card { transition: transform .3s var(--ease), background .3s; }
.c-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); }

/* ── فوتر: ظریف‌تر ── */
footer { position: relative; }
footer::before {
  content: ""; position: absolute; top: 0; inset-inline: 50%; transform: translateX(-50%);
  width: 120px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
}

/* ── اسکرول‌بار سفارشی ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--emerald-dk); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--teal), var(--emerald)); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── انتخاب متن ── */
::selection { background: var(--gold-lt); color: var(--emerald-ink); }

/* ═══════ HERO ارتقا — لوکس‌تر ═══════ */
.hero-copy .eyebrow { font-size: .85rem; }
.hero-copy h1 { letter-spacing: -0.02em; }
.hero-copy h1 .accent {
  background: linear-gradient(120deg, var(--gold-lt), var(--gold), var(--gold-lt));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  padding-bottom: 0.08em;
}
/* حلقه تزئینی پشت قوطی هیرو */
.hero-visual::before {
  content: ""; position: absolute; z-index: 0;
  width: min(46vh, 62vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,.16), transparent 68%);
  inset-inline-end: 8%; top: 46%; transform: translateY(-50%);
  animation: heroGlow 6s ease-in-out infinite;
}
@keyframes heroGlow { 0%,100% { opacity: .7; transform: translateY(-50%) scale(1); } 50% { opacity: 1; transform: translateY(-50%) scale(1.08); } }
.hero-can { position: relative; z-index: 2; }
.hero-clip { position: relative; z-index: 2; border: 3px solid rgba(201,162,75,.3); }
.hero-clip::after {
  content: ""; position: absolute; inset: 0; border-radius: 24px; pointer-events: none;
  box-shadow: inset 0 0 40px rgba(4,48,29,.4);
}

/* شاخص اسکرول ظریف‌تر */
.scroll-hint { font-weight: 500; }

/* بخش‌های روشن: گذار نرم رنگی */
.ingredients { position: relative; }
.ingredients::before {
  content: ""; position: absolute; top: 0; inset-inline: 0; height: 80px;
  background: linear-gradient(var(--emerald-dk), transparent); opacity: .0;
}

/* ── هیرو: نسبت متن و تصویر بهتر روی موبایل ── */
@media (max-width: 920px) {
  .hero-visual::before { inset-inline-end: 50%; transform: translate(50%,-50%); }
}

/* اصلاح چیدمان هیرو: المان لیمو با دکمه‌ها تداخل نکند */
.hero-el-2 { bottom: 4%; inset-inline-start: 4%; }
.hero-visual { z-index: 3; }
.hero-copy { padding-inline-end: clamp(0px, 2vw, 30px); }
@media (min-width: 921px) {
  .hero-el-2 { display: none; } /* لیموی پایین که با دکمه تداخل داشت */
}

/* بیمه: اگر JS لود نشد، محتوا مخفی نماند (no-js fallback) */
.no-js .reveal { opacity: 1 !important; transform: none !important; }
