/* ============================================================
   AL SAAEID FOR BUSINESS — Brand Website
   Bold & playful, bilingual (AR RTL / EN LTR)
   Fonts: Baloo Bhaijaan 2 (display) + Rubik (body)
   ============================================================ */

:root {
  /* Brand core */
  --green-500: #2E9C4E;
  --green-600: #238741;
  --green-700: #1B6E35;
  --green-800: #14532D;
  --green-900: #0E3D21;
  --gold-300: #FFD653;
  --gold-400: #FFC527;
  --gold-500: #F5A81C;
  --gold-600: #D98E07;
  --ink: #23254B;            /* navy from logo outline */
  --body: #4A5364;
  --sage-50: #F4F8F1;
  --sage-100: #EDF3E9;
  --sage-200: #E2ECDC;
  --cream: #FFFDF6;
  --white: #FFFFFF;
  --wa: #25D366;
  --wa-dark: #128C4B;

  /* Flavor accents */
  --mango: #F5941F;
  --lemon: #A8BC12;
  --karkade: #C21F4E;
  --laban: #B98E5F;
  --milk: #4A7FBF;
  --choc: #7A3020;
  --spicy: #E04528;
  --olive: #63A83C;
  --garlic: #2C8FD0;
  --mutabal: #5B3E9E;

  /* Type */
  --font-display: "Baloo Bhaijaan 2", "Rubik", system-ui, sans-serif;
  --font-body: "Rubik", "Baloo Bhaijaan 2", system-ui, sans-serif;

  /* Rhythm */
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 8px rgba(35, 37, 75, 0.08);
  --shadow: 0 10px 30px -8px rgba(35, 37, 75, 0.16);
  --shadow-lg: 0 24px 60px -16px rgba(35, 37, 75, 0.24);
  --container: 1200px;
  --header-h: 78px;
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.25; margin: 0 0 0.5em; font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }

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

/* ---------- Utilities ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 88px; position: relative; }
.section--tight { padding-block: 64px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: var(--green-600); background: var(--sage-100);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow svg { width: 16px; height: 16px; flex: none; }
.eyebrow--gold { color: var(--gold-600); background: #FFF4D6; }
.eyebrow--light { color: var(--gold-300); background: rgba(255, 255, 255, 0.12); }

.display-xl { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.01em; }
.display-lg { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 800; line-height: 1.16; }
.display-md { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.8; }

.mark-swash { position: relative; display: inline-block; white-space: nowrap; isolation: isolate; }
.mark-swash::after {
  content: ""; position: absolute; inset-inline: -2%; bottom: 0.02em; height: 0.32em;
  background: var(--gold-400); border-radius: 999px; z-index: -1;
  transform: rotate(-1.2deg);
}
.mark-swash--green::after { background: #BFE3C6; }

.text-center { text-align: center; }
.section-head { max-width: 640px; margin-inline: auto; margin-bottom: 52px; text-align: center; }
.section-head p { color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  padding: 14px 30px; min-height: 52px; border-radius: 999px;
  transition: transform 0.2s var(--ease-pop), box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer; touch-action: manipulation; white-space: nowrap;
}
.btn svg { width: 21px; height: 21px; flex: none; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }

.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.55); }
.btn--wa:hover { background: #1EBE5A; box-shadow: 0 14px 30px -6px rgba(37, 211, 102, 0.6); }
.btn--primary { background: var(--green-600); color: #fff; box-shadow: 0 8px 24px -6px rgba(35, 135, 65, 0.5); }
.btn--primary:hover { background: var(--green-700); }
.btn--gold { background: var(--gold-400); color: var(--ink); box-shadow: 0 8px 24px -6px rgba(245, 168, 28, 0.55); }
.btn--gold:hover { background: var(--gold-300); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2.5px var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 2.5px rgba(255,255,255,0.85); }
.btn--ghost-light:hover { background: #fff; color: var(--green-800); }
.btn--sm { padding: 10px 20px; min-height: 44px; font-size: 0.95rem; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 253, 246, 0.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(35, 37, 75, 0.07);
  transition: box-shadow 0.25s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
/* Logo and actions sit on opposite ends; `order` flips them per language.
   Arabic (RTL): logo left, nav + buttons right.
   English (LTR): logo right, nav + buttons left. */
.header__inner {
  display: flex; align-items: center; gap: 20px;
  height: var(--header-h); max-width: var(--container); margin-inline: auto; padding-inline: 24px;
}
.header__logo { display: flex; align-items: center; flex: none; order: 2; margin-inline-start: auto; }
.nav { order: 0; }
.header__actions { order: 1; }
.header__logo img { height: 56px; width: auto; transition: transform 0.25s var(--ease-pop); }
.header__logo:hover img { transform: rotate(-3deg) scale(1.05); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink);
  padding: 10px 16px; border-radius: 999px; transition: background-color 0.18s ease, color 0.18s ease;
}
.nav a:hover { background: var(--sage-100); color: var(--green-700); }
.nav a.is-active { background: var(--green-600); color: #fff; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  font-family: var(--font-display); font-weight: 700; font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 7px; color: var(--ink);
  padding: 9px 16px; min-height: 44px; border-radius: 999px; background: var(--sage-100);
  transition: background-color 0.18s ease, transform 0.18s var(--ease-pop);
}
.lang-switch:hover { background: var(--sage-200); transform: translateY(-2px); }
.lang-switch svg { width: 17px; height: 17px; }

.header__wa { display: inline-flex; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; border-radius: 14px; background: var(--sage-100);
  align-items: center;
}
.nav-toggle span { display: block; width: 20px; height: 2.6px; border-radius: 2px; background: var(--ink); transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav {
    position: fixed; inset-inline: 16px; top: calc(var(--header-h) + 10px);
    flex-direction: column; align-items: stretch; gap: 6px;
    background: #fff; border-radius: var(--radius-lg); padding: 18px;
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 99;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 14px 18px; text-align: center; font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; }
  .header__wa { display: none; }
  .header__logo img { height: 48px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  max-width: var(--container); margin-inline: auto; padding: 72px 24px 120px;
}
.hero__badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  background: #fff; color: var(--green-700);
  border: 1.5px solid var(--sage-200);
  padding: 7px 15px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.hero__badge svg { width: 16px; height: 16px; }
.hero h1 { margin-bottom: 20px; }
.hero__sub { max-width: 470px; margin-bottom: 32px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__social { display: flex; align-items: center; gap: 10px; }
.hero__social-label { font-size: 0.9rem; font-weight: 500; color: var(--body); }

.hero__art { position: relative; }
.hero__photo-frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 1 / 1; box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}
.hero__photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__sticker {
  position: absolute; z-index: 3;
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; line-height: 1.3;
  padding: 12px 18px; border-radius: 18px; box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: 9px;
  animation: floaty 5s ease-in-out infinite;
}
.hero__sticker svg { width: 22px; height: 22px; flex: none; }
.hero__sticker--top { top: 26px; inset-inline-start: -14px; background: var(--gold-400); color: var(--ink); transform: rotate(-4deg); }
.hero__sticker--bottom { bottom: 34px; inset-inline-end: -10px; background: var(--green-600); color: #fff; transform: rotate(3deg); animation-delay: 1.6s; }
@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.hero__blob {
  position: absolute; z-index: -1; border-radius: 50%;
  filter: blur(60px); opacity: 0.5;
}
.hero__blob--gold { width: 420px; height: 420px; background: #FFE9A8; top: -120px; inset-inline-end: -100px; }
.hero__blob--green { width: 380px; height: 380px; background: #CDE8D2; bottom: -140px; inset-inline-start: -120px; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding-block: 44px 96px; gap: 40px; }
  .hero__photo-frame { aspect-ratio: 1 / 1; max-width: 480px; margin-inline: auto; }
  .hero__sticker--top { inset-inline-start: 4px; }
  .hero__sticker--bottom { inset-inline-end: 4px; }
}

/* Wavy divider */
.wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 2; pointer-events: none; }
.wave svg { display: block; width: 100%; height: 56px; }
.wave--top { top: -1px; bottom: auto; transform: scaleY(-1); }

/* ---------- Ticker ---------- */
.ticker { background: var(--green-700); color: #fff; overflow: hidden; padding-block: 16px; position: relative; z-index: 3; }
.ticker__track { display: flex; width: max-content; gap: 0; animation: ticker 30s linear infinite; }
.ticker__group { display: flex; align-items: center; flex: none; }
.ticker__item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  padding-inline: 22px; white-space: nowrap;
}
.ticker__item svg { width: 18px; height: 18px; color: var(--gold-300); }
@keyframes ticker { to { transform: translateX(calc(-100% / 3)); } }
[dir="rtl"] .ticker__track { animation-name: ticker-rtl; }
@keyframes ticker-rtl { to { transform: translateX(calc(100% / 3)); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; flex-wrap: wrap; width: auto; } }

/* ---------- Category cards ---------- */
.cats { background: var(--sage-50); }
.cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3 / 3.7; display: flex; align-items: flex-end;
  box-shadow: var(--shadow); isolation: isolate;
  transition: transform 0.28s var(--ease-pop), box-shadow 0.28s ease;
}
.cat-card:hover { transform: translateY(-8px) rotate(-0.6deg); box-shadow: var(--shadow-lg); }
.cat-card picture { display: contents; }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.5s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(14, 40, 22, 0.82) 0%, rgba(14, 40, 22, 0.12) 52%, transparent 75%);
}
.cat-card__body { padding: 24px; width: 100%; color: #fff; }
.cat-card__body h3 { color: #fff; font-size: 1.45rem; margin-bottom: 2px; }
.cat-card__body p { font-size: 0.92rem; opacity: 0.85; margin-bottom: 12px; }
.cat-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: var(--ink); background: var(--gold-400);
  padding: 8px 18px; border-radius: 999px;
  transition: gap 0.2s ease, background-color 0.2s ease;
}
.cat-card:hover .cat-card__cta { gap: 12px; background: var(--gold-300); }
.cat-card__cta svg { width: 16px; height: 16px; }
[dir="rtl"] .cat-card__cta svg, [dir="rtl"] .link-more svg { transform: scaleX(-1); }
@media (max-width: 1000px) { .cats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cats__grid { grid-template-columns: 1fr; } .cat-card { aspect-ratio: 4 / 3.4; } }

/* ---------- Feature cards (why us) ---------- */
.why { background: var(--ink); color: #E7E9F5; overflow: hidden; }
.why .section-head h2 { color: #fff; }
.why .section-head p { color: #B9BDD8; }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg); padding: 30px 26px;
  transition: transform 0.25s var(--ease-pop), background-color 0.25s ease;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.09); }
.why-card__icon {
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--gold-400); color: var(--ink);
  transform: rotate(-4deg);
}
.why-card:nth-child(2) .why-card__icon { background: #6FCF8B; }
.why-card:nth-child(3) .why-card__icon { background: #FF9E7A; }
.why-card:nth-child(4) .why-card__icon { background: #7FC7FF; }
.why-card__icon svg { width: 28px; height: 28px; }
.why-card h3 { color: #fff; font-size: 1.2rem; }
.why-card p { font-size: 0.95rem; color: #B9BDD8; margin: 0; }
@media (max-width: 1000px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why__grid { grid-template-columns: 1fr; } }

/* ---------- Product cards ---------- */
.products-strip { background: var(--cream); }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1100px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .prod-grid { grid-template-columns: 1fr; } }

.prod-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  border: 1.5px solid rgba(35, 37, 75, 0.06);
  transition: transform 0.28s var(--ease-pop), box-shadow 0.28s ease;
}
.prod-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.prod-card__media {
  position: relative;
  background: linear-gradient(165deg, #FFFFFF 0%, var(--sage-50) 58%, var(--sage-100) 100%);
}
.prod-card__media picture { display: block; }
/* Official product PNGs share one canvas (1993x2250), so keeping that ratio
   preserves the correct relative scale between bottles, jugs and tubs. */
.prod-card__media img {
  /* height:auto lets aspect-ratio drive the box; without it the width/height
     attributes (kept for CLS) would pin the height and stretch the card. */
  width: 100%; height: auto; aspect-ratio: 1993 / 2250;
  object-fit: contain; padding: 3% 8%;
  transition: transform 0.45s var(--ease-pop);
  filter: drop-shadow(0 12px 18px rgba(35, 37, 75, 0.16));
}
.prod-card:hover .prod-card__media img { transform: scale(1.06) translateY(-4px); }
.prod-card__flag {
  position: absolute; top: 14px; inset-inline-start: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  color: #fff; padding: 5px 13px; border-radius: 999px;
  background: var(--accent, var(--green-600));
}
.prod-card__badges { position: absolute; bottom: 12px; inset-inline-start: 14px; display: flex; gap: 6px; }
.prod-card__badges span {
  font-size: 0.72rem; font-weight: 600; background: rgba(255,255,255,0.92); color: var(--green-700);
  padding: 3px 10px; border-radius: 999px; border: 1px solid var(--sage-200);
}
.prod-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.prod-card__body h3 { font-size: 1.22rem; margin-bottom: 2px; }
.prod-card__alt { font-size: 0.85rem; color: #8B92A7; margin-bottom: 12px; font-weight: 500; }
.prod-card__desc { font-size: 0.92rem; margin-bottom: 14px; }

.price-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; margin-top: auto; }
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--sage-50); border-radius: 12px; padding: 7px 14px;
  font-size: 0.92rem;
}
.price-row__size { font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.price-row__size svg { width: 14px; height: 14px; color: var(--green-600); }
.price-row__price { font-family: var(--font-display); font-weight: 800; color: var(--green-700); font-variant-numeric: tabular-nums; }
.price-row__price small { font-weight: 600; font-size: 0.72em; color: #7F8698; margin-inline-start: 3px; }

.prod-card .btn--wa { width: 100%; }

/* ---------- Retailers ---------- */
.retailers { background: var(--sage-50); }
.retailers__grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  max-width: 1060px; margin-inline: auto;
}
.retailer-card {
  background: #fff; border-radius: var(--radius); border: 1.5px solid var(--sage-200);
  box-shadow: var(--shadow-sm); min-height: 104px;
  flex: 0 1 156px;
  display: grid; place-items: center; padding: 18px 16px;
  transition: transform 0.22s var(--ease-pop), box-shadow 0.22s ease, border-color 0.22s ease;
}
.retailer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-500); }
.retailer-card img {
  max-height: 52px; width: auto; max-width: 100%; object-fit: contain;
}
.retailers__note { text-align: center; margin-top: 30px; font-weight: 500; color: var(--body); }
.retailers__cta { text-align: center; margin-top: 26px; }
@media (max-width: 640px) {
  .retailers__grid { gap: 12px; }
  .retailer-card { flex: 0 1 calc(33.333% - 8px); min-height: 84px; padding: 12px 10px; }
  .retailer-card img { max-height: 38px; }
}
@media (max-width: 400px) { .retailer-card { flex: 0 1 calc(50% - 6px); } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--green-800); color: #fff; }
.cta-band__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center;
  max-width: var(--container); margin-inline: auto; padding: 88px 24px;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: #CFE4D2; max-width: 480px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.cta-band__art { position: relative; }
.cta-band__art img {
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4; object-fit: cover; width: 100%;
  transform: rotate(-1.5deg);
}
.cta-band__doodle { position: absolute; width: 190px; opacity: 0.16; pointer-events: none; }
.cta-band__doodle--1 { top: -40px; inset-inline-start: -50px; transform: rotate(20deg); }
.cta-band__doodle--2 { bottom: -50px; inset-inline-end: -40px; transform: rotate(-15deg); }
@media (max-width: 900px) {
  .cta-band__inner { grid-template-columns: 1fr; padding-block: 64px; }
  .cta-band__art { max-width: 440px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; background: var(--green-800); color: #fff; overflow: hidden; padding: 84px 0 110px; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #CFE4D2; max-width: 560px; font-size: 1.1rem; }
.page-hero__pattern { position: absolute; inset: 0; opacity: 0.07; pointer-events: none;
  background-image: radial-gradient(currentColor 1.6px, transparent 1.6px); background-size: 26px 26px; }
.page-hero .wave svg path { fill: var(--cream); }
.page-hero--sage .wave svg path { fill: var(--sage-50); }

/* ---------- Filters ---------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
  color: var(--ink); background: #fff; border: 2px solid var(--sage-200);
  padding: 10px 24px; min-height: 46px; border-radius: 999px;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--green-500); color: var(--green-700); transform: translateY(-2px); }
.filter-btn.is-active { background: var(--green-600); border-color: var(--green-600); color: #fff; box-shadow: 0 8px 20px -6px rgba(35, 135, 65, 0.5); }
.prod-card.is-hidden { display: none; }

/* Category intro chips on products page */
.cat-jump { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.cat-jump a {
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  background: rgba(255,255,255,0.14); color: #fff; padding: 8px 18px; border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.2s var(--ease-pop);
}
.cat-jump a:hover { background: var(--gold-400); color: var(--ink); transform: translateY(-2px); }

/* ---------- About page ---------- */
.story__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.story__art { position: relative; }
.story__art img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4/4.6; object-fit: cover; transform: rotate(1.4deg); }
.story__stamp {
  position: absolute; bottom: -22px; inset-inline-start: -14px;
  background: var(--gold-400); color: var(--ink); border-radius: 20px;
  font-family: var(--font-display); font-weight: 800; text-align: center;
  padding: 16px 22px; line-height: 1.2; box-shadow: var(--shadow); transform: rotate(-3deg);
}
.story__stamp strong { display: block; font-size: 1.7rem; }
@media (max-width: 900px) { .story__grid { grid-template-columns: 1fr; gap: 44px; } }

.vm__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card { border-radius: var(--radius-lg); padding: 38px 34px; position: relative; overflow: hidden; }
.vm-card--vision { background: var(--green-700); color: #fff; }
.vm-card--vision h3, .vm-card--mission h3 { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; }
.vm-card--vision h3 { color: #fff; }
.vm-card--vision p { color: #D6EBDA; margin: 0; }
.vm-card--mission { background: #FFF4D6; color: var(--ink); }
.vm-card--mission ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.vm-card--mission li { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.vm-card--mission li svg { width: 20px; height: 20px; color: var(--green-600); flex: none; margin-top: 5px; }
.vm-card h3 svg { width: 26px; height: 26px; }
@media (max-width: 820px) { .vm__grid { grid-template-columns: 1fr; } }

.quality { background: var(--sage-50); }
.quality__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.q-item {
  background: #fff; border-radius: var(--radius); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  border: 1.5px solid var(--sage-200);
  transition: transform 0.2s var(--ease-pop), box-shadow 0.2s ease;
}
.q-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.q-item__icon {
  width: 46px; height: 46px; flex: none; border-radius: 14px;
  background: var(--sage-100); color: var(--green-700); display: grid; place-items: center;
}
.q-item__icon svg { width: 24px; height: 24px; }
.q-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.q-item p { font-size: 0.9rem; margin: 0; }
@media (max-width: 900px) { .quality__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .quality__grid { grid-template-columns: 1fr; } }

.growth__list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: growth; }
.g-step {
  background: #fff; border-radius: var(--radius); padding: 26px 22px;
  border: 1.5px solid var(--sage-200); position: relative;
  transition: transform 0.2s var(--ease-pop), box-shadow 0.2s ease;
}
.g-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.g-step::before {
  counter-increment: growth; content: "0" counter(growth);
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  color: var(--gold-500); display: block; margin-bottom: 8px;
}
.g-step p { font-weight: 500; color: var(--ink); font-size: 0.95rem; margin: 0; }
@media (max-width: 1000px) { .growth__list { grid-template-columns: repeat(2, 1fr); } .g-step:last-child { grid-column: 1 / -1; } }
@media (max-width: 520px) { .growth__list { grid-template-columns: 1fr; } .g-step:last-child { grid-column: auto; } }

.stats { background: var(--green-800); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat strong { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: var(--gold-300); display: block; line-height: 1.1; font-variant-numeric: tabular-nums; }
.stat span { font-weight: 500; color: #CFE4D2; }
@media (max-width: 700px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; } }

/* ---------- Contact page ---------- */
.contact__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: start; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

.wa-card {
  background: linear-gradient(135deg, #128C4B, #25D366);
  color: #fff; border-radius: var(--radius-lg); padding: 42px 38px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.wa-card::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); top: -140px; inset-inline-end: -120px;
}
.wa-card h2 { color: #fff; font-size: 1.75rem; }
.wa-card p { color: #E2FBEB; max-width: 400px; }
.wa-card .btn { background: #fff; color: var(--wa-dark); margin-top: 18px; position: relative; z-index: 2; }
.wa-card .btn:hover { background: #F0FFF6; }
.wa-card__number { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: 0.5px; direction: ltr; unicode-bidi: embed; }

.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex; align-items: center; gap: 18px;
  background: #fff; border: 1.5px solid var(--sage-200); border-radius: var(--radius);
  padding: 20px 24px; transition: transform 0.2s var(--ease-pop), box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent, var(--green-500)); }
.contact-item__icon {
  width: 52px; height: 52px; flex: none; display: grid; place-items: center;
  border-radius: 16px; background: var(--accent, var(--green-600)); color: #fff;
}
.contact-item__icon svg { width: 26px; height: 26px; }
.contact-item h3 { font-size: 1.05rem; margin: 0; }
.contact-item span { font-size: 0.88rem; color: #8B92A7; font-weight: 500; }
.contact-item__arrow { margin-inline-start: auto; color: #C4C9D9; }
.contact-item__arrow svg { width: 20px; height: 20px; }
[dir="rtl"] .contact-item__arrow svg { transform: scaleX(-1); }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1.5px solid var(--sage-200); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

.hours { background: var(--sage-50); border-radius: var(--radius-lg); padding: 30px 34px; margin-top: 24px; }
.hours h3 { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; }
.hours h3 svg { width: 22px; height: 22px; color: var(--green-600); }
.hours p { margin: 0; font-weight: 500; }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: #C4DCC9; position: relative; }
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  max-width: var(--container); margin-inline: auto; padding: 72px 24px 48px;
}
.footer__brand img { height: 84px; width: auto; }
.footer__brand p { margin-top: 18px; max-width: 300px; font-size: 0.95rem; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { transition: color 0.18s ease, padding 0.18s ease; font-weight: 500; }
.footer__links a:hover { color: var(--gold-300); padding-inline-start: 4px; }
.footer__contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.footer__contact svg { width: 19px; height: 19px; color: var(--gold-300); flex: none; margin-top: 5px; }
.footer__contact a:hover { color: var(--gold-300); }

.social-row { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.social-btn {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.08); color: #fff;
  transition: transform 0.2s var(--ease-pop), background-color 0.2s ease, color 0.2s ease;
}
.social-btn svg { width: 22px; height: 22px; }
.social-btn:hover { transform: translateY(-4px) rotate(-4deg); background: var(--gold-400); color: var(--ink); }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer__bottom-inner {
  max-width: var(--container); margin-inline: auto; padding: 20px 24px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between;
  font-size: 0.88rem;
}
@media (max-width: 1000px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 26px; inset-inline-end: 26px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.65);
  transition: transform 0.22s var(--ease-pop);
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-float::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2.5px solid var(--wa); opacity: 0.55;
  animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 0.55; }
  80%, 100% { transform: scale(1.35); opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s var(--ease-pop); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s var(--ease-pop); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.03s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.17s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.31s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.38s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(n+8) { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ---------- Misc ---------- */
.link-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; color: var(--green-700);
}
.link-more svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.link-more:hover svg { transform: translateX(4px); }
[dir="rtl"] .link-more:hover svg { transform: scaleX(-1) translateX(4px); }

::selection { background: var(--gold-400); color: var(--ink); }

/* ---------- Small-screen refinements ---------- */
@media (max-width: 700px) {
  :root { --header-h: 68px; }
  .section { padding-block: 60px; }
  .section--tight { padding-block: 44px; }
  .section-head { margin-bottom: 36px; }
  .hero__inner { padding-block: 32px 84px; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .cta-band__actions .btn { flex: 1 1 100%; }
  .wave svg { height: 36px; }
  .wa-float { width: 56px; height: 56px; bottom: 18px; inset-inline-end: 18px; }
  .wa-float svg { width: 28px; height: 28px; }
  .hero__sticker { font-size: 0.82rem; padding: 9px 14px; }
  .hero__sticker svg { width: 18px; height: 18px; }
  .prod-card__body { padding: 16px 16px 18px; }
  .wa-card { padding: 30px 24px; }
  .wa-card__number { font-size: 1.28rem; }
  .vm-card { padding: 30px 24px; }
  .map-wrap iframe { height: 300px; }
  .footer__top { padding: 52px 24px 36px; }
}

/* Very small phones: keep the two hero badges from crowding */
@media (max-width: 380px) {
  .hero__badge { font-size: 0.82rem; padding: 6px 12px; }
  .btn { font-size: 0.96rem; padding: 13px 22px; }
  .container { padding-inline: 18px; }
}

/* Large screens: stop the layout stretching thin */
@media (min-width: 1600px) {
  :root { --container: 1320px; }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero__inner { padding-block: 28px 70px; }
  .nav { max-height: 70vh; overflow-y: auto; }
}

/* Honour users who prefer more contrast */
@media (prefers-contrast: more) {
  .prod-card, .retailer-card, .q-item, .g-step { border-color: var(--ink); }
  .prod-card__alt, .contact-item span { color: var(--body); }
}
