/* ==========================================================================
   Mousa Supplements — storefront
   ========================================================================== */
:root {
  --bg: #eef1ef;
  --surface: #ffffff;
  --surface-2: #e7ece9;
  --ink: #0b1512;
  --ink-soft: #444f4b;
  --ink-mute: #8b948f;
  --line: #e0e6e2;
  --line-soft: #eaefec;
  --brand: #00c46a;
  --brand-dark: #009a53;
  --brand-ink: #04241a;
  --brand-tint: #e3f8ee;
  --heat: #ff6a2b;
  --heat-dark: #e2531a;
  --heat-tint: #fff0e8;
  /* dark surfaces — warm green-black, not blue navy */
  --navy: #0a1310;
  --navy-2: #10201a;
  --navy-3: #1b3128;
  --ink-deep: #070d0b;
  --sale: #ff4d4f;
  --warn: #f59e0b;
  --danger: #ef4444;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-xs: 0 1px 2px rgba(9,20,15,.05);
  --shadow-sm: 0 2px 6px rgba(9,20,15,.06), 0 1px 2px rgba(9,20,15,.04);
  --shadow-md: 0 12px 34px rgba(9,20,15,.11);
  --shadow-lg: 0 26px 64px rgba(9,20,15,.18);
  --shadow-brand: 0 12px 26px rgba(0,196,106,.34);
  --disp: 'Barlow Condensed', 'Cairo', system-ui, sans-serif;
  --maxw: 1220px;
  --header-h: 140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Cairo', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html[dir="ltr"] body { font-family: 'Inter', 'Cairo', system-ui, sans-serif; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.18; font-weight: 800; letter-spacing: -0.01em; text-wrap: balance; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid rgba(0,196,106,.5); outline-offset: 2px; border-radius: 4px; }

/* condensed display face for Latin headings, eyebrows, numerals */
.u-disp { font-family: var(--disp); font-weight: 800; letter-spacing: .01em; }
.eyebrow {
  font-family: var(--disp); font-weight: 700; font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-dark);
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 58px 0; scroll-margin-top: 130px; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 26px; position: relative;
}
.section-head h1, .section-head h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem); margin: 0; line-height: 1.1;
  position: relative; padding-inline-start: 16px;
}
.section-head h1::before, .section-head h2::before {
  content: ''; position: absolute; inset-inline-start: 0; top: .12em; bottom: .12em;
  width: 5px; border-radius: 999px; background: linear-gradient(var(--brand), var(--brand-dark));
}
.section-link, .panel-link {
  color: var(--brand-dark); font-weight: 800; white-space: nowrap; font-size: .9rem;
  display: inline-flex; align-items: center; gap: 4px;
}
.section-link:hover { color: var(--brand); gap: 8px; }
.section-link { transition: gap .15s; }
.muted { color: var(--ink-mute); }
.small { font-size: .86rem; }
.hidden-form { display: none; }

/* ---- Buttons ---- */
.btn {
  --btn-bg: var(--surface-2); --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; border: 1px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg);
  font: inherit; font-weight: 700; cursor: pointer;
  transition: transform .12s cubic-bezier(.2,.8,.2,1), box-shadow .2s, background .2s, filter .2s;
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ic { width: 17px; height: 17px; flex-shrink: 0; }
.btn-primary { --btn-bg: linear-gradient(135deg, #14e082, var(--brand-dark)); --btn-fg: #04281a; box-shadow: var(--shadow-brand); }
.btn-primary:hover { filter: brightness(1.05); box-shadow: 0 16px 32px rgba(0,196,106,.42); }
.btn-heat { --btn-bg: linear-gradient(135deg, #ff8347, var(--heat-dark)); --btn-fg: #fff; box-shadow: 0 12px 26px rgba(255,106,43,.32); }
.btn-heat:hover { filter: brightness(1.05); }
.btn-dark { --btn-bg: var(--navy); --btn-fg: #fff; }
.btn-dark:hover { --btn-bg: var(--navy-2); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-soft); background: var(--surface); }
.btn-hero-ghost { --btn-bg: rgba(255,255,255,.08); --btn-fg: #fff; border-color: rgba(255,255,255,.22); backdrop-filter: blur(4px); }
.btn-hero-ghost:hover { --btn-bg: rgba(255,255,255,.16); }
.btn-whatsapp { --btn-bg: #25D366; --btn-fg: #04281a; box-shadow: 0 10px 24px rgba(37,211,102,.32); }
.btn-danger { --btn-bg: #fdeaea; --btn-fg: var(--danger); }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 28px; font-size: 1.03rem; }
.btn-sm { padding: 8px 14px; font-size: .85rem; }
.btn-xs { padding: 5px 10px; font-size: .78rem; }
.btn.is-loading { color: transparent !important; position: relative; pointer-events: none; }
.btn.is-loading::after {
  content: ''; position: absolute; width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid currentColor; border-top-color: transparent; animation: spin .6s linear infinite;
  color: #04281a;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Announce marquee ---- */
.marquee {
  background: linear-gradient(90deg, var(--ink-deep), var(--navy-2) 50%, var(--ink-deep));
  color: #eafff4; overflow: hidden; border-bottom: 1px solid rgba(0,196,106,.22);
  --marquee-speed: 32s;
}
.marquee-track {
  display: flex; align-items: center; white-space: nowrap; width: max-content;
  padding-block: 9px;
  animation: marquee var(--marquee-speed) linear infinite;
}
.marquee-set { display: flex; align-items: center; }
html[dir="rtl"] .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: .84rem; font-weight: 700; letter-spacing: .01em; padding-inline: 18px;
}
.marquee-dot { color: var(--brand); font-size: .7rem; opacity: .9; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; scrollbar-width: none; }
  .marquee::-webkit-scrollbar { display: none; }
  .marquee-track { animation: none; width: auto; }
  .marquee-set:nth-child(2) { display: none; }
}

/* ---- Header ---- */
.site-header { background: var(--navy); color: #fff; position: sticky; top: 0; z-index: 40; box-shadow: 0 1px 0 rgba(255,255,255,.06), var(--shadow-md); }
.header-inner {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 22px; padding: 14px 20px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--disp); font-weight: 800; font-size: 1.4rem; letter-spacing: .01em; color: #fff; text-transform: uppercase; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: var(--brand-ink);
  font-weight: 900; font-size: 1.3rem; box-shadow: 0 6px 16px rgba(0,196,106,.4);
}
.brand-logo { height: 42px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.site-footer .brand-logo { height: 34px; }
.search { display: flex; background: rgba(255,255,255,.09); border-radius: 999px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); transition: border-color .2s, background .2s; }
.search:focus-within { border-color: var(--brand); background: rgba(255,255,255,.14); }
.search input { flex: 1; border: 0; background: transparent; color: #fff; padding: 11px 20px; font: inherit; min-width: 0; }
.search input::placeholder { color: rgba(255,255,255,.55); }
.search input:focus { outline: none; }
.search button { border: 0; background: transparent; color: #fff; padding: 0 18px; cursor: pointer; display: grid; place-items: center; }
.search button:hover { color: var(--brand); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 7px 15px;
  font-weight: 700; font-size: .8rem; color: #fff; transition: background .2s;
}
.lang-toggle:hover { background: rgba(255,255,255,.12); }
.sound-toggle {
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.04); color: #fff;
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s; flex-shrink: 0;
}
.sound-toggle:hover { background: rgba(255,255,255,.12); }
.sound-toggle svg { width: 18px; height: 18px; }
.sound-toggle .ic-off { display: none; }
.sound-toggle.is-off { color: var(--ink-mute); }
.sound-toggle.is-off .ic-on { display: none; }
.sound-toggle.is-off .ic-off { display: block; }
.cart-link { position: relative; color: #fff; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; transition: background .2s; }
.cart-link:hover { background: rgba(255,255,255,.1); }
.cart-count {
  position: absolute; inset-block-start: -4px; inset-inline-end: -4px;
  background: var(--brand); color: var(--brand-ink); font-size: .72rem; font-weight: 800;
  min-width: 19px; height: 19px; border-radius: 999px; display: grid; place-items: center; padding: 0 4px;
  border: 2px solid var(--navy);
}
.cart-count.bump { animation: bump .4s cubic-bezier(.2,.8,.2,1); }
@keyframes bump { 30% { transform: scale(1.35); } 60% { transform: scale(.9); } }
.subnav { background: var(--navy-2); border-top: 1px solid rgba(255,255,255,.07); }
.subnav-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 6px;
  padding: 8px 20px; max-width: var(--maxw); margin: 0 auto; scrollbar-width: none;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav-inner a {
  white-space: nowrap; color: rgba(255,255,255,.66); font-size: .86rem; font-weight: 700;
  padding: 7px 14px; border-radius: 999px; transition: color .15s, background .15s;
}
.subnav-inner a:hover { color: #fff; background: rgba(255,255,255,.09); }
.subnav-inner a.active { color: var(--brand-ink); background: var(--brand); box-shadow: 0 4px 12px rgba(0,196,106,.35); }
@media (max-width: 720px) {
  .subnav-inner { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; }
}

/* ---- Flash ---- */
.flash-wrap { padding-top: 18px; }
.flash { padding: 13px 17px; border-radius: var(--radius-sm); font-weight: 600; margin-bottom: 10px; border: 1px solid transparent; }
.flash-success { background: var(--brand-tint); color: #06603f; border-color: #b9ecd8; }
.flash-error { background: #fdecec; color: #a11c1c; border-color: #f4c9c9; }

/* ---- Hero ---- */
.hero {
  background:
    radial-gradient(720px 420px at 82% -12%, rgba(0,196,106,.30), transparent 62%),
    radial-gradient(560px 420px at -8% 118%, rgba(255,106,43,.14), transparent 60%),
    var(--ink-deep);
  color: #fff; overflow: hidden; position: relative;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 0%, #000, transparent);
          mask-image: radial-gradient(70% 70% at 50% 0%, #000, transparent);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 44px; padding: 74px 20px 82px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--disp);
  font-size: .86rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); background: rgba(0,196,106,.12); border: 1px solid rgba(0,196,106,.28);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 10px var(--brand); }
.hero-text h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); line-height: 1.06; margin-bottom: .38em; letter-spacing: -.02em; }
.hero-text h1 .hl { color: var(--brand); }
.hero-text p { color: rgba(255,255,255,.74); font-size: 1.08rem; margin-bottom: 1.5em; max-width: 34ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px 10px; margin-top: 22px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 700;
  color: rgba(255,255,255,.82); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); padding: 6px 12px; border-radius: 999px;
}
.hero-chip svg { width: 15px; height: 15px; color: var(--brand); }
.hero-card {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 12px; backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 4px;
}
.hero-card-row { display: flex; align-items: center; gap: 14px; padding: 17px; border-radius: var(--radius); transition: background .2s; }
.hero-card-row:hover { background: rgba(255,255,255,.06); }
.hero-card-ic {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(0,196,106,.24), rgba(0,196,106,.08)); color: var(--brand);
  border: 1px solid rgba(0,196,106,.22);
}
.hero-card-ic svg { width: 24px; height: 24px; }
.hero-card-row strong { display: block; font-size: 1.02rem; }
.hero-card-row span { font-size: .85rem; color: rgba(255,255,255,.6); }

/* ---- Category grid ---- */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 14px; }
.category-chip {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 14px; display: flex; flex-direction: column; align-items: center; gap: 13px;
  text-align: center; font-weight: 800; overflow: hidden;
  transition: transform .16s, box-shadow .24s, border-color .2s;
}
.category-chip::after {
  content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  transform: scaleX(0); transform-origin: center; transition: transform .24s;
}
.category-chip:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(0,196,106,.45); }
.category-chip:hover::after { transform: scaleX(1); }
.category-chip-icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand-tint), #d7f4e6); color: var(--brand-dark);
  transition: background .2s, color .2s, transform .2s;
}
.category-chip:hover .category-chip-icon { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; transform: scale(1.06) rotate(-3deg); }
.cat-svg { width: 30px; height: 30px; }
.category-chip-name { font-size: .94rem; }

/* ---- Trust band ---- */
.trust-band { background: var(--ink-deep); color: #fff; border-block: 1px solid rgba(0,196,106,.16); }
.trust-band-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 26px 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.trust-cell { display: flex; align-items: center; gap: 13px; }
.trust-cell svg { width: 26px; height: 26px; color: var(--brand); flex-shrink: 0; }
.trust-cell strong { display: block; font-size: .98rem; line-height: 1.3; }
.trust-cell span { font-size: .82rem; color: rgba(255,255,255,.58); }
@media (max-width: 860px) { .trust-band-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .trust-band-inner { grid-template-columns: 1fr; } }

/* ---- 3-step strip ---- */
.steps-strip {
  background:
    radial-gradient(500px 300px at 100% 0%, rgba(0,196,106,.16), transparent 60%),
    var(--navy);
  color: #fff; padding: 54px 0;
}
.steps-title { text-align: center; font-size: clamp(1.3rem, 2.6vw, 1.9rem); margin-bottom: 32px; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: s; }
.steps li {
  position: relative; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 24px 22px 22px; text-align: center;
}
.step-num {
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: var(--brand-ink);
  font-weight: 900; font-size: 1.1rem; margin-bottom: 12px;
}
.steps li strong { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.steps li span { color: rgba(255,255,255,.6); font-size: .9rem; }
.steps li:not(:last-child)::after {
  content: '→'; position: absolute; inset-inline-start: -13px; top: 50%; transform: translateY(-50%);
  color: var(--brand); font-size: 1.3rem; font-weight: 700;
}
html[dir="rtl"] .steps li:not(:last-child)::after { content: '←'; inset-inline-start: auto; inset-inline-end: -13px; }

/* ---- Product grid + card ---- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(224px, 1fr)); gap: 18px; }
.product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .16s, box-shadow .28s, border-color .2s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,196,106,.4); }
.product-card-media {
  position: relative; aspect-ratio: 1 / 1; background: #fff; display: grid; place-items: center; overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.product-card-media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; mix-blend-mode: multiply; transition: transform .4s; }
.product-card:hover .product-card-media img { transform: scale(1.06); }
.thumb-ph {
  width: 100%; height: 100%; display: grid; place-items: center;
  background: linear-gradient(140deg, #eef2f0, #e0e7e3); color: #b3bfba;
}
.thumb-ph svg { width: 42%; height: 42%; }
.badge {
  position: absolute; font-family: var(--disp); font-size: .82rem; font-weight: 800; letter-spacing: .02em;
  padding: 4px 10px; border-radius: 7px; inset-block-start: 12px; box-shadow: var(--shadow-xs);
}
.badge-sale { inset-inline-start: 12px; background: var(--heat); color: #fff; direction: ltr; }
.badge-out { inset-inline-end: 12px; background: #5b6b64; color: #fff; }
.badge-low { inset-inline-end: 12px; background: var(--warn); color: #3a2500; }
.product-card-body { padding: 15px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card-cat { font-family: var(--disp); font-size: .8rem; color: var(--brand-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.product-card-title { font-size: .97rem; font-weight: 700; margin: 0; line-height: 1.4; }
.product-card-title a:hover { color: var(--brand-dark); }
.product-card-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 6px; }
.price-now { font-family: var(--disp); font-weight: 800; font-size: 1.34rem; color: var(--ink); letter-spacing: .01em; }
.price-was { text-decoration: line-through; color: var(--ink-mute); font-size: .85rem; }
.product-card-add { margin-top: 9px; }

/* ---- Why strip ---- */
.why-strip { background: var(--surface); border-block: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 34px 20px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-ic { font-size: 1.7rem; }
.why-item strong { display: block; }
.why-item p { margin: 2px 0 0; color: var(--ink-soft); font-size: .9rem; }

/* ---- Shop layout (filters) ---- */
.shop-layout { display: grid; grid-template-columns: 264px 1fr; gap: 28px; align-items: start; }
.shop-filters { position: sticky; top: calc(var(--header-h) + 16px); }
.filter-form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.filter-form h3 { font-size: 1.05rem; margin: 0; }
.filter-form-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.filter-close { display: none; border: 0; background: var(--surface-2); width: 34px; height: 34px; border-radius: 9px; font-size: 1rem; cursor: pointer; color: var(--ink-soft); }
.filter-fab {
  display: none; align-items: center; gap: 8px; margin: 0 0 18px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  font: inherit; font-weight: 800; padding: 11px 18px; border-radius: 999px; cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.filter-fab svg { width: 18px; height: 18px; }
.filter-label { font-size: .8rem; font-weight: 700; color: var(--ink-soft); margin-top: 6px; }
.filter-form select, .filter-form input[type="number"] {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; background: var(--surface);
}
.filter-form select:focus, .filter-form input:focus { outline: 2px solid rgba(18,209,142,.4); border-color: var(--brand); }
.filter-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.filter-check { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; margin: 6px 0; }
.filter-check input { accent-color: var(--brand-dark); width: 16px; height: 16px; }
.results-count {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 4px 13px;
  font-size: .82rem; font-weight: 800; color: var(--ink-soft);
}
.empty-state { text-align: center; padding: 70px 20px; background: var(--surface); border-radius: var(--radius); border: 1px dashed var(--line); }
.empty-ic { font-size: 3rem; display: block; margin-bottom: 12px; }

/* ---- Pagination ---- */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.page-btn {
  min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0 10px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); font-weight: 700;
  transition: border-color .15s, background .15s;
}
.page-btn:hover { border-color: var(--brand); }
.page-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.page-ellipsis { display: grid; place-items: center; min-width: 24px; color: var(--ink-mute); }

/* ---- Product detail ---- */
.crumbs { font-size: .85rem; color: var(--ink-mute); margin-bottom: 20px; }
.crumbs a:hover { color: var(--brand-dark); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-bottom: 54px; }
.gallery-main {
  aspect-ratio: 1 / 1; max-height: 480px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: grid; place-items: center;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; max-height: 480px; }
.gallery-placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  background: linear-gradient(140deg, #eef1f5, #e2e7ee); color: #b6c0cd;
}
.gallery-placeholder svg { width: 34%; height: 34%; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumb {
  width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--line);
  background: none; cursor: pointer; padding: 0; transition: border-color .15s;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--brand); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info-cat { color: var(--brand-dark); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.product-info h1 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin: 8px 0 12px; }
.product-info-short { color: var(--ink-soft); font-size: 1.02rem; }
.product-info-price { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 6px; flex-wrap: wrap; }
.product-info-price .price-now { font-size: 1.95rem; }
.save-line { color: var(--sale); font-weight: 800; font-size: .9rem; margin-bottom: 16px; direction: rtl; }
html[dir="ltr"] .save-line { direction: ltr; }
.stock-line { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.stock-pill { font-size: .82rem; font-weight: 800; padding: 6px 13px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.stock-pill::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.stock-in { background: var(--brand-tint); color: #06603f; }
.stock-low { background: #fef3e2; color: #92590b; }
.stock-out { background: #f1f5f9; color: #475569; }
.sku { font-size: .8rem; color: var(--ink-mute); }
.product-buy { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 20px; }
/* hide native number spinners everywhere */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; appearance: textfield; }

.qty-control {
  display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px;
  overflow: hidden; background: var(--surface); box-shadow: var(--shadow-xs); user-select: none;
}
.qty-btn {
  width: 44px; height: 46px; border: 0; background: transparent; font-size: 1.35rem; line-height: 1;
  cursor: pointer; color: var(--ink-soft); transition: background .12s, color .12s; font-weight: 700;
}
.qty-btn:hover { background: var(--brand-tint); color: var(--brand-dark); }
.qty-btn:active { background: var(--brand); color: #fff; }
.qty-control .qty-num, .qty-control input {
  width: 46px; text-align: center; border: 0; font: inherit; font-weight: 800; padding: 10px 0;
  background: transparent; color: var(--ink); -moz-appearance: textfield; appearance: textfield;
}
.qty-control .qty-num:focus, .qty-control input:focus { outline: none; }
.qty-control.qty-sm .qty-btn { width: 36px; height: 38px; font-size: 1.15rem; }
.qty-control.qty-sm .qty-num { width: 40px; padding: 8px 0; }
.qty-num.capped { color: var(--warn); }

/* live cart row states */
.cart-row.is-busy { opacity: .55; pointer-events: none; }
.cart-row.removing { opacity: 0; transform: translateX(12px); transition: opacity .25s, transform .25s; }
html[dir="rtl"] .cart-row.removing { transform: translateX(-12px); }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 16px 0; margin-bottom: 8px;
  border-block: 1px solid var(--line); font-size: .88rem; color: var(--ink-soft); font-weight: 600;
}
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 17px; height: 17px; color: var(--brand-dark); }
.product-description { border-top: 1px solid var(--line); padding-top: 22px; margin-top: 22px; }
.product-description h3 { font-size: 1.08rem; }
.product-description p { color: var(--ink-soft); white-space: pre-line; line-height: 1.75; }

.variant-field { margin: 8px 0 14px; max-width: 340px; }
.variant-field select { width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; background: var(--surface); }
.cart-variant { display: block; font-size: .8rem; color: var(--ink-mute); font-weight: 600; margin-top: 2px; }

/* sticky mobile buy bar */
.buy-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 30; display: none;
  background: var(--surface); border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(11,18,32,.1);
  align-items: center; gap: 12px;
}
.buy-bar .bb-price { font-weight: 800; font-size: 1.1rem; white-space: nowrap; }
.buy-bar .btn { flex: 1; }

/* ---- Cart ---- */
.cart-layout { display: grid; grid-template-columns: 1fr 350px; gap: 28px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cart-table th { text-align: start; font-size: .76rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-mute); padding: 15px 16px; border-bottom: 1px solid var(--line); }
.cart-table td { padding: 15px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: 0; }
.cart-product { display: flex; align-items: center; gap: 13px; }
.cart-thumb { width: 60px; height: 60px; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); display: grid; place-items: center; flex-shrink: 0; color: #b6c0cd; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-thumb svg { width: 26px; height: 26px; }
.cart-name { font-weight: 700; }
.cart-name:hover { color: var(--brand-dark); }
.cart-qty { width: 66px; padding: 9px; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; text-align: center; }
.cart-remove { border: 0; background: var(--surface-2); width: 32px; height: 32px; border-radius: 9px; cursor: pointer; color: var(--ink-soft); font-weight: 700; transition: background .15s, color .15s; }
.cart-remove:hover { background: #fdeaea; color: var(--danger); }
.cart-actions { display: flex; justify-content: space-between; margin-top: 16px; gap: 12px; }
.cart-summary, .checkout-summary {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  position: sticky; top: calc(var(--header-h) + 16px);
}
.cart-summary h3, .checkout-summary h3 { font-size: 1.08rem; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: .93rem; }
.summary-row.muted { color: var(--ink-mute); font-size: .84rem; }
.summary-total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 15px; font-size: 1.15rem; font-weight: 800; }
.summary-items { list-style: none; padding: 0; margin: 0 0 12px; }
.summary-items li { display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; font-size: .88rem; border-bottom: 1px dashed var(--line); }
.pay-note { margin-top: 12px; font-size: .84rem; color: var(--ink-soft); background: var(--brand-tint); border-radius: var(--radius-sm); padding: 10px 12px; }

/* ---- Checkout ---- */
.checkout-layout { display: grid; grid-template-columns: 1fr 370px; gap: 28px; align-items: start; }
.checkout-main { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.checkout-banner {
  display: flex; align-items: center; gap: 12px; background: var(--brand-tint); border: 1px solid #bdeeda;
  border-radius: var(--radius-sm); padding: 13px 16px; margin-bottom: 22px; font-weight: 600; color: #06603f; font-size: .92rem;
}
.checkout-banner svg { width: 22px; height: 22px; flex-shrink: 0; }
.checkout-step-h { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; margin: 24px 0 14px; }
.checkout-step-h:first-of-type { margin-top: 0; }
.checkout-step-h .n {
  width: 26px; height: 26px; border-radius: 8px; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-size: .85rem; font-weight: 800; flex-shrink: 0;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 15px; }
.field > span { font-size: .85rem; font-weight: 700; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; background: var(--surface); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid rgba(18,209,142,.4); border-color: var(--brand); }
.field-error { color: var(--danger); font-size: .8rem; font-style: normal; font-weight: 600; }
.radio-card { display: flex; align-items: center; gap: 11px; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 10px; cursor: pointer; transition: border-color .15s, background .15s; }
.radio-card:hover { border-color: var(--ink-soft); }
.radio-card:has(input:checked) { border-color: var(--brand); background: var(--brand-tint); }
.radio-card input { accent-color: var(--brand-dark); width: 17px; height: 17px; }
.checkout-summary .btn { margin-top: 6px; }

/* ---- Order success ---- */
.order-success { max-width: 640px; }
.success-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; text-align: center; box-shadow: var(--shadow-sm); }
.success-ic { font-size: 3.6rem; }
.success-thanks { color: var(--ink-soft); }
.order-number-box { display: inline-flex; flex-direction: column; gap: 2px; background: var(--surface-2); border-radius: var(--radius-sm); padding: 13px 28px; margin: 14px 0 20px; }
.order-number-box span { font-size: .78rem; color: var(--ink-mute); font-weight: 700; }
.order-number-box strong { font-size: 1.4rem; letter-spacing: .05em; }
.wa-prompt { background: var(--brand-tint); border: 1px solid #c5ebd3; border-radius: var(--radius); padding: 20px; margin: 16px 0; }
.order-recap { text-align: start; border-top: 1px solid var(--line); margin-top: 24px; padding-top: 20px; }
.order-recap ul { list-style: none; padding: 0; margin: 0 0 12px; }
.order-recap li { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.recap-address { font-size: .86rem; color: var(--ink-soft); margin-top: 12px; }

/* ---- Contact ---- */
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; max-width: 560px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); font-weight: 600; }
.contact-list li:last-child { border-bottom: 0; }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.68); margin-top: 46px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding: 50px 20px 32px; }
.footer-brand { color: #fff; margin-bottom: 12px; }
.footer-about { font-size: .9rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 13px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 6px 0; font-size: .9rem; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.1); padding-block: 20px; font-size: .82rem; flex-wrap: wrap; gap: 8px; }
.footer-admin { border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 6px 15px; }
.footer-admin:hover { background: rgba(255,255,255,.1); }

/* ---- Cart toast ---- */
.cart-toast {
  position: fixed; z-index: 60; inset-inline: 0; bottom: 20px; margin: 0 auto; width: max-content; max-width: calc(100vw - 32px);
  display: flex; align-items: center; gap: 12px;
  background: var(--navy); color: #fff; border-radius: 999px; padding: 12px 16px 12px 20px;
  box-shadow: var(--shadow-lg); font-weight: 600; font-size: .92rem;
  transform: translateY(140%); transition: transform .32s cubic-bezier(.2,.9,.2,1);
}
.cart-toast.show { transform: translateY(0); }
.cart-toast.err { background: #7f1d1d; }
.cart-toast svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }
.cart-toast.err svg { color: #fca5a5; }
.cart-toast .cart-toast-msg { max-width: 44ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-toast-link {
  background: var(--brand); color: var(--brand-ink); font-weight: 800; padding: 7px 14px; border-radius: 999px; white-space: nowrap;
}

/* ---- Nutrition calculator ---- */
.calc-head { text-align: center; max-width: 620px; margin: 0 auto 30px; }
.calc-head h1 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
.calc-head p { color: var(--ink-soft); font-size: 1.02rem; margin: 0; }
.calc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; max-width: 980px; margin: 0 auto; }
.calc-form, .calc-results {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.calc-gender { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.calc-gender-opt { position: relative; }
.calc-gender-opt input { position: absolute; opacity: 0; }
.calc-gender-opt span {
  display: block; text-align: center; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-weight: 700; cursor: pointer; transition: border-color .15s, background .15s;
}
.calc-gender-opt input:checked + span { border-color: var(--brand); background: var(--brand-tint); color: #06603f; }
.calc-gender-opt input:focus-visible + span { outline: 3px solid rgba(18,209,142,.45); }
.calc-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.calc-actions { display: flex; gap: 10px; margin-top: 6px; }
.calc-actions .btn-block { flex: 1; }

.calc-results h2 { font-size: 1.2rem; margin-bottom: 16px; }
.calc-sub { font-size: 1rem; margin: 20px 0 10px; }
.calc-target {
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff;
  border-radius: var(--radius-sm); padding: 18px 20px; text-align: center; margin-bottom: 14px;
}
.calc-target-label { display: block; font-size: .82rem; color: rgba(255,255,255,.65); font-weight: 700; }
.calc-target-value { display: block; font-size: 1.05rem; margin-top: 4px; }
.calc-target-value strong { font-size: 2rem; font-weight: 900; color: var(--brand); }
.calc-target-hint { display: block; font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.calc-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 6px; }
.calc-mini > div { background: var(--surface-2); border-radius: var(--radius-sm); padding: 12px 14px; }
.calc-mini-label { display: block; font-size: .76rem; color: var(--ink-mute); font-weight: 700; }
.calc-mini-value { display: block; font-size: .95rem; margin: 2px 0; }
.calc-mini-value strong { font-size: 1.25rem; font-weight: 900; }
.calc-mini-hint { display: block; font-size: .74rem; color: var(--ink-mute); }
.macro-bar { display: flex; height: 14px; border-radius: 999px; overflow: hidden; background: var(--surface-2); margin-bottom: 12px; }
.macro-seg { height: 100%; transition: width .4s cubic-bezier(.2,.8,.2,1); }
.macro-p { background: var(--brand); }
.macro-c { background: #0891b2; }
.macro-f { background: var(--warn); }
.macro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.macro-item {
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; background: var(--surface-2);
  border-radius: var(--radius-sm); padding: 10px 12px; font-size: .84rem; font-weight: 600; color: var(--ink-soft);
}
.macro-item strong { font-size: 1.15rem; color: var(--ink); font-weight: 900; margin-inline-start: auto; }
.macro-item .dot { width: 9px; height: 9px; border-radius: 50%; }
.calc-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.calc-extra > div { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; }
.calc-extra span { display: block; font-size: .78rem; color: var(--ink-mute); font-weight: 700; }
.calc-extra strong { font-size: 1.3rem; font-weight: 900; }
.calc-cta { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 16px; }
.calc-cta strong { font-size: 1rem; }
.calc-cta p { font-size: .88rem; color: var(--ink-soft); margin: 4px 0 12px; }
.calc-cta-links { display: flex; gap: 8px; flex-wrap: wrap; }
.calc-disclaimer {
  max-width: 720px; margin: 26px auto 0; text-align: center; font-size: .84rem; color: var(--ink-soft);
  background: #fff8ec; border: 1px solid #f4e2c0; border-radius: var(--radius-sm); padding: 12px 16px;
}

.calc-head-sm { margin-bottom: 20px; }
.calc-head-sm h2 { font-size: 1.3rem; }
.calc-head-sm p { font-size: .95rem; }

/* tabs */
.calc-tabs {
  display: flex; gap: 6px; overflow-x: auto; max-width: 980px; margin: 0 auto 22px;
  padding-bottom: 4px; scrollbar-width: none;
}
.calc-tabs::-webkit-scrollbar { display: none; }
.calc-tab {
  flex: 0 0 auto; border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft);
  font: inherit; font-weight: 700; font-size: .88rem; padding: 10px 16px; border-radius: 999px; cursor: pointer;
  transition: border-color .15s, background .15s, color .15s; white-space: nowrap;
}
.calc-tab:hover { border-color: var(--ink-soft); }
.calc-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.calc-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.calc-fieldset { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px 2px; margin: 4px 0 14px; }
.calc-fieldset legend { font-size: .8rem; font-weight: 700; color: var(--ink-soft); padding: 0 6px; }
.calc-extra-stack { grid-template-columns: 1fr; }

/* 1RM % table */
.calc-table { width: 100%; border-collapse: collapse; }
.calc-table th { text-align: start; font-size: .74rem; text-transform: uppercase; letter-spacing: .03em; color: var(--ink-mute); padding: 8px 10px; border-bottom: 2px solid var(--line); }
.calc-table td { padding: 9px 10px; border-bottom: 1px solid var(--line); }
.calc-table tr:last-child td { border-bottom: 0; }

/* BMI / body-fat / category tag */
.bmi-tag { display: inline-block; font-size: .82rem; font-weight: 800; padding: 3px 10px; border-radius: 999px; }
.bmi-tag.is-under  { background: #e0edff; color: #1d4ed8; }
.bmi-tag.is-normal { background: var(--brand-tint); color: #06603f; }
.bmi-tag.is-over   { background: #fef3e2; color: #92590b; }
.bmi-tag.is-obese  { background: #fee2e2; color: #b91c1c; }

/* training-volume scale */
.vol-scale { position: relative; display: flex; height: 16px; border-radius: 999px; overflow: hidden; margin-top: 6px; }
.vol-seg { height: 100%; }
.vol-low    { flex: 6;  background: #fde3c0; }
.vol-maint  { flex: 4;  background: #cdeede; }
.vol-growth { flex: 10; background: var(--brand); }
.vol-high   { flex: 8;  background: #fca5a5; }
.vol-marker {
  position: absolute; top: -4px; width: 3px; height: 24px; background: var(--navy); border-radius: 2px;
  transform: translateX(-50%); transition: inset-inline-start .35s cubic-bezier(.2,.8,.2,1);
}

/* home promo for the calculator */
.calc-promo { background: var(--surface); border-block: 1px solid var(--line); }
.calc-promo-inner {
  display: flex; align-items: center; gap: 20px; padding: 30px 20px; max-width: var(--maxw); margin: 0 auto; flex-wrap: wrap;
}
.calc-promo-ic {
  width: 58px; height: 58px; border-radius: 16px; flex-shrink: 0; display: grid; place-items: center; font-size: 1.9rem;
  background: linear-gradient(135deg, var(--brand-tint), #dff6ee);
}
.calc-promo-txt { flex: 1; min-width: 220px; }
.calc-promo-txt strong { display: block; font-size: 1.12rem; }
.calc-promo-txt span { color: var(--ink-soft); font-size: .92rem; }

@media (max-width: 860px) {
  .calc-layout { grid-template-columns: 1fr; }
}

/* ---- Wholesale strip ---- */
.wholesale-strip {
  background:
    radial-gradient(460px 260px at 8% 0%, rgba(255,106,43,.14), transparent 62%),
    var(--navy);
  color: #fff; border-block: 1px solid rgba(255,106,43,.22);
}
.wholesale-inner {
  display: flex; align-items: center; gap: 26px; padding: 34px 20px; flex-wrap: wrap;
}
.wholesale-txt { flex: 1; min-width: 260px; }
.wholesale-txt .eyebrow { color: var(--heat); }
.wholesale-txt strong { display: block; font-size: clamp(1.15rem, 2.4vw, 1.5rem); margin: 6px 0 6px; }
.wholesale-txt p { color: rgba(255,255,255,.66); font-size: .95rem; margin: 0; max-width: 60ch; }
.wholesale-strip .btn { flex-shrink: 0; }

/* ---- WhatsApp float ---- */
.wa-float {
  position: fixed; z-index: 55; inset-block-end: 20px; inset-inline-start: 20px;
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .15s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 980px) { .wa-float { inset-block-end: 84px; } }
.ask-wa { margin-top: 12px; }

/* ---- deals link + page ---- */
.subnav-inner a.deals-link { color: #ffb27a; }
.subnav-inner a.deals-link:hover { color: #fff; background: rgba(255,106,43,.22); }
.subnav-inner a.deals-link.active { color: #fff; background: var(--heat); box-shadow: 0 4px 12px rgba(255,106,43,.4); }
.content-page { max-width: 780px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.content-page h1 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: 6px; padding-bottom: 14px; border-bottom: 2px solid var(--brand); display: inline-block; }
.content-body { margin-top: 20px; }
.content-body h2 { font-size: 1.28rem; margin: 1.4em 0 .5em; }
.content-body h3 { font-size: 1.08rem; margin: 1.3em 0 .4em; color: var(--ink); }
.content-body h2:first-child, .content-body h3:first-child { margin-top: 0; }
.content-body p { color: var(--ink-soft); line-height: 1.85; margin: 0 0 .9em; }
.content-body ul { margin: 0 0 1em; padding-inline-start: 1.3em; color: var(--ink-soft); line-height: 1.8; }
.content-body li { margin-bottom: .35em; }
.content-body strong { color: var(--ink); font-weight: 800; }
.content-body a { color: var(--brand-dark); font-weight: 700; text-decoration: underline; }
.content-page-wa { margin-top: 26px; }

/* ---- free-shipping bar ---- */
.free-ship {
  max-width: 980px; margin: 0 auto 20px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 18px;
}
.free-ship.is-free { background: var(--brand-tint); border-color: #bdeeda; }
.free-ship-msg { font-weight: 700; font-size: .92rem; margin-bottom: 8px; }
.free-ship.is-free .free-ship-msg { color: #06603f; }
.free-ship-track { height: 8px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.free-ship-track span { display: block; height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-dark)); border-radius: 999px; transition: width .4s cubic-bezier(.2,.8,.2,1); }

/* ---- Stars ---- */
.stars { display: inline-flex; gap: 1px; color: #d9dee6; font-size: .95rem; line-height: 1; letter-spacing: 1px; }
.stars .star.on { color: #f5b301; }
.stars .star.half { background: linear-gradient(90deg, #f5b301 50%, #d9dee6 50%); -webkit-background-clip: text; background-clip: text; color: transparent; }
html[dir="rtl"] .stars .star.half { background: linear-gradient(270deg, #f5b301 50%, #d9dee6 50%); -webkit-background-clip: text; background-clip: text; }
.product-rating-link { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--ink-soft); margin: 4px 0 6px; }
.product-rating-link:hover { color: var(--brand-dark); }

/* ---- Notify me ---- */
.notify-form { border: 1px dashed var(--line); border-radius: var(--radius); padding: 16px; margin-bottom: 12px; }
.notify-form strong { display: block; }
.notify-row { display: flex; gap: 8px; margin-top: 8px; }
.notify-row input { flex: 1; padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; }
.notify-done { color: #06603f; font-weight: 700; margin: 8px 0 0; }

/* ---- Coupon box ---- */
.coupon-box { border-block: 1px solid var(--line); padding: 12px 0; margin-bottom: 6px; }
.coupon-row { display: flex; gap: 8px; }
.coupon-row input { flex: 1; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; text-transform: uppercase; }
.coupon-applied { display: flex; align-items: center; justify-content: space-between; gap: 8px; background: var(--brand-tint); border-radius: var(--radius-sm); padding: 9px 12px; font-size: .9rem; }
.coupon-remove { border: 0; background: none; color: var(--danger); font: inherit; font-weight: 700; cursor: pointer; text-decoration: underline; }
.coupon-err { color: var(--danger); font-size: .82rem; font-weight: 600; margin: 6px 0 0; }

/* ---- Reviews ---- */
.reviews-block { margin: 40px 0; scroll-margin-top: 130px; }
.reviews-grid { display: grid; grid-template-columns: 1fr 340px; gap: 26px; align-items: start; }
.review-item { border-bottom: 1px solid var(--line); padding: 16px 0; }
.review-item:first-child { padding-top: 0; }
.review-item-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.review-item-head strong { font-size: .95rem; }
.review-item p { margin: 0; color: var(--ink-soft); line-height: 1.7; }
.verified-badge { font-size: .72rem; font-weight: 800; color: #06603f; background: var(--brand-tint); padding: 2px 8px; border-radius: 999px; }
.review-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; position: sticky; top: calc(var(--header-h) + 16px); }
.review-form h3 { font-size: 1.05rem; }
.star-input { display: inline-flex; flex-direction: row-reverse; gap: 3px; font-size: 1.7rem; }
.star-input input { position: absolute; opacity: 0; width: 0; }
.star-input label { color: #d9dee6; cursor: pointer; transition: color .12s; }
.star-input label:hover, .star-input label:hover ~ label,
.star-input input:checked ~ label { color: #f5b301; }

/* ---- Order tracking ---- */
.track-card { max-width: 560px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.track-head { display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; margin-bottom: 20px; }
.track-head span { display: block; }
.track-head strong { font-size: 1rem; }
.track-timeline { list-style: none; padding: 0; margin: 0 0 8px; }
.track-timeline li { position: relative; padding-inline-start: 30px; padding-block: 10px; color: var(--ink-mute); font-weight: 600; }
.track-timeline li::before { content: ''; position: absolute; inset-inline-start: 7px; top: 24px; bottom: -10px; width: 2px; background: var(--line); }
.track-timeline li:last-child::before { display: none; }
.track-dot { position: absolute; inset-inline-start: 0; top: 12px; width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--line); background: var(--surface); }
.track-timeline li.done { color: var(--ink); }
.track-timeline li.done .track-dot { background: var(--brand); border-color: var(--brand); }
.track-timeline li.done::before { background: var(--brand); }
.track-timeline li.current .track-dot { box-shadow: 0 0 0 4px var(--brand-tint); }
.track-cancelled { color: var(--danger); font-weight: 700; }
.track-items { list-style: none; padding: 0; margin: 0 0 12px; }
.track-items li { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.success-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-form { position: static; }
}

/* ---- Guides / blog ---- */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.guide-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .14s, box-shadow .24s; }
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.guide-card-media { aspect-ratio: 16/9; background: var(--surface-2); display: grid; place-items: center; font-size: 2.5rem; }
.guide-card-media img { width: 100%; height: 100%; object-fit: cover; }
.guide-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.guide-card-body h3 { font-size: 1.05rem; margin: 0; }
.guide-card-body p { color: var(--ink-soft); font-size: .9rem; margin: 0; }
.guide-card-more { margin-top: auto; color: var(--brand-dark); font-weight: 700; font-size: .88rem; }
.guide-article { max-width: 760px; margin: 0 auto; }
.guide-article h1 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 12px 0 6px; }
.guide-cover { width: 100%; border-radius: var(--radius); margin: 16px 0 24px; }
.guide-article .content-body p { font-size: 1.05rem; line-height: 1.9; color: var(--ink); }

/* ---- Error ---- */
.error-page { text-align: center; padding: 90px 20px; }
.error-code { font-size: 4.5rem; font-weight: 900; color: var(--brand-dark); }
.error-message { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 26px; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 46px 20px 52px; gap: 30px; }
  .hero-text p { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-chips { justify-content: center; }
  .hero-card { max-width: 440px; margin: 0 auto; }
  .hero-card-row { text-align: start; }
  .product-detail { grid-template-columns: 1fr; gap: 24px; }
  .gallery-main { max-height: 380px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary, .checkout-summary, .review-form { position: static; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps li:not(:last-child)::after { content: '↓' !important; inset: auto 0 -16px 0 !important; top: auto; left: 0; right: 0; transform: none; text-align: center; }
  .buy-bar { display: flex; }
  body.has-buybar { padding-bottom: 80px; }

  /* filters become a slide-in drawer */
  .shop-layout { grid-template-columns: 1fr; }
  .filter-fab { display: inline-flex; }
  .shop-filters {
    position: fixed; inset: 0; z-index: 70; background: rgba(9,20,15,.5);
    display: none; padding: 0; top: 0;
  }
  .shop-filters.is-open { display: block; }
  .shop-filters .filter-form {
    position: absolute; inset-block: 0; inset-inline-end: 0; width: min(340px, 88vw);
    border-radius: 0; overflow-y: auto; animation: drawer-in .22s ease;
  }
  html[dir="ltr"] .shop-filters .filter-form { inset-inline-start: 0; inset-inline-end: auto; }
  .filter-close { display: grid; place-items: center; }
  body.filters-open { overflow: hidden; }
}
@keyframes drawer-in { from { opacity: .3; filter: blur(1px); } }

@media (max-width: 680px) {
  .header-inner {
    grid-template-columns: auto 1fr; grid-template-areas: "brand actions" "search search";
    row-gap: 11px; gap: 12px; padding: 12px 16px;
  }
  .brand { grid-area: brand; font-size: 1.15rem; }
  .brand-mark { width: 34px; height: 34px; font-size: 1.1rem; }
  .brand-logo { height: 34px; }
  .header-actions { grid-area: actions; justify-self: end; gap: 8px; }
  .search { grid-area: search; }
  .brand-text { display: none; }
  .subnav-inner { padding: 7px 14px; gap: 4px; }
  .section { padding: 40px 0; }
  .section-head { flex-wrap: wrap; gap: 6px 12px; }
  .section-head h1, .section-head h2 { font-size: 1.32rem; }
  .container { padding: 0 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card-body { padding: 12px; }
  .price-now { font-size: 1.2rem; }
  .product-card-add .btn { padding: 9px 12px; font-size: .86rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust-band-inner { padding: 20px 16px; gap: 14px; }
  .hero-text h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; margin-inline: auto; }
  .hero-cta .btn { width: 100%; }
  .product-info h1 { font-size: 1.4rem; }
  .product-buy { gap: 10px; }
  .product-buy .btn-lg { flex: 1; padding: 13px 16px; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr { border-bottom: 1px solid var(--line); padding: 12px 4px; position: relative; }
  .cart-table td { border: 0; padding: 5px 12px; }
  .cart-table td[data-label]::before { content: attr(data-label) " · "; font-weight: 700; color: var(--ink-mute); }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; padding: 38px 16px 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .calc-row-3 { grid-template-columns: 1fr 1fr; }
  .calc-tabs { justify-content: flex-start; }
  .content-page { padding: 22px 18px; }
  .checkout-main { padding: 20px 16px; }
}
@media (max-width: 380px) {
  .header-actions .lang-toggle { padding: 6px 10px; font-size: .72rem; }
  .product-grid { gap: 10px; }
  .hero-eyebrow { font-size: .74rem; letter-spacing: .1em; }
}
