/* ==========================================================================
   Expire — Brand Design System
   Palette from the logo: dark forest green (#10241c) + lime/chartreuse (#e4e77a)
   RTL-first · Tajawal · lime-forward · clean. Classes namespaced with `ex-`
   to coexist with legacy template styles during the redesign rollout.
   ========================================================================== */

:root {
  --ex-ink: #10241c;
  --ex-ink-2: #16311f;
  --ex-ink-3: #1d3f2c;
  --ex-lime: #e4e77a;
  --ex-lime-bright: #edf07f;
  --ex-lime-deep: #c8cd5f;
  --ex-paper: #f5f7f0;
  --ex-card: #ffffff;
  --ex-surface-2: #eef2e6;
  --ex-muted: #5f6f66;
  --ex-line: #e3ebe3;
  --ex-line-strong: #d3ddd2;
  --ex-danger: #d1483a;
  --ex-danger-soft: #fbe8e6;
  --ex-warn: #b8791f;
  --ex-warn-soft: #f7ecd7;
  --ex-ok: #2f6f4e;
  --ex-ok-soft: #e3efe2;
  --ex-shadow-sm: 0 1px 2px rgba(16,36,28,.06), 0 2px 8px rgba(16,36,28,.05);
  --ex-shadow-md: 0 8px 30px rgba(16,36,28,.10);
  --ex-shadow-lg: 0 24px 60px rgba(16,36,28,.16);
  --ex-radius: 16px;
  --ex-radius-sm: 11px;
  --ex-maxw: 1200px;
  --ex-font: "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---- Base (scoped to body.ex-site so legacy pages are untouched) ---- */
body.ex-site {
  margin: 0;
  background: var(--ex-paper);
  color: var(--ex-ink);
  font-family: var(--ex-font);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
  /* clip (not hidden) prevents horizontal scroll WITHOUT creating a scroll container,
     so the sticky navbar keeps working even on pages that still load the legacy
     template's `body{overflow-x:hidden}`. */
  overflow-x: clip;
}
/* Force Tajawal over the legacy template's Barlow/Exo/Raleway (which win on specificity).
   !important beats their non-important rules; icons (<i>, fa-*, mdi) are excluded. */
body.ex-site :where(h1,h2,h3,h4,h5,h6,p,a,span,strong,em,b,small,li,ul,ol,label,legend,
  button,input,textarea,select,option,td,th,.rts-btn,.btn,.title,.product-title,.card,
  .badge,.nav-link,.dropdown-item,.form-control):not(i):not([class^="fa-"]):not([class*=" fa-"]):not(.mdi):not([class^="mdi-"]):not([class^="dripicons-"]) {
  font-family: 'Tajawal', sans-serif !important;
}
body.ex-site * { box-sizing: border-box; }
body.ex-site a { color: inherit; text-decoration: none; }
body.ex-site img { max-width: 100%; }
body.ex-site h1, body.ex-site h2, body.ex-site h3 { margin: 0; letter-spacing: -.01em; text-wrap: balance; }
@media (prefers-reduced-motion: reduce) {
  body.ex-site *, body.ex-site *::before { animation: none !important; transition: none !important; }
}

.ex-wrap { max-width: var(--ex-maxw); margin-inline: auto; padding-inline: 24px; }

.ex-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 700; letter-spacing: .06em;
  color: var(--ex-muted);
}
.ex-eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--ex-lime-deep); border-radius: 3px; animation: ex-dash 2.6s ease-in-out infinite; }
@keyframes ex-dash { 0%, 100% { width: 20px; opacity: .75; } 50% { width: 34px; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .ex-eyebrow::before { animation: none; } }

/* Scroll reveal (applied site-wide via JS) */
.ex-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .65s cubic-bezier(.22,.7,.2,1); }
.ex-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .ex-reveal { opacity: 1 !important; transform: none !important; } }

/* Unified card hover accent (lime edge + lift) */
.ex-card:hover, .ex-b-card:hover, .ex-m-card:hover { border-color: var(--ex-lime-deep); }

/* ---- Buttons (lime is the primary action) ---- */
.ex-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 700; font-size: 16px;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap; transition: transform .15s ease, box-shadow .2s, background .2s, border-color .2s;
}
.ex-btn:active { transform: translateY(1px); }
.ex-btn-primary { background: var(--ex-lime); color: var(--ex-ink); }
.ex-btn-primary:hover { background: var(--ex-lime-bright); box-shadow: 0 10px 26px rgba(200,205,95,.45); color: var(--ex-ink); }
.ex-btn-dark { background: var(--ex-ink); color: #fff; }
.ex-btn-dark:hover { background: var(--ex-ink-3); box-shadow: var(--ex-shadow-md); color: #fff; }
.ex-btn-ghost { background: transparent; color: var(--ex-ink); border-color: var(--ex-line-strong); }
.ex-btn-ghost:hover { border-color: var(--ex-ink); }
/* Higher-specificity color locks so `body.ex-site a { color: inherit }` can't win
   over button text colours (a dark button must keep its white label, etc.). */
body.ex-site a.ex-btn-dark, body.ex-site button.ex-btn-dark { color: #fff; }
body.ex-site a.ex-btn-primary, body.ex-site button.ex-btn-primary,
body.ex-site a.ex-btn-ghost, body.ex-site button.ex-btn-ghost { color: var(--ex-ink); }
.ex-btn-sm { padding: 9px 16px; font-size: .88rem; }
.ex-btn-block { width: 100%; }

/* ---- Brand / logo ---- */
.ex-brand { display: inline-flex; align-items: center; gap: 11px; }
.ex-brand img { height: 40px; width: auto; object-fit: contain; }

/* ---- Navbar ---- */
.ex-nav { position: sticky; top: 0; z-index: 100; background: rgba(245,247,240,.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--ex-line); }
.ex-nav-in { display: flex; align-items: center; gap: 26px; height: 74px; }
.ex-nav-links { display: flex; gap: 26px; margin-inline-start: 14px; font-weight: 600; font-size: 16.5px; white-space: nowrap; }
.ex-nav-links a { position: relative; padding: 8px 0; color: var(--ex-muted); transition: color .18s; }
.ex-nav-links a:hover, .ex-nav-links a.is-active { color: var(--ex-ink); }
.ex-nav-links a.is-active::after { content: ""; position: absolute; inset-inline: 0; bottom: 2px; height: 3px; background: var(--ex-lime); border-radius: 3px; }
.ex-nav-cta { margin-inline-start: auto; display: flex; align-items: center; gap: 10px; }
.ex-icon-btn { position: relative; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--ex-line-strong); background: var(--ex-card); display: grid; place-items: center; cursor: pointer; color: var(--ex-ink); transition: .18s; }
.ex-icon-btn:hover { border-color: var(--ex-ink); }
.ex-cart-count { position: absolute; top: -4px; inset-inline-start: -4px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--ex-lime); color: var(--ex-ink); font-size: .7rem; font-weight: 800; display: grid; place-items: center; }
.ex-nav-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--ex-line-strong); background: var(--ex-card); cursor: pointer; }
@media (max-width: 992px) {
  .ex-nav-links { display: none; }
  .ex-nav-cta .ex-hide-md { display: none; }
  .ex-nav-toggle { display: grid; place-items: center; }
}

/* ---- Mobile drawer ---- */
.ex-drawer { position: fixed; inset: 0 auto 0 0; width: 300px; max-width: 84vw; background: var(--ex-card); z-index: 200; transform: translateX(-105%); transition: transform .28s ease; box-shadow: var(--ex-shadow-lg); padding: 22px; overflow-y: auto; }
[dir="rtl"] .ex-drawer { inset: 0 0 0 auto; transform: translateX(105%); }
.ex-drawer.is-open { transform: translateX(0); }
.ex-drawer-links { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.ex-drawer-links a { display: block; padding: 12px 14px; border-radius: 10px; font-weight: 600; color: var(--ex-ink); }
.ex-drawer-links a:hover { background: var(--ex-surface-2); }
.ex-overlay { position: fixed; inset: 0; background: rgba(16,36,28,.45); z-index: 150; opacity: 0; visibility: hidden; transition: .28s; }
.ex-overlay.is-open { opacity: 1; visibility: visible; }

/* ---- Hero ---- */
.ex-hero { position: relative; overflow: hidden; }
.ex-hero-in { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; padding: 60px 0 68px; }
.ex-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.5rem); line-height: 1.12; font-weight: 800; }
.ex-hl { background: linear-gradient(transparent 60%, var(--ex-lime) 60%); padding: 0 5px; border-radius: 3px; }
.ex-lead { color: var(--ex-muted); font-size: 1.22rem; max-width: 46ch; margin: 20px 0 30px; line-height: 1.75; }
.ex-hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.ex-hero-search { margin-top: 26px; display: flex; gap: 8px; background: var(--ex-card); border: 1px solid var(--ex-line); padding: 8px; border-radius: 999px; box-shadow: var(--ex-shadow-sm); max-width: 470px; }
.ex-hero-search input { flex: 1; border: 0; background: transparent; padding: 0 16px; font-size: 1rem; color: var(--ex-ink); font-family: inherit; outline: none; }
.ex-hero-search input::placeholder { color: var(--ex-muted); }
.ex-stat-row { display: flex; gap: 0; margin-top: 34px; }
.ex-stat { padding-inline-end: 28px; }
.ex-stat + .ex-stat { padding-inline-start: 28px; border-inline-start: 1px solid var(--ex-line); }
.ex-stat b { display: block; font-size: 2.15rem; font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.ex-stat span { color: var(--ex-muted); font-size: .96rem; font-weight: 600; }

/* Hero visual */
.ex-hero-visual { position: relative; height: 430px; }
.ex-hg-stage { position: absolute; inset: 0; border-radius: 26px; overflow: hidden; background: radial-gradient(120% 120% at 72% 18%, var(--ex-ink-3), var(--ex-ink) 62%); box-shadow: var(--ex-shadow-lg); }
.ex-hg-stage .ex-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(228,231,122,.55), transparent 65%); top: -70px; inset-inline-start: -50px; }
.ex-hg-stage svg { position: absolute; inset: 0; margin: auto; width: 150px; height: 150px; }
.ex-float { position: absolute; width: 214px; padding: 13px; display: flex; gap: 12px; align-items: center; background: var(--ex-card); border: 1px solid var(--ex-line); border-radius: var(--ex-radius); box-shadow: var(--ex-shadow-lg); }
.ex-float-1 { top: 24px; inset-inline-start: -16px; animation: ex-floaty 6s ease-in-out infinite; }
.ex-float-2 { bottom: 22px; inset-inline-end: -12px; animation: ex-floaty 6s ease-in-out infinite .9s; }
@keyframes ex-floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.ex-float-thumb { width: 46px; height: 46px; border-radius: 11px; flex: none; display: grid; place-items: center; font-size: 1.3rem; }
.ex-float-title { font-weight: 700; font-size: .9rem; }
@media (max-width: 900px) {
  .ex-hero-in { grid-template-columns: 1fr; gap: 10px; }
  .ex-hero-visual { height: 320px; order: -1; }
}

/* ---- Hero: full-width dark band (modern variant) ---- */
.ex-hero-dark {
  position: relative; overflow: hidden; color: #eaf0e7;
  background:
    radial-gradient(90% 60% at 78% 8%, rgba(228,231,122,.14), transparent 60%),
    radial-gradient(70% 50% at 12% 100%, rgba(46,111,78,.28), transparent 62%),
    radial-gradient(130% 130% at 50% -12%, #204833 0%, #14291d 46%, #0e2016 100%);
}
/* soft ambient glow, slowly drifting for depth */
.ex-hero-dark::before {
  content: ""; position: absolute; top: -180px; left: 50%; width: 720px; height: 460px;
  background: radial-gradient(circle, rgba(228,231,122,.28), transparent 66%);
  transform: translateX(-50%); pointer-events: none; filter: blur(4px);
  animation: ex-aura 14s ease-in-out infinite;
}
/* fine dot-grid texture, faded toward edges */
.ex-hero-dark::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(120% 85% at 50% 10%, #000 35%, transparent 78%);
          mask-image: radial-gradient(120% 85% at 50% 10%, #000 35%, transparent 78%);
}
@keyframes ex-aura { 0%,100% { transform: translateX(-50%) translateY(0); opacity: .9; } 50% { transform: translateX(-46%) translateY(14px); opacity: 1; } }
.ex-hero-dark .ex-hg-watermark { position: absolute; inset: 0; margin: auto; width: 540px; height: 540px; opacity: .045; pointer-events: none; }
.ex-hero-dark-in { position: relative; z-index: 2; max-width: 860px; margin-inline: auto; text-align: center; padding: 84px 24px 88px; }
.ex-hero-dark .ex-eyebrow { color: var(--ex-lime); justify-content: center; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; }
.ex-hero-dark .ex-eyebrow::before { background: var(--ex-lime); }
.ex-hero-dark h1 { color: #fff; font-size: clamp(38px, 5.6vw, 66px); line-height: 1.04; font-weight: 800; letter-spacing: -.02em; margin-top: 16px; }
.ex-hero-dark h1 .ex-hl-lime { color: var(--ex-lime); background: none; padding: 0; }
.ex-hero-dark .ex-lead { color: #c3cfc0; font-size: 19px; line-height: 1.7; max-width: 52ch; margin: 22px auto 32px; }
/* staggered entrance */
.ex-hero-dark-in > * { animation: ex-rise .7s cubic-bezier(.22,.7,.2,1) both; }
.ex-hero-dark-in > *:nth-child(1) { animation-delay: .02s; }
.ex-hero-dark-in > *:nth-child(2) { animation-delay: .09s; }
.ex-hero-dark-in > *:nth-child(3) { animation-delay: .16s; }
.ex-hero-dark-in > *:nth-child(4) { animation-delay: .23s; }
.ex-hero-dark-in > *:nth-child(5) { animation-delay: .30s; }
.ex-hero-dark-in > *:nth-child(6) { animation-delay: .37s; }
@keyframes ex-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .ex-hero-dark-in > *, .ex-hero-dark::before, .ex-hero-dark .ex-float { animation: none !important; } }
.ex-hero-dark .ex-hero-actions { justify-content: center; }
.ex-hero-dark .ex-search-pill { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 8px; background: #fff; border-radius: 999px; padding: 7px; box-shadow: 0 26px 70px rgba(0,0,0,.4), inset 0 0 0 1px rgba(16,36,28,.05); max-width: 600px; margin: 32px auto 0; transition: box-shadow .25s, transform .25s; }
.ex-hero-dark .ex-search-pill:focus-within { box-shadow: 0 26px 70px rgba(0,0,0,.45), 0 0 0 4px rgba(228,231,122,.5); transform: translateY(-1px); }
.ex-hero-dark .ex-search-pill input { min-width: 0; width: 100%; border: 0; background: transparent; padding: 0 20px; font-size: 16.5px; color: var(--ex-ink); font-family: inherit; outline: none; }
.ex-hero-dark .ex-search-pill input::placeholder { color: var(--ex-muted); }
.ex-hero-dark .ex-stat-row { justify-content: center; margin-top: 40px; }
.ex-hero-dark .ex-stat b { color: #fff; }
.ex-hero-dark .ex-stat span { color: #9fb09e; }
.ex-hero-dark .ex-stat + .ex-stat { border-inline-start-color: rgba(255,255,255,.14); }
.ex-hero-dark .ex-float { background: rgba(255,255,255,.86); color: var(--ex-ink); backdrop-filter: blur(10px) saturate(1.1); -webkit-backdrop-filter: blur(10px) saturate(1.1); border: 1px solid rgba(255,255,255,.7); border-radius: 18px; box-shadow: 0 22px 55px rgba(0,0,0,.42); }
.ex-hero-dark .ex-float-title { color: var(--ex-ink); }
.ex-hero-dark .ex-float-1 { top: 46px; inset-inline-start: 5%; animation: ex-floaty 6.5s ease-in-out infinite; }
.ex-hero-dark .ex-float-2 { bottom: 52px; inset-inline-end: 5%; animation: ex-floaty 6.5s ease-in-out infinite 1.1s; }
@media (max-width: 900px) { .ex-hero-dark .ex-float { display: none; } .ex-hero-dark-in { padding: 54px 20px 58px; } }
body.ex-site .ex-hero-dark a.ex-btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
body.ex-site .ex-hero-dark a.ex-btn-ghost:hover { color: var(--ex-lime); border-color: var(--ex-lime); }

/* ---- Hero: light split with dashboard mockup (variant) ---- */
.ex-hero-lite { position: relative; overflow: hidden; background: var(--ex-paper); }
.ex-hero-lite::before { content: ""; position: absolute; top: -160px; inset-inline-end: -120px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(228,231,122,.4), transparent 64%); pointer-events: none; }
.ex-hero-lite::after { content: ""; position: absolute; bottom: -200px; inset-inline-start: -140px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(46,111,78,.14), transparent 66%); pointer-events: none; }
.ex-hero-lite-in { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 50px; align-items: center; padding: 66px 0 74px; }
.ex-hero-lite h1 { font-size: clamp(36px, 4.8vw, 60px); line-height: 1.08; font-weight: 800; letter-spacing: -.02em; }
.ex-hero-lite .ex-hl { background: linear-gradient(transparent 58%, var(--ex-lime) 58%); padding: 0 5px; border-radius: 3px; }
.ex-hero-lite .ex-lead { color: var(--ex-muted); font-size: 19px; line-height: 1.75; max-width: 46ch; margin: 20px 0 28px; }
.ex-hero-lite .ex-stat-row { margin-top: 36px; }
.ex-hero-lite-copy > * { animation: ex-rise .7s cubic-bezier(.22,.7,.2,1) both; }
.ex-hero-lite-copy > *:nth-child(2){animation-delay:.07s} .ex-hero-lite-copy > *:nth-child(3){animation-delay:.14s}
.ex-hero-lite-copy > *:nth-child(4){animation-delay:.21s} .ex-hero-lite-copy > *:nth-child(5){animation-delay:.28s}
@media (max-width: 900px) { .ex-hero-lite-in { grid-template-columns: 1fr; gap: 30px; } .ex-mockup-stage { order: -1; } }
@media (prefers-reduced-motion: reduce) { .ex-hero-lite-copy > *, .ex-mockup, .ex-mockup-float { animation: none !important; } }

/* dashboard mockup */
.ex-mockup-stage { position: relative; }
.ex-mockup { background: #fff; border: 1px solid var(--ex-line); border-radius: 24px; box-shadow: 0 44px 100px rgba(16,36,28,.20); padding: 20px; position: relative; z-index: 2; animation: ex-rise .8s cubic-bezier(.22,.7,.2,1) both .2s; }
.ex-mockup-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--ex-line); margin-bottom: 12px; }
.ex-mockup-head .t { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 16px; }
.ex-mockup-head .ic { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(140deg, var(--ex-lime), var(--ex-lime-deep)); display: grid; place-items: center; color: var(--ex-ink); flex: none; }
.ex-mockup-head .dots { display: flex; gap: 5px; }
.ex-mockup-head .dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--ex-line-strong); display: block; }
.ex-mockup-row { display: flex; align-items: center; gap: 12px; padding: 10px 11px; border-radius: 13px; }
.ex-mockup-row:nth-child(odd) { background: var(--ex-surface-2); }
.ex-mockup-thumb { width: 42px; height: 42px; border-radius: 11px; background: #fff; border: 1px solid var(--ex-line); display: grid; place-items: center; font-size: 20px; flex: none; }
.ex-mockup-row .n { flex: 1; min-width: 0; }
.ex-mockup-row .n b { display: block; font-weight: 700; font-size: 14.5px; }
.ex-mockup-row .n span { color: var(--ex-muted); font-size: 12.5px; }
.ex-mockup-foot { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--ex-line); }
.ex-mockup-foot .lbl { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ex-muted); font-weight: 600; margin-bottom: 8px; }
.ex-mockup-bar { height: 9px; border-radius: 99px; background: var(--ex-surface-2); overflow: hidden; }
.ex-mockup-bar > i { display: block; height: 100%; width: 68%; background: linear-gradient(90deg, var(--ex-lime-deep), var(--ex-lime)); border-radius: 99px; }
.ex-mockup-float { position: absolute; z-index: 3; background: #fff; border: 1px solid var(--ex-line); border-radius: 15px; box-shadow: 0 22px 55px rgba(16,36,28,.18); padding: 11px 14px; display: flex; align-items: center; gap: 11px; }
.ex-mockup-float .fi { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-size: 17px; flex: none; }
.ex-mockup-float b { display: block; font-weight: 700; font-size: 13.5px; }
.ex-mockup-float span { font-size: 12px; color: var(--ex-muted); }
.ex-mf-1 { top: -22px; inset-inline-start: -22px; animation: ex-floaty 6s ease-in-out infinite; }
.ex-mf-2 { bottom: -20px; inset-inline-end: -18px; animation: ex-floaty 6s ease-in-out infinite 1s; }
@media (max-width: 520px) { .ex-mockup-float { display: none; } }

/* ---- Hero: living hourglass (signature variant) ---- */
.ex-hero-time { position: relative; overflow: hidden; background:
  radial-gradient(70% 60% at 82% -8%, rgba(228,231,122,.34), transparent 58%),
  radial-gradient(60% 60% at 10% 108%, rgba(46,111,78,.12), transparent 62%),
  var(--ex-paper); }
.ex-hero-time-in { position: relative; z-index: 2; display: grid; grid-template-columns: 1.06fr .94fr; gap: 36px; align-items: center; padding: 54px 0 64px; }
.ex-hero-time h1 { font-size: clamp(36px, 4.9vw, 62px); line-height: 1.06; font-weight: 800; letter-spacing: -.02em; }
.ex-hero-time .ex-hl { background: linear-gradient(transparent 56%, var(--ex-lime) 56%); padding: 0 5px; border-radius: 3px; }
.ex-hero-time .ex-lead { color: var(--ex-muted); font-size: 19px; line-height: 1.75; max-width: 46ch; margin: 20px 0 28px; }
.ex-hero-time .ex-stat-row { margin-top: 34px; }
.ex-hero-time-copy > * { animation: ex-rise .7s cubic-bezier(.22,.7,.2,1) both; }
.ex-hero-time-copy > *:nth-child(2){animation-delay:.07s} .ex-hero-time-copy > *:nth-child(3){animation-delay:.14s}
.ex-hero-time-copy > *:nth-child(4){animation-delay:.21s} .ex-hero-time-copy > *:nth-child(5){animation-delay:.28s}

.ex-hg-stage2 { position: relative; display: grid; place-items: center; min-height: 460px; }
.ex-hg-stage2::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(228,231,122,.4), transparent 66%); filter: blur(6px); }
.ex-hg-canvas-wrap { position: relative; z-index: 2; animation: ex-rise .9s cubic-bezier(.22,.7,.2,1) both .18s; cursor: pointer; transition: transform .85s cubic-bezier(.62,-.24,.38,1.24); will-change: transform; }
.ex-hg-canvas-wrap.is-flipped { transform: rotate(180deg); }
#exHourglass { display: block; }
.ex-hg-chip { position: absolute; z-index: 3; background: #fff; border: 1px solid var(--ex-line); border-radius: 15px; box-shadow: 0 22px 55px rgba(16,36,28,.18); padding: 11px 15px; display: flex; align-items: center; gap: 11px; }
.ex-hg-chip .fi { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-size: 17px; flex: none; }
.ex-hg-chip b { display: block; font-weight: 700; font-size: 14px; }
.ex-hg-chip span { font-size: 12px; color: var(--ex-muted); }
.ex-hg-chip-1 { top: 24px; inset-inline-end: 2%; animation: ex-floaty 6s ease-in-out infinite; }
.ex-hg-chip-2 { bottom: 30px; inset-inline-start: 2%; animation: ex-floaty 6s ease-in-out infinite 1s; }
@media (max-width: 900px) { .ex-hero-time-in { grid-template-columns: 1fr; gap: 20px; } .ex-hg-stage2 { order: -1; min-height: 400px; } }
@media (max-width: 520px) { .ex-hg-chip { display: none; } }
@media (prefers-reduced-motion: reduce) { .ex-hero-time-copy > *, .ex-hg-canvas-wrap, .ex-hg-chip { animation: none !important; } }

/* ---- Pills / badges ---- */
.ex-pill { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 800; padding: 4px 10px; border-radius: 999px; }
.ex-pill-danger { background: var(--ex-danger-soft); color: var(--ex-danger); }
.ex-pill-warn { background: var(--ex-warn-soft); color: var(--ex-warn); }
.ex-pill-ok { background: var(--ex-ok-soft); color: var(--ex-ok); }
.ex-pill-lime { background: var(--ex-lime); color: var(--ex-ink); }

/* ---- Category chips ---- */
.ex-cats { display: flex; gap: 11px; flex-wrap: wrap; padding: 24px 0 4px; }
.ex-cat { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 999px; border: 1px solid var(--ex-line); background: var(--ex-card); font-weight: 600; font-size: .98rem; transition: .16s; }
.ex-cat:hover { border-color: var(--ex-ink); transform: translateY(-1px); box-shadow: var(--ex-shadow-sm); }
.ex-cat .ex-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ex-lime-deep); }
.ex-cat img { width: 20px; height: 20px; object-fit: contain; }

/* ---- Sections ---- */
.ex-section { padding: 58px 0; }
.ex-section-alt { background: var(--ex-surface-2); }
.ex-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.ex-sec-head h2 { font-size: clamp(1.75rem, 2.8vw, 2.35rem); font-weight: 800; margin-top: 8px; }
.ex-sec-head p { color: var(--ex-muted); margin: 8px 0 0; font-size: 1.05rem; }
.ex-see-all { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 1.02rem; color: var(--ex-ink); border-bottom: 3px solid var(--ex-lime); padding-bottom: 2px; white-space: nowrap; }

.ex-grid { display: grid; gap: 20px; }
.ex-g-4 { grid-template-columns: repeat(4, 1fr); }
.ex-g-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .ex-g-4 { grid-template-columns: repeat(2, 1fr); } .ex-g-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .ex-g-4, .ex-g-3 { grid-template-columns: 1fr; } }

/* ---- Product / offer card ---- */
.ex-card { background: var(--ex-card); border: 1px solid var(--ex-line); border-radius: var(--ex-radius); overflow: hidden; box-shadow: var(--ex-shadow-sm); transition: transform .18s ease, box-shadow .2s; display: flex; flex-direction: column; }
.ex-card:hover { transform: translateY(-4px); box-shadow: var(--ex-shadow-md); }
.ex-media { position: relative; aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--ex-surface-2), var(--ex-line)); display: grid; place-items: center; overflow: hidden; }
.ex-media img { width: 100%; height: 100%; object-fit: cover; }
.ex-media .ex-media-fallback { font-size: 2.4rem; color: var(--ex-muted); }
.ex-media-fallback img { width: 76px !important; height: 76px !important; object-fit: contain !important; opacity: .34; }
.ex-badge-tl { position: absolute; top: 12px; inset-inline-start: 12px; }
.ex-badge-tr { position: absolute; top: 12px; inset-inline-end: 12px; background: var(--ex-lime); color: var(--ex-ink); font-weight: 800; font-size: .82rem; padding: 5px 11px; border-radius: 999px; }
.ex-card-body { padding: 15px 16px 17px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.ex-card-shop { font-size: .88rem; color: var(--ex-muted); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.ex-card-title { font-weight: 700; font-size: 1.1rem; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ex-price-row { display: flex; align-items: baseline; gap: 10px; margin-top: auto; padding-top: 6px; }
.ex-price-now { font-size: 1.4rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.ex-price-now small { font-size: .78rem; font-weight: 600; color: var(--ex-muted); }
.ex-price-was { font-size: .95rem; color: var(--ex-muted); text-decoration: line-through; }

/* ---- Merchant card ---- */
.ex-m-card { background: var(--ex-card); border: 1px solid var(--ex-line); border-radius: var(--ex-radius); padding: 24px; display: flex; flex-direction: column; box-shadow: var(--ex-shadow-sm); transition: .18s; height: 100%; }
.ex-m-card:hover { transform: translateY(-4px); box-shadow: var(--ex-shadow-md); border-color: var(--ex-line-strong); }
.ex-m-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.ex-m-logo { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(140deg, var(--ex-lime), var(--ex-lime-deep)); display: grid; place-items: center; font-weight: 800; font-size: 1.5rem; color: var(--ex-ink); flex: none; box-shadow: 0 6px 16px rgba(200,205,95,.35); }
.ex-m-badge { font-size: .82rem; font-weight: 700; color: var(--ex-ink-3); background: var(--ex-surface-2); padding: 6px 13px; border-radius: 999px; white-space: nowrap; }
.ex-m-name { font-weight: 800; font-size: 1.22rem; line-height: 1.4; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.8em; }
.ex-m-info { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.ex-m-info span { display: flex; align-items: center; gap: 10px; color: var(--ex-muted); font-size: .95rem; font-weight: 500; }
.ex-m-info i { color: var(--ex-lime-deep); width: 16px; text-align: center; flex: none; }
.ex-m-card .ex-btn { margin-top: auto; }

/* ---- Basket card ---- */
.ex-b-card { background: var(--ex-card); border: 1px solid var(--ex-line); border-radius: var(--ex-radius); overflow: hidden; box-shadow: var(--ex-shadow-sm); transition: .18s; display: flex; flex-direction: column; }
.ex-b-card:hover { transform: translateY(-4px); box-shadow: var(--ex-shadow-md); }
.ex-b-media { aspect-ratio: 16 / 8; background: linear-gradient(135deg, var(--ex-surface-2), var(--ex-line)); display: grid; place-items: center; overflow: hidden; }
.ex-b-media img { width: 100%; height: 100%; object-fit: cover; }
.ex-b-media .ex-media-fallback { font-size: 2rem; color: var(--ex-muted); }
.ex-b-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ex-b-title { font-weight: 700; font-size: 1.18rem; }
.ex-b-sub { font-size: .9rem; color: var(--ex-muted); }
.ex-b-foot { margin-top: auto; padding: 14px 18px; border-top: 1px solid var(--ex-line); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ex-b-cost b { font-size: 1.28rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.ex-b-cost span { font-size: .82rem; color: var(--ex-muted); display: block; }

/* ---- Services / how it works ---- */
.ex-how { background: var(--ex-ink); color: #eef0e6; border-radius: 28px; padding: 50px 44px; position: relative; overflow: hidden; }
.ex-how::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(228,231,122,.2), transparent 65%); top: -120px; inset-inline-start: -80px; }
.ex-how .ex-eyebrow { color: var(--ex-lime); position: relative; }
.ex-how .ex-eyebrow::before { background: var(--ex-lime); }
.ex-how h2 { color: #fff; font-size: clamp(1.55rem, 2.6vw, 2.1rem); font-weight: 800; margin-top: 10px; }
.ex-how .ex-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 34px; position: relative; }
@media (max-width: 640px) { .ex-how .ex-steps { grid-template-columns: 1fr; } }
.ex-how .ex-step { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 26px; text-align: start; }
.ex-how .ex-step-ic { width: 50px; height: 50px; border-radius: 14px; background: var(--ex-lime); color: var(--ex-ink); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 16px; }
.ex-how .ex-step h3 { color: #fff; font-size: 1.22rem; }
.ex-how .ex-step p { color: #b9c6b7; font-size: 1rem; margin: 8px 0 0; line-height: 1.7; }

/* ---- CTA ---- */
.ex-cta { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 28px; background: linear-gradient(120deg, var(--ex-lime), var(--ex-lime-deep)); border-radius: 28px; padding: 46px 44px; color: var(--ex-ink); }
.ex-cta h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; }
.ex-cta p { margin: 10px 0 0; font-weight: 600; opacity: .82; }
.ex-cta-actions { display: flex; gap: 13px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 760px) { .ex-cta { grid-template-columns: 1fr; } .ex-cta-actions { justify-content: flex-start; } }

/* ---- Footer ---- */
.ex-footer { background: var(--ex-ink); color: #cdd8cc; margin-top: 66px; padding: 54px 0 24px; }
.ex-foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 34px; }
@media (max-width: 820px) { .ex-foot-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
.ex-footer h4 { color: #fff; font-size: 15px; margin: 0 0 14px; }
.ex-footer a { color: #aebbad; display: block; padding: 5px 0; transition: .15s; font-size: 15.5px; }
.ex-footer a:hover { color: var(--ex-lime); }
.ex-foot-brand p { color: #9fb09e; font-size: 14.5px; max-width: 34ch; }
.ex-foot-brand img { height: 38px; margin-bottom: 4px; }
.ex-foot-sub { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: 6px; border-radius: 999px; margin-top: 14px; max-width: 330px; }
.ex-foot-sub input { min-width: 0; width: 100%; background: transparent; border: 0; color: #fff; padding: 0 14px; outline: none; font-family: inherit; font-size: 15px; }
.ex-foot-sub button { white-space: nowrap; }
.ex-foot-sub input::placeholder { color: #87977f; }
.ex-foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 38px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; color: #87977f; font-size: 13.5px; flex-wrap: wrap; }

/* ---- Page header (inner pages) ---- */
.ex-page-head { background: var(--ex-ink); color: #fff; padding: 44px 0; }
.ex-page-head h1 { font-size: clamp(28px, 3vw, 38px); font-weight: 800; }
.ex-breadcrumb { display: flex; gap: 8px; align-items: center; color: #a9b8a8; font-size: 14.5px; margin-top: 8px; }
.ex-breadcrumb a { color: #a9b8a8; }
.ex-breadcrumb a:hover { color: var(--ex-lime); }

/* ---- Filter bar (search + location + sort) ---- */
.ex-filterbar { background: var(--ex-card); border: 1px solid var(--ex-line); border-radius: 16px; padding: 14px; margin-bottom: 26px; box-shadow: var(--ex-shadow-sm); }
.ex-filterbar-top { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.ex-filterbar-search { flex: 1 1 260px; min-width: 180px; display: flex; align-items: center; gap: 10px; background: var(--ex-surface-2); border-radius: 12px; padding: 0 16px; }
.ex-filterbar-search i { color: var(--ex-muted); }
.ex-filterbar-search input { flex: 1; min-width: 0; border: 0; background: transparent; outline: none; font-family: inherit; font-size: 15px; color: var(--ex-ink); padding: 13px 0; }
.ex-filterbar-search input::placeholder { color: var(--ex-muted); }
.ex-filterbar-top .ex-filter-sort { flex: 0 0 auto; width: auto; min-width: 155px; }
.ex-filterbar-top .ex-btn { flex: 0 0 auto; }
.ex-adv-toggle { display: inline-flex; align-items: center; gap: 7px; }
.ex-adv-count { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--ex-lime); color: var(--ex-ink); font-size: 12px; font-weight: 800; }
.ex-filter-clear { width: 40px; padding-inline: 0 !important; }
.ex-filterbar-adv { display: none; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--ex-line-strong); }
.ex-filterbar-adv.is-open { display: grid; }
.ex-filterbar-adv .ex-select, .ex-filterbar-adv .ex-price-in { width: 100%; min-width: 0; }
.ex-select { font-family: inherit; font-size: 14.5px; padding: 11px 14px; border-radius: 11px; border: 1px solid var(--ex-line-strong); background: var(--ex-card); color: var(--ex-ink); outline: none; cursor: pointer; }
.ex-select:focus { border-color: var(--ex-ink); }
@media (max-width: 560px) { .ex-filterbar-adv { grid-template-columns: 1fr 1fr; } .ex-filter-sort { flex: 1 1 100%; width: 100%; } }

/* ---- Filter chips ---- */
.ex-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.ex-cat.is-active { background: var(--ex-ink); color: #fff; border-color: var(--ex-ink); }
.ex-cat.is-active .ex-dot { background: var(--ex-lime); }
body.ex-site a.ex-cat.is-active { color: #fff; }

/* ---- Merchant card: dual actions ---- */
.ex-m-actions { display: flex; gap: 8px; margin-top: auto; }
.ex-m-actions .ex-btn { flex: 1; padding-inline: 12px; }

/* ---- Merchant store header ---- */
.ex-store-head { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.ex-store-logo { width: 88px; height: 88px; border-radius: 22px; background: linear-gradient(140deg, var(--ex-lime), var(--ex-lime-deep)); display: grid; place-items: center; font-weight: 800; font-size: 2.2rem; color: var(--ex-ink); flex: none; box-shadow: 0 10px 26px rgba(200,205,95,.35); }
.ex-store-info h1 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; }
.ex-store-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.ex-store-meta .ex-chip { background: rgba(255,255,255,.12); color: #dbe6d9; }
.ex-store-tabs { display: flex; gap: 8px; margin-top: 26px; }
.ex-store-tabs a { padding: 11px 22px; border-radius: 999px; font-weight: 700; color: #cdd8cc; border: 1px solid rgba(255,255,255,.18); transition: .16s; }
.ex-store-tabs a.is-active, .ex-store-tabs a:hover { background: var(--ex-lime); color: var(--ex-ink); border-color: var(--ex-lime); }
body.ex-site .ex-store-tabs a.is-active { color: var(--ex-ink); }

/* ---- Content prose (about / static) ---- */
.ex-prose { max-width: 760px; }
.ex-prose h2 { font-size: 1.6rem; font-weight: 800; margin: 32px 0 12px; }
.ex-prose p { color: var(--ex-muted); font-size: 1.08rem; line-height: 1.85; margin: 0 0 16px; }
.ex-prose ul { color: var(--ex-muted); font-size: 1.08rem; line-height: 1.9; padding-inline-start: 22px; }
.ex-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 10px; }
.ex-feature { background: var(--ex-card); border: 1px solid var(--ex-line); border-radius: var(--ex-radius); padding: 26px; box-shadow: var(--ex-shadow-sm); }
.ex-feature-ic { width: 52px; height: 52px; border-radius: 15px; background: var(--ex-surface-2); display: grid; place-items: center; font-size: 1.4rem; color: var(--ex-ink-3); margin-bottom: 16px; }
.ex-feature h3 { font-size: 1.15rem; font-weight: 800; }
.ex-feature p { color: var(--ex-muted); margin: 8px 0 0; font-size: .98rem; line-height: 1.7; }

/* ---- Contact / forms ---- */
.ex-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .ex-form-grid { grid-template-columns: 1fr; } }
.ex-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.ex-field.ex-col-2 { grid-column: 1 / -1; }
.ex-field label { font-weight: 700; font-size: .95rem; }
.ex-input, .ex-textarea, .ex-select { font-family: inherit; font-size: 1rem; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--ex-line-strong); background: var(--ex-card); color: var(--ex-ink); outline: none; transition: border-color .16s, box-shadow .16s; width: 100%; }
.ex-input:focus, .ex-textarea:focus, .ex-select:focus { border-color: var(--ex-ink); box-shadow: 0 0 0 3px rgba(16,36,28,.08); }
.ex-textarea { min-height: 140px; resize: vertical; }
.ex-contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 26px; align-items: start; }
@media (max-width: 860px) { .ex-contact-grid { grid-template-columns: 1fr; } }
.ex-contact-card { background: var(--ex-card); border: 1px solid var(--ex-line); border-radius: var(--ex-radius); padding: 26px; box-shadow: var(--ex-shadow-sm); }
.ex-contact-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--ex-line); }
.ex-contact-item:last-child { border-bottom: 0; }
.ex-contact-item .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--ex-surface-2); display: grid; place-items: center; color: var(--ex-ink-3); font-size: 1.15rem; flex: none; }
.ex-contact-item b { display: block; font-size: 1.02rem; }
.ex-contact-item span { color: var(--ex-muted); font-size: .9rem; }

/* ---- Alerts ---- */
.ex-alert { padding: 14px 18px; border-radius: 12px; font-weight: 600; margin-bottom: 20px; }
.ex-alert-success { background: var(--ex-ok-soft); color: var(--ex-ok); border: 1px solid #cfe4cd; }
.ex-alert-danger { background: var(--ex-danger-soft); color: var(--ex-danger); border: 1px solid #f4cdc8; }

/* ---- Dashboard shell (customer / account) ---- */
.ex-dash { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .ex-dash { grid-template-columns: 1fr; } }
.ex-side { background: var(--ex-card); border: 1px solid var(--ex-line); border-radius: var(--ex-radius); padding: 20px; box-shadow: var(--ex-shadow-sm); position: sticky; top: 96px; }
@media (max-width: 900px) { .ex-side { position: static; } }
.ex-side-user { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--ex-line); margin-bottom: 14px; }
.ex-side-avatar { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(140deg, var(--ex-lime), var(--ex-lime-deep)); display: grid; place-items: center; font-weight: 800; color: var(--ex-ink); flex: none; }
.ex-side-user b { display: block; font-size: 1rem; }
.ex-side-user span { color: var(--ex-muted); font-size: .82rem; }
.ex-side-nav { display: flex; flex-direction: column; gap: 4px; }
.ex-side-nav a { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: 11px; font-weight: 600; color: var(--ex-muted); transition: .15s; }
.ex-side-nav a:hover { background: var(--ex-surface-2); color: var(--ex-ink); }
.ex-side-nav a.is-active { background: var(--ex-ink); color: #fff; }
body.ex-site .ex-side-nav a.is-active { color: #fff; }
.ex-side-nav a i { width: 18px; text-align: center; flex: none; }

/* ---- Panels ---- */
.ex-panel { background: var(--ex-card); border: 1px solid var(--ex-line); border-radius: var(--ex-radius); padding: 26px; box-shadow: var(--ex-shadow-sm); margin-bottom: 20px; }
.ex-panel h1 { font-size: 1.55rem; font-weight: 800; }
.ex-panel-sub { color: var(--ex-muted); margin-top: 6px; }

/* ---- Stat cards ---- */
.ex-stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.ex-stat-card { background: var(--ex-card); border: 1px solid var(--ex-line); border-radius: var(--ex-radius); padding: 22px; box-shadow: var(--ex-shadow-sm); }
.ex-stat-card .ex-lbl { color: var(--ex-muted); font-size: .92rem; font-weight: 600; }
.ex-stat-card .ex-val { font-size: 2.1rem; font-weight: 800; margin: 8px 0 14px; font-variant-numeric: tabular-nums; }

/* ---- Table ---- */
.ex-table-wrap { overflow-x: auto; }
.ex-table { width: 100%; border-collapse: collapse; }
.ex-table th { text-align: start; font-size: .86rem; color: var(--ex-muted); font-weight: 700; padding: 12px 14px; border-bottom: 2px solid var(--ex-line); white-space: nowrap; }
.ex-table td { padding: 14px; border-bottom: 1px solid var(--ex-line); font-size: .96rem; vertical-align: middle; }
.ex-table tr:last-child td { border-bottom: 0; }
.ex-badge { display: inline-flex; align-items: center; padding: 5px 12px; border-radius: 999px; font-size: .8rem; font-weight: 700; white-space: nowrap; }
.ex-badge-ok { background: var(--ex-ok-soft); color: var(--ex-ok); }
.ex-badge-danger { background: var(--ex-danger-soft); color: var(--ex-danger); }
.ex-badge-muted { background: var(--ex-surface-2); color: var(--ex-muted); }
.ex-badge-warn { background: var(--ex-warn-soft); color: var(--ex-warn); }

/* ---- Thread list (chats) ---- */
.ex-thread { display: flex; align-items: center; gap: 16px; padding: 16px; border: 1px solid var(--ex-line); border-radius: 14px; margin-bottom: 12px; transition: .15s; background: var(--ex-card); }
.ex-thread:hover { border-color: var(--ex-line-strong); box-shadow: var(--ex-shadow-sm); }
.ex-thread-ic { width: 48px; height: 48px; border-radius: 13px; background: var(--ex-surface-2); display: grid; place-items: center; color: var(--ex-ink-3); flex: none; font-size: 1.15rem; }
.ex-thread-body { flex: 1; min-width: 0; }
.ex-thread-title { font-weight: 700; }
.ex-thread-msg { color: var(--ex-muted); font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ex-thread-time { color: var(--ex-muted); font-size: .8rem; white-space: nowrap; }
.ex-unread { min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--ex-lime); color: var(--ex-ink); font-size: .75rem; font-weight: 800; display: grid; place-items: center; }

/* ---- Utility ---- */
.ex-empty { text-align: center; color: var(--ex-muted); padding: 44px 20px; border: 1px dashed var(--ex-line-strong); border-radius: var(--ex-radius); background: var(--ex-card); font-size: 1.05rem; }
.ex-empty i { display: block; font-size: 2.2rem; color: var(--ex-line-strong); margin-bottom: 12px; }

/* ==========================================================================
   Legacy template brand overrides
   Pages still using the old rts template (legacyStyles=true) — wholesale chat,
   basket details, etc. — get brand colors on the template's own classes so they
   stay consistent with the new design. These target rts/bootstrap classes that
   never appear on migrated ex- pages, so they're harmless there.
   ========================================================================== */
body.ex-site {
  --color-primary: #10241c;
  --color-primary-2: #e4e77a;
  --color-heading-1: #10241c;
}
body.ex-site .rts-btn.btn-primary,
body.ex-site .btn-primary:not(.ex-btn) {
  background-color: #10241c !important;
  border-color: #10241c !important;
  color: #fff !important;
}
body.ex-site .rts-btn.btn-primary:hover,
body.ex-site .btn-primary:not(.ex-btn):hover {
  background-color: #1d3f2c !important;
  border-color: #1d3f2c !important;
  color: #fff !important;
}
body.ex-site .rts-btn.btn-primary.border-only,
body.ex-site .rts-btn.border-only {
  background: transparent !important;
  color: #10241c !important;
}
body.ex-site .rts-btn.btn-primary.border-only:hover {
  background: #10241c !important;
  color: #fff !important;
}
body.ex-site .text-primary { color: #10241c !important; }
body.ex-site .btn-outline-primary { color: #10241c; border-color: #10241c; }
body.ex-site .btn-outline-primary:hover { background: #10241c; border-color: #10241c; color: #fff; }
body.ex-site a.current,
body.ex-site .navigator-breadcrumb-wrapper .current { color: #10241c; }

/* ===== Offer / product detail page ===== */
.ex-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.ex-detail-media { position: relative; border-radius: 18px; overflow: hidden; background: var(--ex-surface-2, #f4f6f5); border: 1px solid var(--ex-line, #e6eaea); aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; }
.ex-detail-media > img { width: 100%; height: 100%; object-fit: cover; }
.ex-detail-media .ex-media-fallback img { width: 120px !important; height: 120px !important; object-fit: contain !important; opacity: .34; }
.ex-detail-shop { display: inline-flex; align-items: center; gap: 6px; color: var(--ex-primary, #10241c); font-weight: 600; text-decoration: none; margin-bottom: 8px; }
.ex-detail-shop:hover { text-decoration: underline; }
.ex-detail-title { font-size: 28px; line-height: 1.25; margin: 0 0 6px; color: var(--ex-ink, #10241c); }
.ex-detail-sub { color: var(--ex-muted, #6b7772); margin-bottom: 14px; }
.ex-detail-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.ex-detail-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; margin: 4px 0 14px; }
.ex-detail-price .ex-price-now { font-size: 30px; }
.ex-detail-save { background: rgba(16,36,28,.08); color: var(--ex-primary, #10241c); font-weight: 700; font-size: 13px; padding: 4px 10px; border-radius: 999px; }
.ex-detail-addr { color: var(--ex-muted, #6b7772); font-size: 14px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.ex-detail-cta { margin-top: 22px; padding: 22px; border: 1px solid var(--ex-line, #e6eaea); border-radius: 16px; background: var(--ex-surface-2, #f8faf9); }
.ex-detail-cta h3 { margin: 0 0 8px; font-size: 18px; color: var(--ex-ink, #10241c); }
.ex-detail-cta p { color: var(--ex-muted, #6b7772); margin: 0 0 14px; font-size: 14px; }
.ex-detail-note { color: var(--ex-muted, #6b7772); font-size: 14px; margin: 0; }
@media (max-width: 860px) {
    .ex-detail-grid { grid-template-columns: 1fr; gap: 24px; }
    .ex-detail-title { font-size: 23px; }
}

/* ===== Buyer notifications ===== */
.ex-nav-count { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; margin-inline-start: 6px; border-radius: 999px; background: var(--ex-danger, #d1483a); color: #fff; font-size: 11px; font-weight: 700; line-height: 1; vertical-align: middle; }
.ex-notif-list { display: flex; flex-direction: column; gap: 10px; }
.ex-notif-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; border: 1px solid var(--ex-line, #e6eaea); border-radius: 14px; text-decoration: none; color: inherit; transition: background .15s, border-color .15s, transform .12s; }
.ex-notif-item:hover { background: var(--ex-surface-2, #f8faf9); transform: translateX(-2px); }
.ex-notif-item.is-unread { background: rgba(16,36,28,.045); border-color: rgba(16,36,28,.16); }
.ex-notif-ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; }
.ex-notif-ic.ex-pill-ok { background: rgba(31,138,76,.14); color: #1f8a4c; }
.ex-notif-ic.ex-pill-warn { background: rgba(214,158,46,.16); color: #b7791f; }
.ex-notif-ic.ex-pill-danger { background: rgba(209,72,58,.14); color: #d1483a; }
.ex-notif-ic.ex-pill-muted { background: rgba(107,119,114,.14); color: #6b7772; }
.ex-notif-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.ex-notif-title { font-weight: 700; color: var(--ex-ink, #10241c); display: flex; align-items: center; gap: 8px; }
.ex-notif-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ex-danger, #d1483a); flex: 0 0 auto; }
.ex-notif-msg { color: var(--ex-muted, #6b7772); font-size: 14px; }
.ex-notif-time { color: var(--ex-muted, #6b7772); font-size: 12px; opacity: .8; }
.ex-notif-arrow { color: var(--ex-muted, #9aa5a0); align-self: center; font-size: 13px; }

/* Filter-bar price inputs */
.ex-filterbar .ex-price-in { width: 100%; }

/* ===== Order status timeline ===== */
.ex-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.ex-timeline::before { content: ""; position: absolute; inset-inline-start: 19px; top: 6px; bottom: 6px; width: 2px; background: var(--ex-line, #e6eaea); }
.ex-tl-item { position: relative; display: flex; gap: 14px; padding: 0 0 18px; }
.ex-tl-item:last-child { padding-bottom: 0; }
.ex-tl-dot { position: relative; z-index: 1; flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; background: #fff; border: 2px solid var(--ex-line, #e6eaea); color: var(--ex-muted, #6b7772); }
.ex-tl-dot.ex-tl-ok { background: rgba(31,138,76,.12); border-color: #1f8a4c; color: #1f8a4c; }
.ex-tl-dot.ex-tl-warn { background: rgba(214,158,46,.14); border-color: #b7791f; color: #b7791f; }
.ex-tl-dot.ex-tl-danger { background: rgba(209,72,58,.12); border-color: #d1483a; color: #d1483a; }
.ex-tl-body { padding-top: 8px; }
.ex-tl-title { font-weight: 700; color: var(--ex-ink, #10241c); }
.ex-tl-meta { color: var(--ex-muted, #6b7772); font-size: 13px; margin-top: 2px; }

/* ===== Product specs (dynamic fields) ===== */
.ex-specs { margin: 18px 0 4px; }
.ex-specs-title { font-size: 16px; margin: 0 0 10px; color: var(--ex-ink, #10241c); }
.ex-specs-grid { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ex-spec-row { display: flex; justify-content: space-between; gap: 10px; padding: 9px 12px; border: 1px solid var(--ex-line, #e6eaea); border-radius: 10px; background: var(--ex-surface-2, #f8faf9); }
.ex-spec-row dt { color: var(--ex-muted, #6b7772); font-size: 13px; margin: 0; }
.ex-spec-row dd { margin: 0; font-weight: 600; color: var(--ex-ink, #10241c); font-size: 14px; text-align: end; }
@media (max-width: 560px) { .ex-specs-grid { grid-template-columns: 1fr; } }

/* ===== Verified merchant badge ===== */
.ex-verified { display: inline-flex; align-items: center; gap: 5px; background: rgba(31,138,76,.12); color: #1f8a4c; font-weight: 700; border-radius: 999px; vertical-align: middle; white-space: nowrap; }
.ex-verified i { font-size: .9em; }
.ex-verified-sm { font-size: 12px; padding: 3px 9px; margin-inline-start: 6px; }
.ex-verified-md { font-size: 14px; padding: 5px 12px; margin-inline-start: 8px; }

/* ===== Wishlist heart + stretched-link cards ===== */
.ex-card-rel { position: relative; }
.ex-stretch::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.ex-card-rel .ex-card-body { position: relative; }
.ex-heart-slot { position: absolute; top: 10px; inset-inline-start: 10px; z-index: 3; }
.ex-heart-form { margin: 0; }
.ex-heart { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(255,255,255,.92); color: #d1483a; box-shadow: var(--ex-shadow-sm, 0 2px 8px rgba(16,36,28,.12)); cursor: pointer; font-size: 16px; transition: transform .15s, background .15s; }
.ex-heart:hover { transform: scale(1.08); background: #fff; }
.ex-heart.is-active { background: #d1483a; color: #fff; }
.ex-detail-titlerow { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.ex-detail-titlerow .ex-heart { flex: 0 0 auto; }

/* ===== Ratings & reviews ===== */
.ex-stars { display: inline-flex; align-items: center; gap: 2px; color: #e6a817; white-space: nowrap; }
.ex-stars .fa-regular { color: #c9cfca; }
.ex-stars-num { color: var(--ex-ink, #10241c); font-weight: 700; margin-inline-start: 5px; font-size: .95em; }
.ex-stars-count { color: var(--ex-muted, #6b7772); font-weight: 500; margin-inline-start: 3px; font-size: .9em; }
.ex-chip-rating { background: rgba(230,168,23,.12); }
.ex-reviews { display: grid; gap: 14px; }
.ex-review { background: #fff; border: 1px solid var(--ex-line, #e6eaea); border-radius: 14px; padding: 16px 18px; }
.ex-review-head { display: flex; align-items: center; gap: 12px; }
.ex-review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--ex-ink, #10241c); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; flex: 0 0 auto; }
.ex-review-name { font-weight: 700; color: var(--ex-ink, #10241c); }
.ex-review-date { color: var(--ex-muted, #6b7772); font-size: 13px; }
.ex-review-stars { margin-inline-start: auto; }
.ex-review-body { margin: 12px 0 0; color: #3a4741; line-height: 1.7; }
/* Star rating input (RTL-friendly, reversed row so hover fills left-to-visual-right) */
.ex-rate-input { display: inline-flex; flex-direction: row-reverse; gap: 4px; margin-bottom: 12px; }
.ex-rate-input input { position: absolute; opacity: 0; width: 0; height: 0; }
.ex-rate-input label { font-size: 26px; color: #c9cfca; cursor: pointer; transition: color .12s; }
.ex-rate-input label:hover, .ex-rate-input label:hover ~ label,
.ex-rate-input input:checked ~ label { color: #e6a817; }

/* ===== Fulfillment (delivery/pickup) toggle ===== */
.ex-hidden { display: none !important; }
.ex-fulfillment { display: flex; gap: 10px; }
.ex-fulfill-opt { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border: 1.5px solid var(--ex-line-strong, #d3ddd2); border-radius: 12px; cursor: pointer; font-weight: 600; transition: border-color .15s, background .15s; }
.ex-fulfill-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.ex-fulfill-opt.is-active { border-color: var(--ex-ink, #10241c); background: rgba(16,36,28,.05); }
.ex-fulfill-opt i { color: var(--ex-ink, #10241c); }
.ex-pickup-note { background: rgba(214,158,46,.1); border: 1px solid rgba(214,158,46,.3); color: #8a6416; border-radius: 12px; padding: 12px 14px; font-size: 14px; margin-bottom: 14px; display: flex; gap: 8px; align-items: flex-start; }

/* ===== Auth: account-type choice + individual register ===== */
.ex-auth-choice, .ex-auth-card { max-width: 560px; margin: 20px auto; }
.ex-auth-card { background: var(--ex-card, #fff); border: 1px solid var(--ex-line, #e6eaea); border-radius: 18px; padding: 32px; box-shadow: var(--ex-shadow-sm, 0 2px 8px rgba(16,36,28,.06)); }
.ex-auth-head { text-align: center; margin-bottom: 22px; }
.ex-auth-logo { width: 56px; height: 56px; object-fit: contain; margin-bottom: 10px; }
.ex-auth-head h1 { font-size: 26px; margin: 0 0 6px; color: var(--ex-ink, #10241c); }
.ex-auth-head p { color: var(--ex-muted, #6b7772); margin: 0; }
.ex-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ex-choice-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 28px 22px; background: var(--ex-card, #fff); border: 1.5px solid var(--ex-line, #e6eaea); border-radius: 18px; text-decoration: none; color: inherit; transition: border-color .18s, transform .15s, box-shadow .2s; }
.ex-choice-card:hover { border-color: var(--ex-primary, #10241c); transform: translateY(-3px); box-shadow: var(--ex-shadow-md, 0 8px 30px rgba(16,36,28,.10)); }
.ex-choice-ic { width: 64px; height: 64px; border-radius: 18px; background: rgba(16,36,28,.06); color: var(--ex-primary, #10241c); display: inline-flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 4px; }
.ex-choice-ic-alt { background: rgba(228,231,122,.35); }
.ex-choice-card h3 { margin: 0; font-size: 19px; color: var(--ex-ink, #10241c); }
.ex-choice-card p { color: var(--ex-muted, #6b7772); font-size: 14px; margin: 0; line-height: 1.6; }
.ex-choice-go { margin-top: 8px; font-weight: 700; color: var(--ex-primary, #10241c); display: inline-flex; align-items: center; gap: 6px; }
.ex-auth-foot { text-align: center; margin-top: 22px; color: var(--ex-muted, #6b7772); }
.ex-auth-foot a, .ex-auth-links a { color: var(--ex-primary, #10241c); font-weight: 700; }
.ex-auth-links { display: flex; flex-direction: column; gap: 6px; text-align: center; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--ex-line, #e6eaea); color: var(--ex-muted, #6b7772); font-size: 14px; }
@media (max-width: 560px) { .ex-choice-grid { grid-template-columns: 1fr; } .ex-auth-card { padding: 22px; } }

/* ===== Modal ===== */
.ex-modal-overlay { position: fixed; inset: 0; background: rgba(16,36,28,.5); display: none; align-items: flex-start; justify-content: center; padding: 40px 16px; z-index: 300; overflow-y: auto; }
.ex-modal-overlay.is-open { display: flex; }
.ex-modal { background: #fff; border-radius: 18px; width: 100%; max-width: 640px; padding: 26px; box-shadow: var(--ex-shadow-lg, 0 24px 60px rgba(16,36,28,.16)); animation: exModalIn .2s ease; }
@keyframes exModalIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
.ex-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.ex-modal-head h3 { margin: 0; font-size: 1.15rem; color: var(--ex-ink, #10241c); font-weight: 800; }
.ex-modal-close { border: none; background: transparent; font-size: 24px; line-height: 1; color: var(--ex-muted, #6b7772); cursor: pointer; width: 36px; height: 36px; border-radius: 50%; transition: .15s; }
.ex-modal-close:hover { background: var(--ex-surface-2, #eef2e6); color: var(--ex-ink, #10241c); }

/* ===== Merchant cards — redesigned profile style (overrides earlier .ex-m-*) ===== */
.ex-m-card { padding: 0 !important; overflow: hidden; border-radius: 18px; }
.ex-m-banner { height: 68px; background: linear-gradient(135deg, var(--ex-ink, #10241c), var(--ex-ink-3, #1d3f2c)); position: relative; }
.ex-m-banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(228,231,122,.22), transparent 55%); }
.ex-m-banner .ex-m-badge { position: absolute; top: 13px; inset-inline-start: 14px; z-index: 1; font-size: .76rem; font-weight: 700; color: #fff; background: rgba(255,255,255,.16); padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.ex-m-body { padding: 0 20px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; }
.ex-m-avatar { width: 66px; height: 66px; border-radius: 18px; background: linear-gradient(140deg, var(--ex-lime, #e4e77a), var(--ex-lime-deep, #c8cd5f)); display: grid; place-items: center; font-weight: 800; font-size: 1.6rem; color: var(--ex-ink, #10241c); margin: -33px auto 0; border: 4px solid var(--ex-card, #fff); box-shadow: 0 8px 18px rgba(200,205,95,.4); position: relative; z-index: 1; }
.ex-m-name { font-weight: 800; font-size: 1.16rem; line-height: 1.4; margin: 12px 0 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.8em; color: var(--ex-ink, #10241c); text-align: center; }
.ex-m-meta { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; justify-content: center; margin-bottom: 14px; }
.ex-m-info { width: 100%; display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; padding-top: 14px; border-top: 1px solid var(--ex-line, #e3ebe3); }
.ex-m-info span { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--ex-muted, #5f6f66); font-size: .92rem; font-weight: 500; }
.ex-m-actions { width: 100%; }
.ex-m-info i { color: var(--ex-lime-deep, #c8cd5f); width: 15px; text-align: center; flex: none; }
.ex-m-actions { display: flex; gap: 8px; margin-top: auto; }
.ex-m-actions .ex-btn { flex: 1; padding-inline: 10px; }
.ex-m-card:hover { transform: translateY(-4px); box-shadow: var(--ex-shadow-md, 0 8px 30px rgba(16,36,28,.10)); border-color: var(--ex-lime-deep, #c8cd5f); }

/* ===== About page ===== */
.ex-about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; background: linear-gradient(135deg, var(--ex-ink, #10241c), var(--ex-ink-3, #1d3f2c)); border-radius: 20px; padding: 32px; margin-top: 40px; }
.ex-about-stat { text-align: center; color: #fff; }
.ex-about-stat strong { display: block; font-size: 2.3rem; font-weight: 800; line-height: 1; color: var(--ex-lime, #e4e77a); }
.ex-about-stat span { display: block; margin-top: 8px; color: #cbd8c9; font-size: .92rem; font-weight: 600; }
@media (max-width: 640px) { .ex-about-stats { grid-template-columns: 1fr 1fr; gap: 24px 12px; } .ex-about-stat strong { font-size: 1.9rem; } }

.ex-about-block { margin-top: 56px; }
.ex-about-block > .ex-eyebrow { margin-bottom: 12px; display: inline-flex; }
.ex-about-block h2 { font-size: 1.7rem; }
.ex-about-lead { color: var(--ex-muted, #5f6f66); font-size: 1.02rem; line-height: 1.9; margin-top: 12px; max-width: 760px; }

.ex-vmv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
@media (max-width: 860px) { .ex-vmv { grid-template-columns: 1fr; } }
.ex-vmv-card { background: var(--ex-card, #fff); border: 1px solid var(--ex-line, #e3ebe3); border-radius: 16px; padding: 26px; }
.ex-vmv-card .ex-vmv-ic { width: 50px; height: 50px; border-radius: 14px; background: var(--ex-surface-2, #eef2e6); color: var(--ex-ink, #10241c); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 14px; }
.ex-vmv-card h3 { font-size: 1.15rem; margin: 0 0 8px; color: var(--ex-ink, #10241c); }
.ex-vmv-card p { color: var(--ex-muted, #5f6f66); line-height: 1.8; margin: 0; }

.ex-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
@media (max-width: 860px) { .ex-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ex-steps { grid-template-columns: 1fr; } }
.ex-step { background: var(--ex-card, #fff); border: 1px solid var(--ex-line, #e3ebe3); border-radius: 16px; padding: 22px; position: relative; }
.ex-step-num { width: 38px; height: 38px; border-radius: 50%; background: var(--ex-lime, #e4e77a); color: var(--ex-ink, #10241c); display: grid; place-items: center; font-weight: 800; font-size: 1.05rem; margin-bottom: 12px; }
.ex-step h4 { font-size: 1.05rem; margin: 0 0 6px; color: var(--ex-ink, #10241c); }
.ex-step p { color: var(--ex-muted, #5f6f66); font-size: .9rem; line-height: 1.7; margin: 0; }

.ex-audience { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
@media (max-width: 760px) { .ex-audience { grid-template-columns: 1fr; } }
.ex-aud-card { border: 1px solid var(--ex-line, #e3ebe3); border-radius: 18px; padding: 28px; background: var(--ex-card, #fff); }
.ex-aud-card h3 { font-size: 1.25rem; margin: 0 0 14px; display: flex; align-items: center; gap: 10px; color: var(--ex-ink, #10241c); }
.ex-aud-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.ex-aud-card li { display: flex; align-items: flex-start; gap: 10px; color: #3a4741; line-height: 1.6; }
.ex-aud-card li i { color: #1f8a4c; margin-top: 4px; flex: none; }
