/* ============================================================
   Salad Store — style.css
   Brand: green #2F7A3D · orange #E8871E · cream #F6F1E7
   RTL-first (Arabic), flips automatically for English via
   logical properties + [dir] on <html>.
   ============================================================ */

:root {
  --green: #2F7A3D;
  --green-dark: #24572C;
  --green-deep: #1C4423;
  --green-soft: #2F6B38;
  --orange: #E8871E;
  --orange-dark: #C96F0F;
  --cream: #F6F1E7;
  --paper: #FDFBF6;
  --ink: #22301F;
  --muted: #5D6B56;
  --faint: #6E6650;
  --line: #E4DCC8;
  --line-soft: #EAE3D3;
  --tint: #E9F1E3;
  --tint-orange: #FBEBD6;
  --white: #FFFFFF;
  --radius: 22px;
  --radius-sm: 16px;
  --shadow: 0 10px 30px rgba(34, 48, 31, 0.08);
  --shadow-lift: 0 16px 40px rgba(34, 48, 31, 0.14);
  --font-ar: 'Cairo', Tahoma, 'Segoe UI', sans-serif;
  --font-en: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ar);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

html[lang="en"] body { font-family: var(--font-en); }

.latin { font-family: var(--font-en); }

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

.container { max-width: 1240px; margin-inline: auto; padding-inline: 24px; }

section { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---------- Buttons & pills ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: 16px; border-radius: 999px;
  padding: 14px 28px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: scale(.97); }
.btn svg { flex-shrink: 0; }

.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(232, 135, 30, .35); }
.btn-orange:hover { background: var(--orange-dark); color: #fff; }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(47, 122, 61, .3); }
.btn-green:hover { background: var(--green-dark); color: #fff; }
.btn-outline { border: 2px solid var(--green); color: var(--green); padding: 12px 26px; }
.btn-outline:hover { background: var(--tint); }
.btn-light { background: #fff; color: var(--green-dark); }
.btn-sm { font-size: 14px; padding: 10px 20px; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 800; font-size: 13px; border-radius: 999px; padding: 6px 15px;
}
.pill-green { background: var(--tint); color: var(--green); }
.pill-orange { background: var(--tint-orange); color: var(--orange-dark); }

.price-tag {
  display: inline-flex; align-items: center; flex-shrink: 0;
  background: var(--orange); color: #fff;
  font-weight: 800; font-size: 14px; border-radius: 999px; padding: 5px 15px;
  white-space: nowrap;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand .logo-mark { height: 44px; width: auto; }
.brand .logo-word { height: 30px; width: auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name b { font-family: var(--font-en); font-weight: 800; font-size: 21px; color: var(--green); }
.brand-name span { font-family: var(--font-en); font-weight: 600; font-size: 8.5px; letter-spacing: 2.2px; color: #A2926F; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: var(--ink); font-weight: 700; font-size: 15px;
  padding: 8px 16px; border-radius: 999px; transition: background .15s;
}
.nav-links a:hover { background: var(--tint); color: var(--green); }
.nav-links a.active { background: var(--green); color: #fff; font-weight: 800; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: flex; align-items: center; background: #EFE9DB; border-radius: 999px; padding: 3px;
  font-weight: 700; font-size: 12px;
}
.lang-toggle button { border-radius: 999px; padding: 5px 13px; color: var(--faint); }
.lang-toggle button.on { background: var(--green); color: #fff; }
.lang-toggle .lt-ar { font-family: var(--font-ar); }
.lang-toggle .lt-en { font-family: var(--font-en); }

.nav-burger { display: none; padding: 8px; border-radius: 12px; }
.nav-burger:hover { background: var(--tint); }

/* Mobile nav panel */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  background: var(--paper); border-top: 1px solid var(--line-soft);
  padding: 14px 24px 20px;
}
.mobile-nav a { font-weight: 800; font-size: 16px; padding: 11px 16px; border-radius: 14px; color: var(--ink); }
.mobile-nav a.active { background: var(--tint); color: var(--green); }
.nav-open .mobile-nav { display: flex; }

/* ---------- Hero ---------- */

.hero { background: var(--paper); overflow: hidden; position: relative; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding-block: 56px 72px;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.hero h1 { font-weight: 900; font-size: clamp(30px, 4vw, 46px); line-height: 1.4; }
html[lang="en"] .hero h1 { font-weight: 800; line-height: 1.25; }
.hero h1 .accent { color: var(--orange); }
.hero-sub { font-weight: 600; font-size: 17px; color: var(--muted); max-width: 540px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-checks { display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.hero-checks div { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14.5px; color: #44523F; }
.hero-checks svg { flex-shrink: 0; }

.hero-media { position: relative; }
.hero-photo {
  border-radius: 34px; overflow: hidden; box-shadow: var(--shadow-lift);
  border: 6px solid #fff; background: #fff;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.float-card {
  position: absolute; display: flex; align-items: center; gap: 11px;
  background: #fff; border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow-lift);
}
.float-card b { display: block; font-weight: 900; font-size: 16px; line-height: 1.3; }
.float-card small { font-weight: 700; font-size: 11.5px; color: var(--faint); }
.fc-cal { top: 26px; inset-inline-start: -14px; }
.fc-protein { bottom: 30px; inset-inline-end: -10px; }

/* ---------- Section headers ---------- */

.section { padding-block: 64px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.section-head h2 { font-weight: 900; font-size: clamp(24px, 3vw, 32px); }
html[lang="en"] .section-head h2 { font-weight: 800; }
.section-head p { font-weight: 600; font-size: 15.5px; color: var(--muted); margin-top: 6px; }
.section-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: 15px; white-space: nowrap; }
[dir="ltr"] .section-head .section-link svg:last-child, [dir="ltr"] .cat-cta small svg { transform: scaleX(-1); }
[dir="ltr"] .section-head .section-link svg:first-child:not(:last-child) { transform: none; }

/* ---------- USP strip ---------- */

.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.usp {
  background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 10px;
}
.usp .icon-disc { width: 52px; height: 52px; border-radius: 999px; display: flex; align-items: center; justify-content: center; }
.usp b { font-weight: 800; font-size: 17px; }
.usp p { font-weight: 600; font-size: 13.5px; color: var(--muted); }
.disc-green { background: var(--tint); }
.disc-orange { background: var(--tint-orange); }

/* ---------- Category cards ---------- */

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 12px; color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); color: var(--ink); }
.cat-card .icon-disc { width: 56px; height: 56px; border-radius: 18px; display: flex; align-items: center; justify-content: center; }
.cat-card b { font-weight: 800; font-size: 17.5px; }
.cat-card small { font-weight: 700; font-size: 13.5px; color: var(--orange); }
.cat-card.cat-cta { background: var(--green); color: #fff; justify-content: space-between; }
.cat-card.cat-cta:hover { color: #fff; background: var(--green-dark); }
.cat-card.cat-cta b { font-size: 19px; line-height: 1.55; }
.cat-card.cat-cta small { color: #FCD9A8; font-size: 14px; display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Dark band (subscriptions teaser & CTA) ---------- */

.band { background: var(--green-dark); color: #fff; position: relative; overflow: hidden; }
.band-head { text-align: center; display: flex; flex-direction: column; gap: 10px; align-items: center; margin-bottom: 38px; }
.band-head h2 { font-weight: 900; font-size: clamp(25px, 3.4vw, 34px); color: #fff; }
html[lang="en"] .band-head h2 { font-weight: 800; }
.band-head h2 .accent { color: #F2A94F; }
.band-head p { font-weight: 600; font-size: 16px; color: #C8DABF; max-width: 620px; }

.packs-teaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.pack-card {
  background: #fff; color: var(--ink); border-radius: 24px; padding: 26px;
  display: flex; flex-direction: column; gap: 12px; position: relative;
}
.pack-card .pk-name { font-family: var(--font-en); font-weight: 800; font-size: 18px; color: var(--green); }
.pack-card .pill { align-self: flex-start; }
.pack-card .pk-meals { font-weight: 700; font-size: 14px; color: var(--muted); }
.pack-price { display: flex; align-items: baseline; gap: 7px; }
.pack-price b { font-weight: 900; font-size: 34px; line-height: 1; }
.pack-price span { font-weight: 800; font-size: 15px; color: var(--faint); }
.pack-features { display: flex; flex-direction: column; gap: 7px; border-top: 1px solid #EEE8DA; padding-top: 13px; font-weight: 700; font-size: 13.5px; color: #44523F; }
.pack-card.featured { border: 3px solid var(--orange); box-shadow: 0 18px 44px rgba(0, 0, 0, .18); }
.pack-ribbon {
  position: absolute; top: -16px; inset-inline-start: 24px;
  background: var(--orange); color: #fff; font-weight: 800; font-size: 12.5px;
  border-radius: 999px; padding: 6px 16px;
}
.pack-card.royal { background: var(--green-dark); color: #fff; }
.pack-card.royal .pk-name { color: #F2A94F; }
.pack-card.royal .pk-meals { color: #C8DABF; }
.pack-card.royal .pack-price span { color: #9FB896; }
.pack-card.royal .pack-features { color: #C8DABF; border-color: var(--green-soft); }
.pack-card.royal .pill-green { background: var(--green-soft); color: #CFE3C6; }

.band-cta { display: flex; justify-content: center; margin-top: 36px; }
.btn-ghost-light { border: 2px solid #fff; color: #fff; }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* ---------- Steps teaser ---------- */

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 11px; }
.step-num {
  width: 42px; height: 42px; border-radius: 999px; background: var(--green); color: #fff;
  font-weight: 900; font-size: 18px; display: flex; align-items: center; justify-content: center;
}
.step-card b { font-weight: 800; font-size: 17px; }
.step-card p { font-weight: 600; font-size: 13.5px; color: var(--muted); }

/* ---------- Photo strip ---------- */

.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.photo-strip figure {
  border-radius: 20px; overflow: hidden; background: #fff; box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.photo-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.photo-strip figure:hover img { transform: scale(1.05); }

/* ---------- Menu page ---------- */

.page-title { background: var(--paper); text-align: center; padding: 44px 24px 30px; }
.page-title h1 { font-weight: 900; font-size: clamp(28px, 4vw, 40px); }
html[lang="en"] .page-title h1 { font-weight: 800; }
.page-title p { font-weight: 600; font-size: 15.5px; color: var(--muted); margin-top: 8px; }
.menu-hint { margin-top: 14px; }

.menu-tabs {
  position: sticky; top: var(--header-h); z-index: 50;
  background: var(--paper); border-bottom: 1px solid var(--line-soft);
  padding: 12px 0;
}
.menu-tabs-inner { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.menu-tabs-inner::-webkit-scrollbar { display: none; }
.menu-tabs a {
  flex-shrink: 0; font-weight: 700; font-size: 13.5px; color: #44523F;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 18px;
  transition: all .15s;
}
.menu-tabs a:hover, .menu-tabs a.active { background: var(--green); border-color: var(--green); color: #fff; font-weight: 800; }

.menu-section { padding-block: 36px 8px; }
.menu-section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.menu-section-head h2 { font-weight: 900; font-size: 24px; white-space: nowrap; }
html[lang="en"] .menu-section-head h2 { font-weight: 800; }
.menu-section-head .rule { flex: 1; height: 1.5px; background: var(--line); }

.menu-note {
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--tint); border-radius: 16px; padding: 14px 18px; margin-bottom: 18px;
  font-weight: 700; font-size: 13.5px; color: #2F5233;
}
.menu-note svg { flex-shrink: 0; margin-top: 2px; }

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.menu-item {
  background: #fff; border-radius: 18px; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  color: var(--ink); border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.menu-item:hover {
  color: var(--ink); border-color: var(--green);
  transform: translateY(-2px); box-shadow: var(--shadow-lift);
}
.menu-item:hover .price-tag { background: var(--green); }
.menu-item .mi-txt { display: flex; flex-direction: column; gap: 3px; }
.menu-item b { font-weight: 800; font-size: 16px; }
.menu-item small { font-weight: 600; font-size: 12.5px; color: var(--muted); line-height: 1.7; }
.mi-badges { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.cal-chip { font-weight: 700; font-size: 11px; color: var(--faint); background: var(--cream); border-radius: 999px; padding: 3px 10px; white-space: nowrap; }
.protein-chip { font-weight: 800; font-size: 11px; color: var(--green); background: var(--tint); border-radius: 999px; padding: 3px 10px; white-space: nowrap; }

.menu-photo { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 18px; background: #fff; max-width: 780px; margin-inline: auto; }
.menu-photo img { width: 100%; max-height: 240px; object-fit: cover; }

.subs-photo { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); max-width: 720px; margin: 0 auto 30px; background: #fff; }
.subs-photo img { width: 100%; object-fit: cover; }

/* ---------- Builder page ---------- */

.scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  margin-top: 14px; font-weight: 700; font-size: 13px; color: var(--green);
}
.scroll-hint svg { animation: hint-bounce 1.7s ease-in-out infinite; }
@keyframes hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.builder-progress {
  position: sticky; top: var(--header-h); z-index: 50;
  background: var(--paper); border-bottom: 1px solid var(--line-soft); padding: 10px 0;
}
.builder-progress .container { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.builder-progress .container::-webkit-scrollbar { display: none; }
.bp-chip {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 12.5px; border: 1.5px solid var(--line);
  background: #fff; color: #44523F; border-radius: 999px; padding: 7px 15px;
  transition: all .15s;
}
.bp-chip .bp-state { font-weight: 800; font-size: 11px; color: var(--faint); }
.bp-chip.done { background: var(--tint); border-color: var(--green); color: var(--green); }
.bp-chip.done .bp-state { color: var(--green); }
.builder-steps > div { scroll-margin-top: calc(var(--header-h) + 66px); }

.builder-bottombar { display: none; }

.builder-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 30px; align-items: start;
  padding-block: 36px 64px;
}
.builder-steps { display: flex; flex-direction: column; gap: 34px; min-width: 0; }

.bstep-head { display: flex; align-items: center; flex-wrap: wrap; gap: 11px; margin-bottom: 15px; }
.bstep-head .step-num { width: 36px; height: 36px; font-size: 16px; }
.bstep-head h2 { font-weight: 800; font-size: 19px; }
.bstep-hint { font-weight: 800; font-size: 12px; border-radius: 999px; padding: 5px 13px; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-weight: 700; font-size: 13.5px; color: var(--ink);
  transition: all .13s ease;
}
.chip small { font-weight: 700; font-size: 10.5px; color: #7A6C4C; }
.chip:hover { border-color: var(--green); }
.chip.on { background: var(--green); border-color: var(--green); color: #fff; }
.chip.on small { color: #CFE3C6; }
.chip.chip-price small { color: var(--orange-dark); }
.chip.on.chip-price small { color: #FCD9A8; }
.chip:disabled { opacity: .45; cursor: not-allowed; }

.size-cards { display: flex; flex-wrap: wrap; gap: 12px; }
.size-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 3px; text-align: start;
  background: #fff; border: 1.5px solid var(--line); border-radius: 18px; padding: 14px 24px;
  transition: all .15s ease;
}
.size-card b { font-weight: 800; font-size: 16px; }
.size-card small { font-weight: 700; font-size: 12.5px; color: var(--muted); }
.size-card.on { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 10px 22px rgba(47, 122, 61, .3); }
.size-card.on small { color: #CFE3C6; }

.order-summary {
  position: sticky; top: calc(var(--header-h) + 18px);
  background: #fff; border-radius: 24px; padding: 24px; box-shadow: var(--shadow-lift);
  display: flex; flex-direction: column; gap: 15px;
}
.os-head { display: flex; align-items: center; justify-content: space-between; }
.os-head b { font-weight: 900; font-size: 20px; }
.os-reset {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-weight: 700; font-size: 12.5px; color: var(--faint);
  border-radius: 999px; padding: 4px 10px; margin-top: -6px;
  transition: color .15s, background .15s;
}
.os-reset:hover { color: #B4530A; background: var(--tint-orange); }
.os-rows { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid #EEE8DA; padding-top: 13px; }
.os-row small { display: block; font-weight: 800; font-size: 12px; color: var(--faint); }
.os-row span { font-weight: 700; font-size: 14px; }
.os-row .os-empty { color: #B8AF97; font-weight: 600; }
.os-cal {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--tint); border-radius: 14px; padding: 11px 15px;
  font-weight: 800; font-size: 13.5px; color: #2F5233;
}
.os-cal b { font-weight: 900; font-size: 16px; }
.os-total { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #EEE8DA; padding-top: 13px; }
.os-total span { font-weight: 800; font-size: 15px; }
.os-total b { font-weight: 900; font-size: 25px; color: var(--orange); }
.os-note { font-weight: 600; font-size: 11.5px; color: var(--faint); text-align: center; }
.os-warn { font-weight: 700; font-size: 12.5px; color: #B4530A; background: var(--tint-orange); border-radius: 12px; padding: 9px 13px; display: none; }
.os-warn.show { display: block; }

/* ---------- Subscriptions page ---------- */

.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding-block: 8px 40px; }
.features-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-block: 26px 30px; }
.feature-chip {
  display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 18px; padding: 15px 18px; box-shadow: var(--shadow);
  font-weight: 800; font-size: 14px;
}
.feature-chip .icon-disc { width: 44px; height: 44px; border-radius: 999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.how-card { background: #fff; border-radius: var(--radius); padding: 26px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.how-card b { font-weight: 800; font-size: 17px; }
.how-card p { font-weight: 600; font-size: 13.5px; color: var(--muted); }

.faq-list { max-width: 860px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: 18px; overflow: hidden; }
.faq-item summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 22px; font-weight: 800; font-size: 15.5px; cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { transition: transform .2s; flex-shrink: 0; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item p { padding: 0 22px 18px; font-weight: 600; font-size: 14px; color: var(--muted); }

/* ---------- Contact page ---------- */

.wa-hero {
  background: var(--green-dark); color: #fff; border-radius: 28px; padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.wa-hero-num { display: flex; align-items: center; gap: 20px; }
.wa-hero-num .wa-disc { width: 72px; height: 72px; border-radius: 999px; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-hero-num small { display: block; font-weight: 800; font-size: 15px; color: #C8DABF; }
.wa-hero-num b { font-family: var(--font-en); font-weight: 800; font-size: clamp(26px, 4vw, 38px); letter-spacing: 1px; direction: ltr; unicode-bidi: isolate; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-block: 34px 60px; }
.contact-card { background: #fff; border-radius: 24px; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.contact-card .cc-head { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 18px; }
.contact-card .icon-disc { width: 44px; height: 44px; border-radius: 999px; display: flex; align-items: center; justify-content: center; }
.contact-card p { font-weight: 700; font-size: 14px; color: #44523F; }
.contact-card .cc-sub { font-weight: 600; font-size: 13px; color: var(--muted); }
.map-frame { border-radius: 16px; overflow: hidden; border: 0; width: 100%; height: 190px; }
.social-row { display: flex; align-items: center; gap: 11px; background: var(--cream); border-radius: 14px; padding: 11px 15px; color: var(--ink); }
.social-row:hover { background: var(--tint); color: var(--ink); }
.social-row b { font-family: var(--font-en); font-weight: 700; font-size: 13.5px; direction: ltr; unicode-bidi: isolate; }
.social-row small { display: block; font-weight: 600; font-size: 11.5px; color: var(--faint); }

/* ---------- Footer ---------- */

.site-footer { background: var(--green-deep); color: #EFE9DB; margin-top: 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr; gap: 34px;
  padding-block: 48px 36px;
}
.footer-grid h4 { font-weight: 800; font-size: 15px; color: #fff; margin-bottom: 12px; }
.footer-grid a, .footer-grid p { display: block; font-weight: 700; font-size: 13.5px; color: #B9CCAF; margin-bottom: 9px; }
.footer-grid a:hover { color: #fff; }
.footer-grid a.brand { display: flex; align-items: center; gap: 11px; }
.footer-brand-blurb { max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { width: 40px; height: 40px; border-radius: 999px; background: var(--green-soft); display: flex; align-items: center; justify-content: center; margin: 0; }
.footer-social a:hover { background: var(--green); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--green-soft); padding-block: 18px 22px;
  font-weight: 700; font-size: 12.5px; color: #8FA986;
}

/* ---------- Floating WhatsApp ---------- */

.float-wa {
  position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 70;
  width: 58px; height: 58px; border-radius: 999px; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(28, 68, 35, .45);
  transition: transform .15s ease;
}
.float-wa:hover { transform: scale(1.08); }

/* ---------- Back to top ---------- */

.to-top {
  position: fixed; bottom: 22px; inset-inline-start: 22px; z-index: 70;
  width: 46px; height: 46px; border-radius: 999px;
  background: #fff; color: var(--green); border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); cursor: pointer;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .15s;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--tint); }
@media (max-width: 1060px) {
  body.builder-page .to-top { bottom: 92px; }
}

/* ---------- Scroll reveal ---------- */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint svg { animation: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1060px) {
  .builder-bottombar {
    position: fixed; bottom: 0; inset-inline: 0; z-index: 80;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    background: #fff; border-top: 1px solid var(--line-soft);
    padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(34, 48, 31, 0.1);
  }
  .bb-info b { display: block; font-weight: 900; font-size: 19px; color: var(--orange); line-height: 1.25; }
  .bb-info small { font-weight: 700; font-size: 11.5px; color: var(--muted); }
  body.builder-page { padding-bottom: 74px; }
  body.builder-page .float-wa { bottom: 92px; }
  .usp-grid, .cat-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-row { grid-template-columns: repeat(2, 1fr); }
  .packs-grid, .packs-teaser { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .builder-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { max-width: 560px; width: 100%; margin-inline: auto; }
  .packs-teaser .pack-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .menu-grid { grid-template-columns: 1fr; }
  .how-grid, .contact-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .section { padding-block: 44px; }
}

@media (max-width: 600px) {
  .header-cta { display: none; }
}

@media (max-width: 560px) {
  .usp-grid, .cat-grid, .steps-grid, .packs-grid, .packs-teaser, .features-row { grid-template-columns: 1fr; }
  .hero-ctas { width: 100%; flex-direction: column; }
  .brand-name b { font-size: 17px; white-space: nowrap; }
  .brand-name span { display: none; }
  .brand .logo-mark { height: 33px; }
  .brand .logo-word { height: 22px; }
  .fc-cal { inset-inline-start: 6px; top: 12px; }
  .fc-protein { inset-inline-end: 6px; bottom: 12px; }
  .wa-hero { padding: 28px 24px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
