/* =====================================================================
   WeCare Meds — Modern Pharmacy Storefront
   assets/css/styles.css
   ---------------------------------------------------------------------
   1.  Design tokens
   2.  Reset & base
   3.  Typography utilities
   4.  Buttons / badges / pills
   5.  Layout primitives
   6.  Announcement bar
   7.  Header + search + category nav
   8.  Hero
   9.  Trust strip
   10. Best sellers (cards + carousel)
   11. Category grid
   12. How it works
   13. Reviews & testimonials
   14. Security / assurance band
   15. Newsletter
   16. Footer
   17. Overlays (quick view, toast, back-to-top)
   18. Motion & reveal
   19. Responsive
   ===================================================================== */

/* ------------------------------------------------ 1. Design tokens -- */
:root {
  /* Brand — soft, clinical blues */
  --blue-50:  #eef5ff;
  --blue-100: #dbe9fe;
  --blue-200: #bfd8fd;
  --blue-300: #8fbcfb;
  --blue-500: #1668e3;
  --blue-600: #0f56c2;
  --blue-700: #0c4499;

  /* Vibrant conversion accent */
  --accent-400: #ff8a3d;
  --accent-500: #ff5c39;
  --accent-600: #e8431f;

  /* Brand accents — mapped to the blue theme (powpills-style structure, WeCare blue) */
  --teal-900: #0c4499;
  --teal-800: #0f56c2;
  --teal-600: #1668e3;
  --cyan-800: #0f56c2;

  /* Support */
  --mint-50:  #e9fbf3;
  --mint-500: #12b76a;
  --amber-400:#fbbf24;
  --rose-500: #e11d48;

  /* Neutrals — cool grays */
  --ink:      #0d1b2a;
  --ink-soft: #24384f;
  --muted:    #5c7189;
  --muted-2:  #8698ad;
  --line:     #e4ebf3;
  --line-soft:#eef2f7;
  --surface:  #f4f8fc;
  --surface-2:#eaf1f9;
  --white:    #ffffff;

  /* Typography — Inter (sans-serif) across the whole site */
  --font-display: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-numeric: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-full: 999px;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(13, 27, 42, .06);
  --shadow-sm: 0 4px 14px rgba(13, 27, 42, .06);
  --shadow-md: 0 12px 30px rgba(13, 27, 42, .08);
  --shadow-lg: 0 26px 60px rgba(13, 27, 42, .12);
  --shadow-cta:0 10px 24px rgba(22, 104, 227, .32);

  /* Rhythm */
  --container: 1240px;
  --gutter: 20px;
  --section-y: clamp(56px, 7vw, 104px);

  --ease: cubic-bezier(.22, .78, .3, 1);
}

/* -------------------------------------------------- 2. Reset & base */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--blue-300);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 999;
  background: var(--blue-500); color: #fff; padding: 10px 18px;
  border-radius: var(--r-xs); transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------ 3. Typography utilities */
h1, h2, h3, h4, h5, .display, .product-card__title, .cat-card__title {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  font-weight: 600;
}

h1 { font-size: clamp(2.05rem, 4.6vw, 3.65rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.1vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); }

h1, h2, h3, h4, .product-card__title, .cat-card__title { text-wrap: balance; }
p, .product-card__desc, .review-card__quote, .trust-item small,
.hero__row small, .assurance__item p, .step p { text-wrap: pretty; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 12px;
  display: inline-block;
}

.lede { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }

.num, .price, .rating__score, .cart-btn__count, .stat__value, .discount-badge {
  font-family: var(--font-numeric);
  font-weight: 700;
  font-feature-settings: 'tnum' 1;
}

.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; color: var(--muted); }

/* -------------------------------- 4. Buttons / badges / pills ------ */
.btn {
  --btn-bg: var(--blue-500);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  padding: 14px 26px;
  border-radius: var(--r-full);
  background: var(--btn-bg);
  color: var(--btn-fg);
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--cta {
  background: var(--teal-600);
  box-shadow: 0 10px 24px rgba(22, 104, 227, .28);
}
.btn--cta:hover { background: var(--blue-600); box-shadow: 0 14px 30px rgba(22, 104, 227, .42); }

.btn--call {
  background: var(--blue-700);
  color: #fff;
  box-shadow: 0 10px 24px rgba(12, 68, 153, .28);
}
.btn--call:hover { background: var(--blue-600); }

.btn--primary { box-shadow: 0 10px 24px rgba(22, 104, 227, .28); }
.btn--primary:hover { background: var(--blue-600); }

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-xs);
}
.btn--ghost:hover { border-color: var(--blue-300); color: var(--blue-600); }

.btn--sm { padding: 11px 18px; font-size: .95rem; }
.btn--block { width: 100%; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: var(--r-full);
}
.tag--best   { background: var(--ink); color: #fff; }
.tag--hot    { background: linear-gradient(135deg, var(--accent-500), var(--accent-400)); color: #fff; }
.tag--new    { background: var(--blue-500); color: #fff; }
.tag--amber  { background: #fef0c7; color: #93540b; }
.tag--purple { background: #f4ebff; color: #6941c6; }
.tag--verified {
  background: var(--mint-50); color: #067647; text-transform: none;
  letter-spacing: 0; font-size: .88rem;
}

.discount-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--rose-500);
  color: #fff;
  font-size: .92rem;
  padding: 7px 12px;
  border-radius: var(--r-xs);
  line-height: 1;
  box-shadow: 0 6px 16px rgba(225, 29, 72, .3);
}

.rating { display: inline-flex; align-items: center; gap: 7px; }
.rating__stars { color: var(--amber-400); font-size: 1.05rem; letter-spacing: 1px; }
.rating__score { font-size: 1rem; color: var(--ink); }
.rating__count { font-size: .9rem; color: var(--muted-2); font-family: var(--font-body); }

.stock {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .92rem; font-weight: 600; color: #067647;
}
.stock__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint-500);
  animation: pulse 2.2s var(--ease) infinite;
}
.stock--low { color: #b54708; }
.stock--low .stock__dot { background: #f79009; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(18, 183, 106, .18); }
  50%      { box-shadow: 0 0 0 7px rgba(18, 183, 106, 0); }
}

/* --------------------------------------- 5. Layout primitives ------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface); }
.section--edge { border-top: 1px solid var(--line-soft); }

/* -------------------------------------- 6. Announcement bar -------- */
.announce-top {
  position: relative; overflow: hidden;
  background: var(--teal-900);
  color: #fff;
  font-size: .88rem;
  font-weight: 500;
}
.announce-top__inner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 40px; padding-block: 5px;
  text-align: center; flex-wrap: wrap;
}
.announce-top__shimmer {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: translateX(-100%);
  animation: shimmer 2.5s infinite;
}
@keyframes shimmer { 100% { transform: translateX(100%); } }

/* ----------------------------- 7. Header + search + category nav --- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.header__main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding-block: 16px;
}

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
}
.logo__mark img { width: 100%; height: auto; }
.logo__text {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.42rem; letter-spacing: -.03em; color: var(--ink);
}
.logo__text span { color: var(--blue-500); }
.logo__tagline {
  display: block; white-space: nowrap; font-family: var(--font-body); font-size: .88rem;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted-2);
  font-weight: 600; margin-top: -2px;
}

/* Search */
.search {
  display: flex; align-items: stretch;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-full);
  padding: 5px 5px 5px 6px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.search.is-focused {
  background: var(--white);
  border-color: var(--blue-300);
  box-shadow: 0 0 0 4px rgba(143, 188, 251, .28);
}

.search__cats { position: relative; flex: none; }
.search__cats-toggle {
  display: flex; align-items: center; gap: 8px;
  height: 100%; padding: 0 16px;
  font-family: var(--font-display); font-size: .96rem; font-weight: 600;
  color: var(--ink); border-right: 1.5px solid var(--line);
  border-radius: var(--r-full) 0 0 var(--r-full);
}
.search__cats-toggle svg { transition: transform .2s var(--ease); }
.search__cats-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.search__dropdown {
  position: absolute; top: calc(100% + 12px); left: 0; z-index: 40;
  min-width: 250px; padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.search__dropdown.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.search__dropdown li button {
  width: 100%; text-align: left; padding: 10px 14px;
  border-radius: var(--r-xs); font-size: .97rem; color: var(--ink-soft);
  transition: background-color .15s var(--ease), color .15s var(--ease);
}
.search__dropdown li button:hover,
.search__dropdown li button[aria-selected="true"] {
  background: var(--blue-50); color: var(--blue-600); font-weight: 600;
}

.search__field {
  flex: 1; min-width: 0; border: 0; background: none;
  padding: 12px 16px; font-size: 1.02rem;
}
.search__field::placeholder { color: var(--muted-2); }
.search__field:focus { outline: none; }

.search__submit {
  flex: none; display: grid; place-items: center;
  width: 50px; height: 46px; padding: 0; border-radius: 23px;
  background: var(--teal-600); color: #fff;
  transition: background-color .18s var(--ease), transform .18s var(--ease);
}
.search__submit:hover { background: var(--teal-800); }

.search__suggest {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  margin-top: 10px; padding-left: 8px;
  font-size: .88rem; color: var(--muted-2);
}
.search__suggest a { color: var(--blue-600); font-weight: 600; }
.search__suggest a:hover { text-decoration: underline; }

/* Search wrapper */
.header__search { display: flex; align-items: center; gap: 12px; position: relative; }
.header__search .search { flex: 1; min-width: 0; }

/* Live results from the JSON catalog */
.search__results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 70;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.search__result {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  transition: background-color .15s var(--ease);
}
.search__result:last-child { border-bottom: 0; }
.search__result:hover, .search__result:focus-visible { background: var(--blue-50); }
.search__result img {
  flex: none; width: 44px; height: 44px;
  object-fit: contain; border-radius: 8px;
  background: var(--surface); mix-blend-mode: multiply;
}
.search__result-name { flex: 1; min-width: 0; font-weight: 600; font-size: .95rem; color: var(--ink); }
.search__result-price { flex: none; font-family: var(--font-numeric); font-weight: 700; font-size: .9rem; color: var(--blue-600); }
.search__results-empty { padding: 14px 16px; font-size: .92rem; color: var(--muted); }
.search__results-empty a { color: var(--blue-600); font-weight: 700; }

/* Header actions */
.header__actions { display: flex; align-items: center; gap: 8px; flex: none; }

/* The phone block also lives in the announce bar — drop the header copy
   unless the viewport is wide enough to fit it beside a usable search field */
@media (max-width: 1279px) {
  .header__actions .icon-btn--support { display: none; }
}
/* Mid-size screens: compact category toggle so the field stays typable */
@media (min-width: 1024px) and (max-width: 1199px) {
  .search__cats-toggle { padding: 0 11px; font-size: .9rem; }
}

.icon-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: var(--r-full);
  color: var(--ink); transition: background-color .18s var(--ease), color .18s var(--ease);
}
.icon-btn:hover { background: var(--blue-50); color: var(--blue-600); }
.icon-btn__label { display: flex; flex-direction: column; line-height: 1.2; }
.icon-btn__label small { font-size: .88rem; color: var(--muted-2); }
.icon-btn__label b { font-family: var(--font-display); font-size: .97rem; font-weight: 600; }

.cart-btn { background: var(--ink); color: #fff; padding: 10px 18px; }
.cart-btn:hover { background: var(--blue-600); color: #fff; }
.cart-btn .icon-btn__label small { color: rgba(255, 255, 255, .65); }
.cart-btn__count {
  position: absolute; top: -5px; right: -5px;
  min-width: 25px; height: 25px; padding: 0 6px;
  display: grid; place-items: center;
  background: var(--accent-500); color: #fff;
  border: 2px solid #fff; border-radius: var(--r-full);
  font-size: .9rem; line-height: 1;
}
.cart-btn__count.is-bumped { animation: bump .4s var(--ease); }
@keyframes bump {
  0% { transform: scale(1); } 45% { transform: scale(1.4); } 100% { transform: scale(1); }
}

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); }
.nav-toggle span {
  display: block; width: 20px; height: 2px; margin: 4px auto;
  background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Category nav */
.catnav { border-top: 1px solid var(--line-soft); background: var(--white); }
.catnav__list {
  display: flex; align-items: center; gap: 4px;
  overflow-x: auto; scrollbar-width: none;
}
.catnav__list::-webkit-scrollbar { display: none; }
.catnav__list > li > a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px;
  font-family: var(--font-display); font-size: 1rem; font-weight: 500;
  color: var(--ink-soft); white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.catnav__list > li > a:hover { color: var(--blue-600); border-bottom-color: var(--blue-500); }
.catnav__list .is-highlight a { color: var(--accent-600); font-weight: 600; }
.catnav__meta {
  margin-left: auto; display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: .93rem; color: var(--muted); white-space: nowrap;
}
.catnav__meta b { font-family: var(--font-numeric); color: var(--ink); }

/* ---------------------------------------------------- 8. Hero ------ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 8% -10%, var(--blue-50), transparent 60%),
    radial-gradient(800px 460px at 100% 0%, #fff3ec, transparent 55%),
    var(--white);
  padding-block: clamp(18px, 3vw, 40px) clamp(44px, 6vw, 84px);
}
.hero__grid {
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: 56px; align-items: center;
}
.hero__pill {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 7px 14px 7px 7px; margin-bottom: 22px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-full); box-shadow: var(--shadow-xs);
  font-size: .93rem; color: var(--ink-soft);
}
.hero__pill em {
  font-style: normal; background: var(--teal-600); color: #fff;
  font-weight: 700; font-family: var(--font-display); font-size: .9rem;
  padding: 4px 10px; border-radius: var(--r-full);
}
.hero__pill-dot {
  flex: none; width: 9px; height: 9px; margin-left: 7px; border-radius: 50%;
  background: var(--blue-500);
  animation: ping-dot 1.6s ease-in-out infinite;
}
@keyframes ping-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 104, 227, .4); }
  50% { box-shadow: 0 0 0 6px rgba(22, 104, 227, 0); }
}

/* Rotating gradient headline + blinking cursor */
.hero__rotate {
  display: inline-block;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-700));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.hero__rotate.is-out { opacity: 0; transform: translateY(6px); }

.hero__copy { margin-top: 20px; font-size: 1.15rem; color: var(--ink-soft); max-width: 54ch; }
.hero__copy strong { color: var(--ink); font-weight: 700; }
.hero__visual-mobile { display: none; }

.coupon-box {
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 24px; padding: 12px 14px;
  background: var(--surface); border: 2px dashed var(--blue-300);
  border-radius: var(--r-md); min-width: 320px;
}
.coupon-box__left { display: flex; align-items: center; gap: 12px; }
.coupon-box__icon {
  width: 44px; height: 44px; display: grid; place-items: center; flex: none;
  background: var(--teal-600); color: #fff; border-radius: var(--r-sm);
}
.coupon-box__text b { display: block; font-size: .95rem; font-weight: 700; color: var(--ink); margin-top: 3px; }
.coupon-box__text small { font-size: .9rem; color: var(--muted-2); display: block; }
.coupon-box__row { display: flex; align-items: center; gap: 8px; }
.coupon-box__chip {
  background: var(--teal-600); color: #fff;
  font-family: var(--font-display); font-size: .68rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 6px;
}
.coupon-box__text code {
  font-family: var(--font-numeric); font-weight: 700; color: var(--blue-600); font-size: 1.05rem;
  letter-spacing: .1em; background: var(--surface);
  border: 1px solid var(--blue-100); border-radius: 6px; padding: 1px 7px;
}
.btn--copy {
  display: inline-flex; align-items: center; gap: 6px; flex: none;
  background: var(--teal-600); color: #fff; padding: 8px 14px;
  border-radius: var(--r-sm); font-size: .9rem; font-weight: 700;
}
.btn--copy.is-copied { background: var(--teal-800); }
.btn--copy:hover { transform: scale(1.02); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px; margin-top: 36px; padding-top: 24px;
  border-top: 1px dashed var(--line);
  text-align: center;
}
.stat__icon {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-600);
  margin-bottom: 8px;
}
.stat__value {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(.95rem, 1.6vw, 1.1rem); color: var(--ink); line-height: 1.2;
}
.stat__label { font-size: .85rem; color: var(--muted); margin-top: 4px; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__card {
  position: relative; z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 26px;
}
.hero__card-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding-bottom: 18px; border-bottom: 1px solid var(--line-soft);
}
.hero__card-head h3 { font-size: 1.05rem; }
.hero__card-list { display: grid; gap: 14px; margin-top: 18px; }
.hero__row {
  display: grid; grid-template-columns: 46px 1fr auto;
  align-items: center; gap: 14px;
  padding: 12px; border-radius: var(--r-md);
  background: var(--surface);
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.hero__row:hover { transform: translateX(4px); background: var(--blue-50); }
.hero__row-icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--white); box-shadow: var(--shadow-xs);
}
.hero__row b { font-family: var(--font-display); font-size: 1.03rem; color: var(--ink); display: block; }
.hero__row small { font-size: .89rem; color: var(--muted); }
.hero__row .price { font-size: 1.12rem; color: var(--blue-600); }

.hero__float {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  padding: 13px 17px; background: var(--white);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
  animation: float 5.5s ease-in-out infinite;
}
.hero__float--a { top: -22px; left: -26px; }
.hero__float--b { bottom: -24px; right: -14px; animation-delay: -2.6s; }
.hero__float--badge { top: -14px; right: -10px; animation-name: floatSlow; }
.hero__float--badge .hero__float-icon { background: var(--blue-50); color: var(--blue-600); }
.hero__float--badge small { color: var(--blue-600); font-weight: 700; }
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(.5deg); }
}

/* Product card variant: image + live-support row in one framed card */
.hero__card--product { padding: 16px; }
.hero__card--product img { width: 100%; height: auto; display: block; border-radius: var(--r-lg); }
.hero__card-status {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line-soft);
}
.hero__card-live { display: inline-flex; align-items: center; gap: 8px; }
.hero__card-live b { font-family: var(--font-display); font-size: .92rem; color: var(--ink); }
.dot-live {
  flex: none; width: 9px; height: 9px; border-radius: 50%;
  background: var(--mint-500);
  animation: ping-dot-green 1.6s ease-in-out infinite;
}
@keyframes ping-dot-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(18, 183, 106, .4); }
  50% { box-shadow: 0 0 0 6px rgba(18, 183, 106, 0); }
}
.hero__card-note { font-size: .84rem; font-weight: 700; color: var(--blue-600); text-align: right; }
.hero__float b { font-family: var(--font-display); font-size: .98rem; color: var(--ink); display: block; }
.hero__float small { font-size: .85rem; color: var(--muted); }
.hero__float-icon {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--mint-50); color: #067647;
}
.hero__float--b .hero__float-icon { background: var(--blue-50); color: var(--blue-600); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

.hero__blob {
  position: absolute; inset: 12% -12% -12% 12%;
  background: linear-gradient(140deg, var(--blue-100), #ffe6da);
  filter: blur(46px); opacity: .55; border-radius: 50%; z-index: 1;
}

/* ------------------------- Free shipping & payments band ----------- */
.text-accent { color: var(--blue-500); }

.ship-band-wrap { padding-block: clamp(28px, 4vw, 56px); }
.ship-band {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap;
  background: linear-gradient(135deg, #eef5ff, #dbe9fe 60%, #cfe0fb);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-xl);
  padding: clamp(22px, 3.4vw, 44px);
}
.ship-band__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.02; letter-spacing: -.03em;
  text-transform: uppercase; color: var(--ink);
}
.ship-band__above {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 16px; padding: 8px 16px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-sm); box-shadow: var(--shadow-xs);
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; font-size: .86rem;
  color: var(--ink-soft);
}
.ship-band__above b { font-size: 1.35rem; color: var(--blue-600); letter-spacing: 0; }
.ship-band__label {
  margin-top: 20px; margin-bottom: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.ship-band .payments { display: flex; flex-wrap: wrap; gap: 8px; }
.ship-band .pay-chip { background: var(--white); border: 1px solid var(--line); color: var(--ink); box-shadow: var(--shadow-xs); }
.ship-band .pay-chip--paypal { color: #003087; font-weight: 800; }
.ship-band .pay-chip--skrill { color: #811453; font-weight: 800; }
.ship-band .pay-chip--visa { color: #1a1f71; }
.ship-band .pay-chip--mc { color: #eb001b; }

.ship-band__perks {
  display: flex; flex-wrap: wrap; gap: 8px 26px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(22, 104, 227, .15);
}
.ship-band__perks > span {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--blue-700);
}
.ship-band__perks b {
  font-family: var(--font-display); font-weight: 600;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft); line-height: 1.35;
}

.ship-band__badge24 {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); color: var(--blue-600);
}
.ship-band__badge24 b { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.1; color: var(--ink); }
.ship-band__badge24 small { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.ship-band__art { flex: none; width: clamp(150px, 22vw, 220px); }
.ship-band__art svg { width: 100%; height: auto; display: block; }

@media (max-width: 760px) {
  .ship-band { flex-direction: column; align-items: flex-start; text-align: left; }
  .ship-band__art { align-self: center; width: 170px; margin-top: -6px; }
  .ship-band__badge24 { width: 62px; height: 62px; top: 14px; right: 14px; }
}

/* -------------------------------- How to order process (steps) ----- */
.order-steps {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.order-step {
  position: relative; text-align: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px 16px 22px;
}
.order-step__num {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue-50); color: var(--blue-600);
  border: 1px solid var(--blue-200); border-radius: var(--r-full);
  font-family: var(--font-numeric); font-weight: 700; font-size: .8rem;
  padding: 2px 12px;
}
.order-step__icon {
  display: inline-grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-600);
  box-shadow: var(--shadow-xs); margin-bottom: 12px;
}
.order-step h3 {
  font-size: .88rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink);
}
.order-step p { margin-top: 6px; font-size: .88rem; color: var(--muted); }

.order-trust {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px; margin-top: 26px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 18px 20px;
}
.order-trust > span { display: flex; align-items: flex-start; gap: 11px; color: var(--blue-600); }
.order-trust b {
  display: block; font-family: var(--font-display); font-size: .8rem;
  letter-spacing: .05em; text-transform: uppercase; color: var(--ink);
}
.order-trust small { display: block; margin-top: 2px; font-size: .82rem; color: var(--muted); line-height: 1.4; }

@media (max-width: 980px) { .order-steps, .order-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) {
  .order-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 12px; }
  .order-step { padding: 22px 10px 16px; }
  .order-trust { grid-template-columns: 1fr; }
}

/* ------------------------------- Global delivery marquee ----------- */
.global .section-head { margin-bottom: 30px; }
.global-marquee { overflow: hidden; padding-block: 8px; }
.global-marquee__track {
  display: flex; gap: 16px; width: max-content;
  animation: global-scroll 40s linear infinite;
}
.global-marquee:hover .global-marquee__track { animation-play-state: paused; }
@keyframes global-scroll {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.global-card {
  flex: none; display: flex; align-items: flex-start; gap: 12px;
  width: 280px; padding: 16px 18px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-xs);
}
.global-card__flag {
  flex: none; width: 34px; height: 24px; border-radius: 5px; overflow: hidden;
  box-shadow: var(--shadow-xs); border: 1px solid var(--line-soft);
}
.global-card__flag svg { width: 100%; height: 100%; display: block; }
.global-card b { display: block; font-family: var(--font-display); font-size: .98rem; color: var(--ink); }
.global-card small { display: block; margin-top: 3px; font-size: .82rem; color: var(--muted); line-height: 1.45; }

@media (prefers-reduced-motion: reduce) {
  .global-marquee { overflow-x: auto; }
  .global-marquee__track { animation: none; }
}
@media (max-width: 480px) {
  .global-card { width: 240px; padding: 14px; }
}

/* ------------------------------------- Category listing empty state */
.cat-empty {
  text-align: center; max-width: 660px; margin-inline: auto;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--shadow-sm);
  padding: clamp(28px, 5vw, 52px);
}
.cat-empty__icon {
  display: inline-grid; place-items: center;
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--blue-50); color: var(--blue-600);
  margin-bottom: 16px;
}
.cat-empty h2 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
.cat-empty > p { margin-top: 12px; color: var(--muted); }
.cat-empty__actions {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px; margin-top: 24px;
}
.cat-empty__note { margin-top: 20px; font-size: .9rem; color: var(--blue-600); font-weight: 600; }
.btn--wa { background: #25d366; color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, .25); }
.btn--wa:hover { background: #1eb457; }

/* ----------------------------------- Why choose / checklist / blog - */
.why-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card__icon {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--blue-50); color: var(--blue-600);
  margin-bottom: 14px;
}
.why-card b { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.why-card p { margin-top: 8px; font-size: .93rem; color: var(--muted); }
@media (max-width: 1100px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px)  { .why-grid { grid-template-columns: 1fr; gap: 14px; } }

.checklist {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px; max-width: 900px; margin-inline: auto;
  list-style: none; padding: 0;
}
.checklist li {
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 13px 16px;
  font-size: .96rem; color: var(--ink-soft);
}
.checklist li b { color: var(--blue-600); }
.checklist__icon {
  flex: none; width: 22px; height: 22px; margin-top: 1px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--blue-500); color: #fff;
}
@media (max-width: 760px) { .checklist { grid-template-columns: 1fr; gap: 10px; } }

.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.blog-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__media {
  position: relative; height: 120px;
  display: grid; place-items: center; color: var(--blue-600);
}
.blog-card__media--a { background: linear-gradient(135deg, var(--blue-50), var(--blue-100)); }
.blog-card__media--b { background: linear-gradient(135deg, var(--mint-50), #d3f5e4); color: #067647; }
.blog-card__media--c { background: linear-gradient(135deg, #fff3ec, #ffe6da); color: var(--accent-600); }
.blog-card__chip {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255, 255, 255, .92); color: var(--ink);
  font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--r-full);
}
.blog-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.blog-card__body h3 { font-size: 1.08rem; line-height: 1.35; }
.blog-card__body h3 a { color: var(--ink); }
.blog-card__body h3 a:hover { color: var(--blue-600); }
.blog-card__body > p { margin-top: 8px; font-size: .92rem; color: var(--muted); flex: 1; }
.blog-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line-soft);
  font-size: .85rem; color: var(--muted-2);
}
.blog-card__meta a { font-weight: 700; color: var(--blue-600); }
.blog-card__meta a:hover { text-decoration: underline; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* --------------------------------------------------- FAQ ----------- */
.faq__container { max-width: 780px; }
.faq__list { display: grid; gap: 12px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 18px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink);
  transition: color .18s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--blue-600); }
.faq__item summary svg { flex: none; color: var(--muted-2); transition: transform .2s var(--ease); }
.faq__item[open] summary { color: var(--blue-600); border-bottom: 1px solid var(--line-soft); }
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__item p { padding: 14px 18px; margin: 0; font-size: .96rem; color: var(--muted); background: var(--surface); }

/* ------------------------------------------- 9. Trust strip -------- */
.trust-strip { border-block: 1px solid var(--line-soft); background: var(--white); }
.trust-strip__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-item {
  display: flex; align-items: center; gap: 14px; min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid var(--line-soft);
}
.trust-item:last-child { border-right: 0; }
.trust-item__icon {
  flex: none; width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600);
}
.trust-item > span:last-child { min-width: 0; }
.trust-item b { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.trust-item small { font-size: .9rem; color: var(--muted); }

/* ------------------------------- 10. Best sellers / product cards -- */
.sellers__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 30px;
}
.sellers__head .section-head { margin-bottom: 0; }
.sellers__controls { display: flex; align-items: center; gap: 10px; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filter {
  padding: 9px 17px; border-radius: var(--r-full);
  background: var(--white); border: 1.5px solid var(--line);
  font-family: var(--font-display); font-size: .96rem; font-weight: 500; color: var(--ink-soft);
  transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.filter:hover { border-color: var(--blue-300); color: var(--blue-600); }
.filter.is-active {
  background: var(--ink); border-color: var(--ink); color: #fff; font-weight: 600;
}

.carousel { position: relative; }
.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(286px, 1fr);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 24px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; }

.carousel__nav {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white); border: 1.5px solid var(--line);
  color: var(--ink); box-shadow: var(--shadow-xs);
  transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), opacity .18s;
}
.carousel__nav:hover:not(:disabled) {
  background: var(--blue-500); border-color: var(--blue-500); color: #fff;
}
.carousel__nav:disabled { opacity: .38; cursor: not-allowed; }

.carousel__dots { display: flex; justify-content: center; gap: 7px; margin-top: 4px; }
.carousel__dot {
  width: 8px; height: 8px; border-radius: var(--r-full);
  background: var(--line); transition: width .25s var(--ease), background-color .25s var(--ease);
}
.carousel__dot.is-active { width: 26px; background: var(--blue-500); }

/* Product card */
.product-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
}
.product-card.is-hidden { display: none; }

/* Best-sellers grid (replaces the old carousel layout) */
.sellers-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px)  { .sellers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; } }
@media (min-width: 1024px) { .sellers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; } }
.sellers-grid .product-card { display: flex; flex-direction: column; }
.sellers-grid .product-card__body { flex: 1; }
.product-card.is-hidden { display: none; }
.catalog-error {
  grid-column: 1 / -1; text-align: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px 20px; color: var(--muted);
}
.catalog-error a { color: var(--blue-600); font-weight: 700; }

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  padding: 18px;
}
.product-card__media svg { width: 72%; height: auto; }

/* Photo variant: real product shots on a clean light ground */
.product-card__media--photo { background: var(--surface); padding: 16px; }
.product-card__media--photo img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; border-radius: var(--r-sm);
  mix-blend-mode: multiply;
  transition: transform .3s var(--ease);
}
.product-card:hover .product-card__media--photo img { transform: scale(1.05); }
.product-card__salt {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--white); color: var(--muted);
  font-size: .74rem; font-weight: 600;
  padding: 3px 9px; border-radius: 6px;
  box-shadow: var(--shadow-xs);
}

/* Pack-size selector */
.pack-row {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-soft);
}
.pack-btn {
  padding: 8px 4px; border-radius: 10px;
  border: 1.5px solid var(--line); background: var(--white);
  font-size: .82rem; font-weight: 600; color: var(--muted);
  white-space: nowrap;
  transition: border-color .15s var(--ease), color .15s var(--ease), background-color .15s var(--ease);
}
.pack-btn:hover { border-color: var(--blue-300); color: var(--blue-600); }
.pack-btn.is-active {
  border-color: var(--blue-500); background: var(--blue-50);
  color: var(--blue-600); font-weight: 700;
}

/* Price + ADD row */
.product-card__actions--buy {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 4px;
}
.product-card__actions--buy .price { font-size: 1.28rem; color: var(--blue-600); }
.product-card__tags { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 7px; }

.product-card__quick {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  padding: 11px; border-radius: var(--r-full);
  background: rgba(13, 27, 42, .88);
  color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  text-align: center; backdrop-filter: blur(6px);
  opacity: 0; transform: translateY(10px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.product-card:hover .product-card__quick,
.product-card:focus-within .product-card__quick { opacity: 1; transform: translateY(0); }

.product-card__body { display: flex; flex-direction: column; gap: 10px; padding: 18px; flex: 1; }
.product-card__cat {
  font-size: .88rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue-500);
}
.product-card__title { font-size: 1.15rem; }
.product-card__title a:hover { color: var(--blue-600); }
.product-card__desc { font-size: .95rem; color: var(--muted); }

.product-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-wrap: wrap; padding-top: 4px;
}

.price-row { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; margin-top: auto; }
.price { font-size: 1.62rem; color: var(--ink); line-height: 1; }
.price small { font-size: .88rem; font-weight: 500; color: var(--muted); font-family: var(--font-body); }
.price--was {
  font-size: 1.05rem; color: var(--muted-2); text-decoration: line-through; font-weight: 500;
}
.price-save {
  font-family: var(--font-numeric); font-weight: 700; font-size: .9rem;
  color: #067647; background: var(--mint-50);
  padding: 3px 9px; border-radius: var(--r-full);
}

.product-card__actions { display: grid; grid-template-columns: auto 1fr; gap: 10px; padding: 0 18px 18px; }

.qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--line); border-radius: var(--r-full);
  background: var(--white); overflow: hidden;
}
.qty__btn {
  width: 36px; height: 44px; display: grid; place-items: center;
  color: var(--ink-soft); font-size: 1.1rem;
  transition: background-color .15s var(--ease), color .15s var(--ease);
}
.qty__btn:hover:not(:disabled) { background: var(--blue-50); color: var(--blue-600); }
.qty__btn:disabled { opacity: .35; cursor: not-allowed; }
.qty__input {
  width: 34px; text-align: center; border: 0; background: none;
  font-family: var(--font-numeric); font-weight: 700; font-size: 1.05rem; color: var(--ink);
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty__input::-webkit-outer-spin-button,
.qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty__input:focus { outline: none; }

.sellers__footer {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin-top: 14px;
}
.sellers__note { font-size: .95rem; color: var(--muted); }

/* --------------------------------------- 11. Category grid --------- */
.cat-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
}
.cat-card {
  display: flex; align-items: center; gap: 15px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.cat-card:hover {
  transform: translateY(-4px); border-color: var(--blue-200); box-shadow: var(--shadow-sm);
}
.cat-card__icon {
  flex: none; width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600);
  transition: background-color .22s var(--ease), color .22s var(--ease);
}
.cat-card:hover .cat-card__icon { background: var(--blue-500); color: #fff; }
.cat-card__title { font-size: 1.1rem; }
.cat-card__count { font-family: var(--font-numeric); font-size: .9rem; color: var(--muted); font-weight: 500; }

/* --------------------------------------- 12. How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; counter-reset: step; }
.step {
  position: relative; padding: 26px 22px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-numeric); font-weight: 700; font-size: .9rem;
  color: var(--blue-500); background: var(--blue-50);
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 9px; }
.step p { font-size: .98rem; color: var(--muted); }

/* --------------------------------- 13. Reviews & testimonials ------ */
.reviews__badge {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  justify-content: center; text-align: left;
  max-width: 620px; margin: 0 auto 42px;
  padding: 22px 28px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--shadow-sm);
}
.reviews__score {
  font-family: var(--font-numeric); font-weight: 700;
  font-size: 3rem; line-height: 1; color: var(--ink);
}
.reviews__score sup { font-size: 1.1rem; color: var(--muted-2); font-weight: 500; }
.reviews__badge-meta { border-left: 1px solid var(--line); padding-left: 22px; }
.reviews__badge-meta .rating__stars { font-size: 1.3rem; }
.reviews__badge-meta p { font-size: .97rem; color: var(--muted); margin-top: 7px; }
.reviews__badge-meta b { font-family: var(--font-numeric); color: var(--ink); }

.reviews__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(320px, 1fr);
  gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px 4px 24px; scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.reviews__track > * { scroll-snap-align: start; }

.review-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.review-card__quote { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.7; flex: 1; }
.review-card__product {
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px 9px;
  font-size: .9rem; color: var(--muted);
  padding: 10px 13px; border-radius: var(--r-sm); background: var(--surface);
}
.review-card__product b { font-family: var(--font-display); color: var(--ink); font-weight: 600; }
.review-card__author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: #fff;
  background: linear-gradient(140deg, var(--blue-500), #48a4f7);
}
.review-card__author b { display: block; font-family: var(--font-display); font-size: 1.02rem; color: var(--ink); }
.review-card__author small { font-size: .88rem; color: var(--muted-2); }

/* ------------------------------ 14. Security / assurance band ------ */
.assurance {
  background: linear-gradient(140deg, #0b2647, var(--blue-700) 55%, #12539f);
  color: #fff;
}
.assurance h2 { color: #fff; }
.assurance .eyebrow { color: #7cc0ff; }
.assurance .lede { color: rgba(255, 255, 255, .78); }
.assurance__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 38px;
}
.assurance__item {
  padding: 24px 20px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--r-lg);
  transition: background-color .22s var(--ease), transform .22s var(--ease);
}
.assurance__item:hover { background: rgba(255, 255, 255, .12); transform: translateY(-4px); }
.assurance__item svg { color: #7cc0ff; margin-bottom: 14px; }
.assurance__item b { display: block; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 7px; }
.assurance__item p { font-size: .95rem; color: rgba(255, 255, 255, .72); }

/* -------------------------------------------- 15. Newsletter ------- */
.newsletter__inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  padding: clamp(28px, 4vw, 52px);
  background: linear-gradient(140deg, var(--blue-50), #fff5ef);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}
.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter__input {
  flex: 1; min-width: 210px;
  padding: 15px 20px; border-radius: var(--r-full);
  border: 1.5px solid var(--line); background: var(--white);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.newsletter__input:focus {
  outline: none; border-color: var(--blue-300);
  box-shadow: 0 0 0 4px rgba(143, 188, 251, .3);
}
.newsletter__note { font-size: .9rem; color: var(--muted); margin-top: 12px; }

/* ------------------------------------------------ 16. Footer ------- */
.site-footer { background: #08182b; color: rgba(255, 255, 255, .72); padding-top: 64px; }
.site-footer h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1.2fr 1fr 1.3fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer__brand .logo__text { color: #fff; }
.footer__brand p { font-size: .96rem; margin-top: 18px; max-width: 34ch; }
.footer__contact { display: grid; gap: 12px; margin-top: 22px; }
.footer__contact a { display: flex; align-items: center; gap: 11px; font-size: .96rem; }
.footer__contact a:hover { color: #fff; }
.footer__contact svg { color: var(--blue-300); flex: none; }

.footer__links li + li { margin-top: 11px; }
.footer__links a { font-size: .96rem; transition: color .16s var(--ease), padding-left .16s var(--ease); }
.footer__links a:hover { color: #fff; padding-left: 4px; }

.footer__col-toggle {
  display: none; width: 100%; align-items: center; justify-content: space-between;
  color: inherit;
}

.payments { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.pay-chip {
  display: grid; place-items: center;
  min-width: 56px; height: 36px; padding: 0 10px;
  background: rgba(255, 255, 255, .96); border-radius: 7px;
  font-family: var(--font-numeric); font-weight: 700; font-size: .9rem;
  letter-spacing: .02em; color: #0b2647;
}
.footer__ship { margin-top: 20px; font-size: .91rem; }

.disclaimer {
  padding-block: 28px; border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: .89rem; line-height: 1.75; color: rgba(255, 255, 255, .55);
}
.disclaimer b { color: rgba(255, 255, 255, .85); font-family: var(--font-display); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; padding-block: 24px; font-size: .91rem;
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a:hover { color: #fff; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .08); transition: background-color .18s var(--ease), transform .18s var(--ease);
}
.socials a:hover { background: var(--blue-500); color: #fff; transform: translateY(-2px); }

/* ---------------------------------------------- 17. Overlays ------- */
.modal {
  position: fixed; inset: 0; z-index: 120;
  display: grid; place-items: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8, 24, 43, .55); backdrop-filter: blur(5px); }
.modal__dialog {
  position: relative; z-index: 1;
  width: min(880px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--white); border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(.98);
  transition: transform .3s var(--ease);
}
.modal.is-open .modal__dialog { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-xs);
}
.modal__close:hover { background: var(--ink); color: #fff; }
.modal__grid { display: grid; grid-template-columns: .95fr 1.05fr; }
.modal__media {
  display: grid; place-items: center; padding: 34px;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border-radius: var(--r-xl) 0 0 var(--r-xl);
}
.modal__media svg { width: 70%; }
.modal__body { padding: 34px; display: flex; flex-direction: column; gap: 14px; }
.modal__body h3 { font-size: 1.5rem; }
.modal__specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 4px; }
.modal__spec { padding: 12px 14px; background: var(--surface); border-radius: var(--r-sm); }
.modal__spec small { display: block; font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); }
.modal__spec b { font-family: var(--font-display); font-size: 1.02rem; color: var(--ink); }
.modal__actions { display: grid; grid-template-columns: auto 1fr; gap: 12px; margin-top: 8px; }

.toast {
  position: fixed; z-index: 140; left: 50%; bottom: 28px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: var(--r-full);
  background: var(--ink); color: #fff; font-size: .98rem;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, 130%);
  transition: transform .35s var(--ease);
}
.toast.is-visible { transform: translate(-50%, 0); }
.toast__icon { color: #4ade80; display: grid; place-items: center; }

.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blue-500); color: #fff; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s, background-color .2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--blue-600); }

/* ------------------------------------------ Cookie consent banner -- */
.consent {
  position: fixed; left: 22px; bottom: 22px; z-index: 96;
  max-width: 380px;
  display: flex; flex-direction: column; gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 18px;
  animation: consent-in .3s var(--ease) both;
}
.consent__text { margin: 0; font-size: .88rem; line-height: 1.5; color: var(--ink-soft); }
.consent__text a { color: var(--blue-600); font-weight: 600; text-decoration: underline; }
.consent__actions { display: flex; justify-content: flex-end; gap: 8px; }
@keyframes consent-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
@media (max-width: 480px) {
  .consent { left: 10px; right: 10px; bottom: 10px; max-width: none; }
}

/* ------------------------- Floating contact buttons + chat widget -- */
.contact-fab {
  position: fixed; right: 22px; bottom: 84px; z-index: 80;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}

/* Collapsed stack: buttons hide behind the launcher until it is opened */
.contact-fab__stack { display: flex; flex-direction: column; gap: 10px; }
.contact-fab__stack .contact-fab__btn {
  transition: transform .28s var(--ease), opacity .22s var(--ease), visibility .28s;
}
.contact-fab:not(.is-open) .contact-fab__stack .contact-fab__btn {
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(16px) scale(.55);
  transition-delay: 0s;
}
/* Stagger: top button arrives last for a fan-out feel */
.contact-fab.is-open .contact-fab__stack .contact-fab__btn:nth-child(4) { transition-delay: .02s; }
.contact-fab.is-open .contact-fab__stack .contact-fab__btn:nth-child(3) { transition-delay: .08s; }
.contact-fab.is-open .contact-fab__stack .contact-fab__btn:nth-child(2) { transition-delay: .14s; }
.contact-fab.is-open .contact-fab__stack .contact-fab__btn:nth-child(1) { transition-delay: .20s; }

/* Launcher */
.contact-fab__launcher {
  position: relative;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blue-500); color: #fff;
  box-shadow: 0 10px 26px rgba(22, 104, 227, .38);
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.contact-fab__launcher:hover { transform: scale(1.07); }
.contact-fab.is-open .contact-fab__launcher { background: var(--blue-700); }
.contact-fab__launcher svg {
  grid-area: 1 / 1;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.contact-fab__icon-close { opacity: 0; transform: rotate(-90deg) scale(.6); }
.contact-fab.is-open .contact-fab__icon-open { opacity: 0; transform: rotate(90deg) scale(.6); }
.contact-fab.is-open .contact-fab__icon-close { opacity: 1; transform: rotate(0) scale(1); }

/* Greeting bubble shown briefly after the visitor scrolls */
.contact-fab__greet {
  position: absolute; right: calc(100% - 44px); bottom: 12px;
  transform: translateX(-22px);
  white-space: nowrap;
  background: var(--white); color: var(--ink);
  font-size: .88rem; font-weight: 600;
  padding: 9px 14px; border-radius: 14px 14px 4px 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  animation: fab-greet .3s var(--ease) both;
}
.contact-fab__greet[hidden] { display: none; }
@keyframes fab-greet {
  from { opacity: 0; transform: translateX(-12px) scale(.9); }
  to   { opacity: 1; transform: translateX(-22px) scale(1); }
}
.contact-fab__btn {
  position: relative;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; box-shadow: var(--shadow-md);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.contact-fab__btn:hover { transform: scale(1.08); box-shadow: var(--shadow-lg); }
.contact-fab__btn--ai   { background: var(--blue-500); }
.contact-fab__btn--call { background: var(--blue-700); }
.contact-fab__btn--mail { background: var(--ink); }
.contact-fab__btn--wa   { background: #25d366; }
.contact-fab__tip {
  position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%);
  background: var(--ink); color: #fff;
  font-size: .78rem; font-weight: 600; white-space: nowrap;
  padding: 5px 10px; border-radius: var(--r-xs);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s var(--ease);
}
.contact-fab__btn:hover .contact-fab__tip,
.contact-fab__btn:focus-visible .contact-fab__tip { opacity: 1; visibility: visible; }

.chat-widget {
  position: fixed; right: 22px; bottom: 84px; z-index: 95;
  width: min(360px, calc(100vw - 32px));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.chat-widget__head {
  display: flex; align-items: center; gap: 10px;
  background: var(--blue-700); color: #fff;
  padding: 12px 14px;
}
.chat-widget__avatar {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .16);
}
.chat-widget__title { flex: 1; line-height: 1.2; }
.chat-widget__title b { display: block; font-family: var(--font-display); font-size: 1rem; }
.chat-widget__title small { font-size: .78rem; opacity: .8; }
.chat-widget__close {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  transition: background-color .18s var(--ease);
}
.chat-widget__close:hover { background: rgba(255, 255, 255, .16); }

.chat-widget__body { padding: 18px 16px; max-height: min(60vh, 460px); overflow-y: auto; }
.chat-widget__form h4, .chat-widget__done h4 {
  font-size: 1.08rem; text-align: center; margin-bottom: 6px;
}
.chat-widget__form > p, .chat-widget__done p {
  font-size: .88rem; color: var(--muted); text-align: center; margin-bottom: 14px;
}
.chat-widget__form label {
  display: block; font-size: .85rem; font-weight: 600; color: var(--ink);
  margin: 10px 0 4px;
}
.chat-widget__form label em { color: var(--rose-500); font-style: normal; }
.chat-widget__form input[type="text"],
.chat-widget__form input[type="email"],
.chat-widget__form input[type="tel"] {
  width: 100%; padding: 10px 12px; font-size: .92rem;
  background: var(--white); color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--r-xs);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.chat-widget__form input:focus {
  outline: none; border-color: var(--blue-300);
  box-shadow: 0 0 0 3px rgba(143, 188, 251, .28);
}
.chat-widget__check {
  display: flex !important; align-items: center; gap: 8px;
  font-weight: 600; margin: 14px 0 !important;
}
.chat-widget__check input { accent-color: var(--blue-500); width: 15px; height: 15px; }
.chat-widget__check span { color: var(--muted-2); font-weight: 400; font-size: .8rem; font-style: italic; }

.chat-widget__done { text-align: center; }
.chat-widget__done-icon {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%; margin-bottom: 10px;
  background: var(--mint-50); color: var(--mint-500);
}

@media (max-width: 480px) {
  .contact-fab { right: 14px; bottom: 76px; gap: 8px; }
  .contact-fab__btn { width: 44px; height: 44px; }
  .contact-fab__launcher { width: 50px; height: 50px; }
  .contact-fab__tip { display: none; }
  .chat-widget { right: 14px; bottom: 76px; }
  .to-top { right: 14px; bottom: 18px; }
}

/* --------------------------------------- 18. Motion & reveal ------- */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* -------------------------------------------- 19. Responsive ------- */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; row-gap: 34px; }
  .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .assurance__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .header__main { grid-template-columns: auto auto; gap: 14px; }
  .header__search { grid-column: 1 / -1; order: 3; }
  .header__actions { margin-left: auto; }
  .nav-toggle { display: block; }
  .icon-btn__label { display: none; }
  .icon-btn--account { display: none; }

  .catnav { display: none; }
  .catnav.is-open {
    display: block; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--white); box-shadow: var(--shadow-md); border-top: 1px solid var(--line);
    max-height: 70vh; overflow-y: auto;
  }
  .catnav.is-open .catnav__list { flex-direction: column; align-items: stretch; padding-block: 8px; }
  .catnav.is-open .catnav__list > li > a { padding: 14px 4px; border-bottom: 1px solid var(--line-soft); }
  .catnav.is-open .catnav__meta { margin: 10px 0 16px; }

  .hero__grid { grid-template-columns: 1fr; gap: 54px; }
  .hero__visual { max-width: 520px; margin-inline: auto; }
  .trust-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .newsletter__inner { grid-template-columns: 1fr; gap: 26px; }
  .modal__grid { grid-template-columns: 1fr; }
  .modal__media { border-radius: var(--r-xl) var(--r-xl) 0 0; padding: 26px; }
  .modal__media svg { width: 46%; }
}

@media (max-width: 760px) {
  :root {
    --gutter: 12px;
    --section-y: clamp(20px, 4vw, 32px);
  }

  /* Headings & font sizes adjustment across all pages on mobile */
  h1 { font-size: 1.55rem !important; line-height: 1.22; }
  h2 { font-size: 1.3rem !important; line-height: 1.25; }
  h3 { font-size: 1.08rem !important; line-height: 1.3; }
  h4 { font-size: 0.95rem !important; }
  p, .lede { font-size: 0.92rem !important; line-height: 1.5; }
  .section-head { margin-bottom: 20px !important; }
  .section-head p { margin-top: 6px !important; }
  .section { padding-block: 24px !important; }

  /* Compact tag badges on mobile */
  .tag {
    font-size: .72rem !important;
    padding: 3px 9px !important;
    border-radius: var(--r-sm) !important;
    letter-spacing: .02em !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
  }
  .tag--best {
    background: var(--blue-50) !important;
    color: var(--blue-700) !important;
    border: 1px solid var(--blue-200) !important;
  }

  /* Announcement bar: full width, centred, free to grow to two lines */
  .announce__links { display: none; }
  .announce { font-size: .86rem; }
  .announce__item { justify-content: center; }

  /* Top offer bar: compact centred line */
  .announce-top { font-size: .78rem; }
  .announce-top__inner { row-gap: 2px; padding-block: 5px; min-height: 34px; }

  /* Compact sticky header so search stays visible without eating the viewport */
  .header__main { padding-block: 6px; gap: 8px; }
  .header__actions .icon-btn--support { display: none; }

  /* Sleek single-line mobile search bar */
  .search {
    flex-wrap: nowrap !important;
    padding: 3px 3px 3px 12px !important;
    border-radius: var(--r-full) !important;
    align-items: center;
  }
  .search__cats { display: none !important; }
  .search__field {
    flex: 1;
    min-width: 0;
    padding: 6px 4px !important;
    font-size: .92rem !important;
  }
  .search__submit {
    width: 36px !important;
    height: 36px !important;
    border-radius: 18px !important;
  }
  .search__suggest { padding-left: 2px; font-size: .8rem; margin-top: 4px; }

  /* Sleek horizontal scrolling category filter pills */
  .filters {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
    padding-bottom: 4px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter {
    flex: none !important;
    white-space: nowrap !important;
    padding: 6px 14px !important;
    font-size: .85rem !important;
  }

  /* Product cards compacting */
  .product-card__body { padding: 12px 14px !important; }
  .product-card__title { font-size: 0.98rem !important; }
  .product-card__desc { font-size: 0.84rem !important; margin-top: 3px !important; }
  .product-card__price { font-size: 1.1rem !important; }

  /* Mobile hero: doctor image replaces paragraph, tight spacing */
  .hero { padding-block: 14px 22px !important; }
  .hero__pill { font-size: .8rem; padding: 4px 10px 4px 4px; margin-bottom: 10px; }
  .hero__copy { display: none; }
  .hero__visual-mobile { display: block; margin-top: 4px; }
  .hero__visual-mobile img {
    width: 100%; height: auto; display: block;
    border-radius: var(--r-md);
  }
  .hero__visual { display: none; }
  .trust-strip { display: none; }

  /* Hero decoration stays inside the viewport */
  .hero__visual { padding-inline: 4px; }
  .hero__card { padding: 14px; }
  .hero__row { grid-template-columns: 36px 1fr auto; gap: 8px; padding: 8px; }

  /* Trust cards get their padding back for narrow columns */
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-item { padding: 12px 4px; gap: 10px; border-right: 0; }
  .trust-item:not(:last-child) { border-bottom: 1px solid var(--line-soft); }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .trust-item__icon { width: 36px; height: 36px; }

  /* Keep the decorative hero blob from inflating the scroll box */
  .hero__blob { inset: 14% 0 -4% 6%; }
  .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .assurance__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .carousel__track { grid-auto-columns: minmax(230px, 82%); }
  .reviews__track { grid-auto-columns: minmax(250px, 90%); }
  .reviews__badge { text-align: center; justify-content: center; padding: 16px !important; }
  .reviews__badge-meta { border-left: 0; padding-left: 0; }
  .sellers__controls { display: none; }
  .hero__stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .stat__value { font-size: .8rem; }
  .stat__label { font-size: .7rem; }
  .hero__float {
    max-width: calc(100% - 24px); padding: 9px 12px;
    animation: none; /* no drift on small screens */
  }
  .hero__float--a { left: 4px; top: -16px; }
  .hero__float--b { right: 4px; bottom: -16px; }
  .hero__float--badge { right: 2px; top: -12px; }

  .footer__grid { grid-template-columns: 1fr; gap: 0; }
  .footer__col { border-bottom: 1px solid rgba(255, 255, 255, .1); padding-block: 12px; }
  .footer__col--brand { border-bottom: 0; padding-bottom: 20px; }
  .footer__col-toggle { display: flex; }
  .footer__col-toggle h4 { margin-bottom: 0; }
  .footer__col-toggle svg { transition: transform .2s var(--ease); }
  .footer__col-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
  .footer__col--collapsible .footer__links,
  .footer__col--collapsible .payments-wrap { display: none; padding-top: 12px; }
  .footer__col--collapsible.is-open .footer__links,
  .footer__col--collapsible.is-open .payments-wrap { display: block; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .logo__mark { width: 36px; height: 36px; border-radius: 10px; }
  .logo__text { font-size: 1.25rem; }
  .logo__tagline { display: none; }
  .cart-btn { padding: 8px 12px; }
  .cart-btn__count { top: -4px; right: -2px; }
  .search__suggest a:nth-of-type(3) { display: none; }
  .reviews__score { font-size: 2.4rem; }
  .reviews__badge { padding: 16px; gap: 12px; }
}

@media (max-width: 420px) {
  .cat-grid { grid-template-columns: 1fr; }
  /* CTAs stay side by side like the reference — two equal buttons */
  .hero__actions { flex-wrap: nowrap; gap: 10px; }
  .hero__actions .btn { flex: 1; min-width: 0; padding-inline: 12px; font-size: .88rem; }
  .product-card__actions { grid-template-columns: 1fr; }
  .qty { justify-self: start; }
  .carousel__track { grid-auto-columns: minmax(230px, 88%); }
  .reviews__track { grid-auto-columns: minmax(230px, 94%); }
  .hero__float small { font-size: .88rem; }
  .footer__legal { gap: 14px; }
}

/* Hide Netlify injected drawer badge / footer widget */
#netlify-drawer,
[data-netlify-badge],
.netlify-badge,
.netlify-badge-embed,
iframe[src*="netlify"],
iframe#netlify-identity-widget,
div[class*="netlify-badge"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Callback request form (chat widget) */
.chat-widget__form label span { color: var(--muted-2); font-weight: 400; }
.chat-widget__form textarea {
  width: 100%; min-height: 72px; padding: 10px 12px; font: inherit; font-size: .92rem;
  background: var(--white); color: var(--ink); resize: vertical;
  border: 1.5px solid var(--line); border-radius: var(--r-xs);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.chat-widget__form textarea:focus {
  outline: none; border-color: var(--blue-300);
  box-shadow: 0 0 0 3px rgba(143, 188, 251, .28);
}
.chat-widget__note { font-size: .78rem; color: var(--muted); text-align: center; margin: 12px 0; }
.chat-widget__note a { color: var(--blue-600); font-weight: 600; }
.chat-widget__error { font-size: .85rem; font-weight: 600; color: #b42318; text-align: center; margin-top: 10px; }
.chat-widget__error a { color: inherit; text-decoration: underline; }

/* ------------------------------------------------------ Side cart ---- */
.side-cart { position: fixed; inset: 0; z-index: 120; }
.side-cart[hidden] { display: none; }
.side-cart__backdrop {
  position: absolute; inset: 0; background: rgba(8, 24, 43, .45);
  opacity: 0; transition: opacity .3s var(--ease);
}
.side-cart__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(400px, 100%);
  display: flex; flex-direction: column;
  background: var(--white); box-shadow: var(--shadow-lg); outline: none;
  transform: translateX(100%); transition: transform .3s var(--ease);
}
.side-cart.is-open .side-cart__backdrop { opacity: 1; }
.side-cart.is-open .side-cart__panel { transform: none; }
.side-cart__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 20px 16px; border-bottom: 1px solid var(--line);
}
.side-cart__head h2 { font-size: 1.25rem; }
.side-cart__close {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 4px; font-weight: 600; color: var(--ink);
}
.side-cart__close:hover { color: var(--blue-600); }
.side-cart__items { flex: 1; overflow-y: auto; }
.side-cart__item {
  display: grid; grid-template-columns: 64px minmax(0, 1fr) 28px; gap: 14px; align-items: start;
  padding: 16px 20px; border-bottom: 1px solid var(--line-soft);
}
.side-cart__media {
  width: 64px; height: 64px; border-radius: var(--r-xs); overflow: hidden;
  display: grid; place-items: center; background: var(--line-soft);
}
.side-cart__media img { width: 100%; height: 100%; object-fit: contain; }
.side-cart__info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.side-cart__name { font-weight: 600; color: var(--ink); line-height: 1.3; }
.side-cart__name:hover { color: var(--blue-600); }
.side-cart__pack { font-size: .82rem; color: var(--muted); }
.side-cart__price { font-size: .9rem; color: var(--muted); }
.side-cart__price b { color: var(--blue-600); }
.side-cart__remove {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; color: var(--muted);
}
.side-cart__remove:hover { background: var(--line-soft); color: var(--rose-500); }
.side-cart__empty {
  display: grid; justify-items: center; gap: 14px;
  padding: 48px 20px; text-align: center; color: var(--muted);
}
.side-cart__foot { display: grid; gap: 10px; padding: 16px 20px 20px; border-top: 1px solid var(--line); }
.side-cart__foot[hidden] { display: none; }
.side-cart__subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 4px; font-size: 1.1rem; font-weight: 700; color: var(--ink);
}
.side-cart__btn { text-transform: uppercase; letter-spacing: .04em; }
@media (prefers-reduced-motion: reduce) {
  .side-cart__panel, .side-cart__backdrop { transition: none; }
}

/* ------------------------------------ "We Are Here!" support launcher -- */
.contact-fab__launcher {
  width: 60px; height: 60px; background: #1fb866;
  box-shadow: 0 10px 26px rgba(18, 140, 80, .38);
}
.contact-fab.is-open .contact-fab__launcher { background: #13894a; }
.contact-fab__badge {
  position: absolute; top: -3px; right: -3px;
  min-width: 21px; height: 21px; padding: 0 5px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--rose-500); color: #fff; border: 2px solid #fff;
  font-size: .72rem; font-weight: 700; line-height: 1;
}
.contact-fab.is-seen .contact-fab__badge { display: none; }
.contact-fab__here {
  position: absolute; right: -25px; bottom: 29px; width: 110px;
  pointer-events: none; transition: opacity .2s var(--ease);
}
.contact-fab.is-open .contact-fab__here { opacity: 0; }
.contact-fab__arc { width: 110px; height: auto; overflow: visible; }
.contact-fab__arc text {
  font-family: var(--font-display); font-size: 15px; font-weight: 800; letter-spacing: .3px;
  fill: #fff; stroke: #13894a; stroke-width: 4px; stroke-linejoin: round; paint-order: stroke;
}
.contact-fab__wave {
  position: absolute; left: -5px; bottom: -23px; font-size: 24px; line-height: 1;
  transform-origin: 70% 80%; animation: fab-wave 2.4s ease-in-out infinite;
}
.contact-fab.is-seen .contact-fab__wave { animation: none; }
@keyframes fab-wave {
  0%, 60%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(16deg); }
  20%, 40% { transform: rotate(-8deg); }
  50% { transform: rotate(10deg); }
}
@media (prefers-reduced-motion: reduce) { .contact-fab__wave { animation: none; } }

/* ----------------------------------------------- Footer newsletter ---- */
.footer-news { margin-bottom: 44px; }
.footer-news__inner {
  display: grid; grid-template-columns: auto minmax(0, 540px); align-items: center;
  gap: 10px 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-news__title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  letter-spacing: .02em; text-transform: uppercase; color: #fff;
}
.footer-news__form { display: flex; gap: 12px; }
.footer-news__input {
  flex: 1; min-width: 0; height: 48px; padding: 0 16px;
  background: #fff; color: var(--ink); font: inherit;
  border: 1.5px solid rgba(255, 255, 255, .2); border-radius: var(--r-xs);
}
.footer-news__input:focus { outline: none; border-color: var(--blue-300); box-shadow: 0 0 0 3px rgba(143, 188, 251, .35); }
.footer-news__btn {
  height: 48px; padding: 0 24px; border-radius: var(--r-xs);
  background: var(--teal-600); color: #fff; font-weight: 600;
  transition: background-color .18s var(--ease);
}
.footer-news__btn:hover { background: var(--blue-600); }
.footer-news__btn:disabled { opacity: .7; }
.footer-news__note { grid-column: 2; font-size: .8rem; color: rgba(255, 255, 255, .55); }
.footer-news__note a { color: rgba(255, 255, 255, .85); text-decoration: underline; }
.footer-news__msg { grid-column: 2; font-size: .88rem; font-weight: 600; color: #6ee7a8; }
.footer-news__msg.is-error { color: #fda4af; }
@media (max-width: 760px) {
  .footer-news__inner { grid-template-columns: 1fr; }
  .footer-news__note, .footer-news__msg { grid-column: 1; }
}
@media (max-width: 420px) {
  .footer-news__form { flex-direction: column; }
  .footer-news__input { flex: none; width: 100%; }
}
