:root {
  --ink: #0c1c2e;
  --ink-2: #1a2f47;
  --muted: #6b7a90;
  --line: #e6edf3;
  --line-soft: #f1f5f9;
  --bg: #ffffff;
  --bg-alt: #f6f9fc;
  --bg-blue-50: #eff6fb;
  --bg-blue-100: #dbeaf3;
  --bg-blue-200: #c2dbeb;
  --blue: #2b7dbd;
  --blue-2: #1f5f96;
  --blue-3: #143f63;
  --blue-soft: #e8f1f8;
  --blue-tint: #d6e7f3;
  --gold: #f5b342;

  --shadow-sm: 0 1px 2px rgba(20,63,99,.04);
  --shadow-md: 0 8px 24px -8px rgba(20,63,99,.10);
  --shadow-lg: 0 24px 60px -20px rgba(20,63,99,.18);
  --radius: 10px;
  --radius-lg: 18px;
  --maxw: 1280px;
  --pad: clamp(18px, 3vw, 40px);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  font-size: 14.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ===== View toggle ===== */
.view-toggle {
  position: fixed; top: 50%; right: 0;
  transform: translateY(-50%);
  z-index: 60;
  background: #fff;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.view-toggle button {
  padding: 14px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: background .15s, color .15s;
}
.view-toggle button.active { background: var(--blue); color: #fff; }
.view-toggle button:not(.active):hover { background: var(--bg-alt); color: var(--ink); }

/* ===== Promo strip ===== */
.promo-strip {
  background: var(--blue-3);
  color: #fff;
  font-size: 12.5px;
  height: 36px;
  display: flex; align-items: center;
  overflow: hidden;
}
.promo-track {
  display: flex; gap: 50px; white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding-left: 50px;
}
.promo-track > span { display: inline-flex; align-items: center; gap: 10px; opacity: 0.95; }
.promo-track .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Desktop Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 6px 22px -10px rgba(20,63,99,0.18); border-bottom-color: transparent; }
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--blue-3);
}
.brand img { color: var(--blue-3); }

.nav-row {
  display: flex; gap: 4px; justify-content: center;
}
.nav-row a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 8px 16px;
  border-radius: 100px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-row a:hover {
  color: var(--blue-2);
  background: var(--bg-blue-50);
}
.nav-row a.active {
  color: var(--blue-2);
  background: var(--bg-blue-50);
  font-weight: 600;
}

.actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  width: 42px; height: 42px;
  display: inline-grid; place-items: center;
  border-radius: 12px;
  position: relative;
  color: var(--ink);
  transition: background .15s;
}
.icon-btn:hover { background: var(--bg-alt); }
.icon-btn .badge {
  position: absolute; top: 5px; right: 5px;
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px; padding: 0 5px;
  display: grid; place-items: center;
}
.location-pill {
  display: inline-flex; align-items: center;
  gap: 6px; padding: 8px 14px;
  background: var(--bg-blue-50);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--blue-2);
  margin-right: 6px;
}
.location-pill:hover { background: var(--blue-soft); }
.location-pill.open { background: var(--blue-soft); color: var(--blue-2); }

.loc-wrap { position: relative; }
.loc-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 40px -12px rgba(20,63,99,0.22), 0 4px 12px -6px rgba(20,63,99,0.10);
  padding: 8px;
  z-index: 60;
  animation: locFade .14s ease-out;
}
@keyframes locFade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.loc-menu-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 10px 6px;
}
.loc-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: background .12s, color .12s;
}
.loc-item span { flex: 1; }
.loc-item:hover { background: var(--bg-blue-50); color: var(--blue-2); }
.loc-item.selected { color: var(--blue-2); background: var(--bg-blue-50); }
.loc-item.selected svg:last-child { color: var(--blue); }

.loc-menu-locate {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  margin: 4px 0;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-blue-50);
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: background .12s;
}
.loc-menu-locate:hover:not(:disabled) { background: #d6e8f5; }
.loc-menu-locate:disabled { opacity: 0.7; cursor: progress; }
.loc-menu-sep { height: 1px; background: var(--line); margin: 6px 4px; }
.loc-spinner-sm {
  width: 14px; height: 14px;
  border: 2px solid rgba(43,125,189,0.3);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: locSpin 0.7s linear infinite;
}

/* ===== Hero (desktop) ===== */
.hero {
  position: relative;
  background: #0c1c2e;
  min-height: clamp(540px, 78vh, 700px);
  background: var(--blue-3);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video, .hero-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(110deg, rgba(20,63,99,0.82) 0%, rgba(20,63,99,0.55) 45%, rgba(20,63,99,0.25) 75%, rgba(20,63,99,0.5) 100%),
    linear-gradient(180deg, transparent 55%, rgba(12,28,46,0.65));
  pointer-events: none;
}
.hero-fish {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: clamp(420px, 55vw, 820px);
  height: auto;
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4));
  animation: floatFish 6s ease-in-out infinite;
}
@keyframes floatFish {
  0%, 100% { transform: translateY(-50%) rotate(-2deg); }
  50% { transform: translateY(calc(-50% - 14px)) rotate(2deg); }
}
@media (max-width: 800px) {
  .hero-fish { right: -10%; width: 90%; opacity: 0.55; }
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(70px, 10vh, 120px) var(--pad);
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-content { max-width: 600px; flex: 1 1 auto; }

.hero-welcome {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  width: clamp(260px, 24vw, 320px);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  color: #fff;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.45);
}
.hero-welcome-pct {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.hero-welcome-pct b {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffd28a, #f5a623);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-welcome-pct b sup {
  font-size: 28px;
  vertical-align: super;
}
.hero-welcome-pct span {
  font-family: 'Brush Script MT', cursive;
  font-style: italic;
  font-size: 28px;
  color: #fff;
  font-weight: 500;
}
.hero-welcome-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.hero-welcome-body small {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}
.hero-welcome-body strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}
.hero-welcome-body .btn { margin-top: 4px; }

@media (max-width: 900px) {
  .hero-welcome { display: none; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1;
  white-space: nowrap;
  width: auto;
  max-width: 100%;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6ee2a8;
  box-shadow: 0 0 0 0 rgba(110,226,168,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(110,226,168,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(110,226,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(110,226,168,0); }
}
.hero-title {
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(180deg, #9fd6f5, #5fb3e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(14px, 1.2vw, 17px);
  margin: 0 0 32px;
  opacity: 0.9;
  max-width: 50ch;
  line-height: 1.55;
  font-weight: 400;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  transition: all .18s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-2); transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(43,125,189,0.5); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.35); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-light { background: #fff; color: var(--blue); }
.btn-light:hover { background: var(--bg-blue-50); }
.btn-sm { padding: 9px 16px; font-size: 12.5px; }

.hero-trust {
  display: flex; gap: 22px; margin-top: 32px; flex-wrap: wrap; align-items: center;
}
.hero-trust .pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
}
.hero-trust .pill .ic { color: var(--gold); }

/* Free-shipping bar */
.shipping-bar {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  z-index: 4;
  background: rgba(255,255,255,0.95);
  border-radius: 100px;
  padding: 8px 16px 8px 14px;
  display: flex; align-items: center; gap: 12px;
  font-size: 12px;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  max-width: calc(100% - 32px);
}
.shipping-bar > span { white-space: nowrap; }
.shipping-bar b { color: var(--blue); }
.shipping-bar .track { width: 110px; height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; }
.shipping-bar .fill { height: 100%; background: var(--blue); border-radius: 2px; transition: width .4s; }

/* Video controls */
.video-ctrl {
  position: absolute; bottom: 24px; left: var(--pad);
  z-index: 5; display: flex; gap: 6px;
}
.video-ctrl button {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  backdrop-filter: blur(10px);
}
.video-ctrl button:hover { background: rgba(255,255,255,0.25); }

/* ===== Sections ===== */
section { position: relative; }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--pad);
}
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.section-head > div { min-width: 0; flex: 1 1 320px; }
.section-head .link-arrow { white-space: nowrap; flex-shrink: 0; }
.section-head h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-head p { color: var(--muted); font-size: 15px; margin: 8px 0 0; max-width: 50ch; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--blue);
  transition: gap .2s;
}
.link-arrow:hover { gap: 10px; }

/* ===== Categories — clean blue tiles ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
.cat-cell {
  background: var(--bg-blue-50);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.cat-cell:hover { transform: translateY(-3px); background: var(--blue-soft); box-shadow: var(--shadow-md); }
.cat-cell .img-wrap {
  width: 96px; height: 96px;
  margin: 0 auto 14px;
  background: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--blue);
  overflow: hidden;
  box-shadow: 0 8px 20px -10px rgba(20,63,99,0.25);
}
.cat-cell h3 { font-size: 13px; font-weight: 600; margin: 0 0 4px; line-height: 1.3; color: var(--ink); }
.cat-cell .count { font-size: 11px; color: var(--muted); }

/* ===== Trust strip ===== */
.trust-ribbon {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.trust-ribbon-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .trust-ribbon-inner { grid-template-columns: repeat(2, 1fr); } }
.trust-item {
  display: flex; align-items: center; gap: 14px;
}
.trust-item .ic-wrap {
  width: 44px; height: 44px;
  background: #fff;
  color: var(--blue);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.trust-item b { font-size: 14px; font-weight: 600; display: block; color: var(--ink); }
.trust-item span { font-size: 12.5px; color: var(--muted); display: block; }

/* ===== Product grid (mobile-style cards) ===== */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1000px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
.prod-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  transition: transform .2s;
  display: flex; flex-direction: column;
  padding: 10px;
}
.prod-card:hover { transform: translateY(-3px); }
.prod-img {
  aspect-ratio: 1;
  background: var(--bg-blue-50);
  border-radius: calc(var(--radius-lg) - 4px);
  position: relative;
  overflow: hidden;
}
.prod-img > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.prod-img::after {
  content: 'product';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 10.5px;
  color: var(--blue);
  letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.45;
}
.prod-img:has(img)::after { display: none; }
.prod-tag, .prod-add-btn { z-index: 2; }

.prod-stock {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 10px;
  border-radius: 100px;
  line-height: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.prod-stock.low {
  background: #d9362c;
  color: #fff;
  box-shadow: 0 0 0 0 rgba(217, 54, 44, 0.6);
  animation: stockPulse 1.6s ease-out infinite;
}
.prod-stock.med {
  background: rgba(255, 255, 255, 0.92);
  color: #b3520e;
}
@keyframes stockPulse {
  0%   { box-shadow: 0 0 0 0 rgba(217, 54, 44, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(217, 54, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 54, 44, 0); }
}
.m-prod-img-wrap .prod-stock {
  top: 8px; right: 8px;
  font-size: 10px;
  padding: 4px 8px;
}
.prod-card:nth-child(2n) .prod-img { background: var(--bg-blue-100); }
.prod-card:nth-child(3n) .prod-img { background: var(--bg-blue-50); }
.prod-card:nth-child(4n) .prod-img { background: var(--blue-soft); }

.prod-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  z-index: 2;
  line-height: 1.2;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.prod-add-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  z-index: 2;
  transition: background .15s, transform .15s;
}
.prod-add-btn:hover { background: var(--blue-2); transform: scale(1.08); }
.prod-add-btn.added { background: #2f8f4a; }

.prod-info { padding: 12px 6px 6px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.prod-card { height: 100%; }
.prod-cat { font-size: 11px; color: var(--muted); }
.prod-name { font-size: 14.5px; font-weight: 600; line-height: 1.3; margin: 0; color: var(--ink); }
.prod-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 8px; flex-wrap: wrap; }
.prod-price { font-size: 16px; font-weight: 700; color: var(--ink); }
.prod-was { font-size: 12px; color: var(--muted); text-decoration: line-through; }

.prod-deal-row {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.prod-deal-pct {
  display: inline-flex; align-items: center;
  background: #b3261e;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.4;
}
.prod-deal-label {
  font-size: 12px;
  font-weight: 700;
  color: #b3261e;
}

.prod-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  margin-top: 12px;
  padding: 10px 14px;
  background: #fff;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  border-radius: 100px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .12s;
  align-self: stretch;
}
.prod-cta:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }
.prod-cta.added {
  background: #2f8f4a; color: #fff; border-color: #2f8f4a;
}

/* Tabs */
.tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.tabs button {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 100px;
  color: var(--muted);
  transition: all .15s;
  white-space: nowrap;
}
.tabs button:hover { color: var(--blue); }
.tabs button.active { background: var(--blue); color: #fff; }

/* Sub-nav category strip */
.subnav {
  position: sticky;
  top: 76px;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.subnav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav-inner a {
  white-space: nowrap;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 100px;
  transition: background .15s, color .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.subnav-inner a:hover { background: var(--bg-blue-50); color: var(--blue); }
.subnav-inner a .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); opacity: 0.6; }

/* ===== Banner duo (welcome + asian) ===== */
.banner-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 800px) { .banner-duo { grid-template-columns: 1fr; } }
.banner-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 2/1;
  background: var(--bg-blue-50);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  display: block;
}
.banner-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.banner-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Mobile banner */
.m-banner-stack {
  padding: 0 20px;
  display: flex; flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.m-banner-stack .banner-card { aspect-ratio: 2/1; border-radius: 16px; }

/* ===== Editorial split ===== */
.split {
  background: var(--bg-blue-50);
}
.split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .split .container { grid-template-columns: 1fr; } }
.split h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.05; margin: 16px 0 20px; max-width: 14ch; }
.split p { color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 50ch; }
.split-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--blue-tint);
}
.stat b { display: block; font-size: 36px; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.stat span { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.split-img {
  aspect-ratio: 4/5;
  background: var(--blue-soft);
  border-radius: 24px;
  display: grid; place-items: center;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ===== Reviews ===== */
.reviews {
  background: var(--bg-alt);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-stars { display: flex; gap: 2px; color: var(--gold); }
.review-text { font-size: 14.5px; line-height: 1.6; margin: 0; flex: 1; color: var(--ink-2); }
.review-meta { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: grid; place-items: center; font-weight: 600; font-size: 13px;
}
.review-name { font-size: 13.5px; font-weight: 600; }
.review-area { font-size: 11.5px; color: var(--muted); }
.review-headline { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.review-rating-big { display: flex; align-items: baseline; gap: 14px; }
.review-rating-big b { font-size: 48px; font-weight: 700; line-height: 1; color: var(--ink); }
.review-rating-big .rstars { color: var(--gold); display: flex; gap: 2px; }
.review-rating-big small { font-size: 12px; color: var(--muted); display: block; margin-top: 4px; }

/* ===== Newsletter ===== */
.newsletter {
  background:
    linear-gradient(135deg, var(--blue-3) 0%, var(--blue-2) 60%, var(--blue) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.newsletter::after {
  content: ''; position: absolute;
  left: -60px; bottom: -60px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.newsletter .container { position: relative; text-align: center; }
.newsletter h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin: 0 auto 14px;
  max-width: 18ch;
  letter-spacing: -0.02em;
}
.newsletter p { max-width: 50ch; margin: 0 auto 28px; opacity: 0.9; font-size: 14.5px; }
.newsletter-form {
  display: flex; gap: 6px;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 5px;
  backdrop-filter: blur(10px);
}
.newsletter-form input {
  flex: 1; background: transparent; border: 0; color: #fff;
  padding: 12px 16px; font-size: 14px; outline: none; font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.7); }
.newsletter-form .btn { background: #fff; color: var(--blue); }
.newsletter-form .btn:hover { background: var(--bg-blue-50); }
.newsletter-perks { display: flex; gap: 22px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.newsletter-perks span { font-size: 12px; opacity: 0.8; display: inline-flex; align-items: center; gap: 6px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: #fff;
}
.site-footer .container { padding-top: 64px; padding-bottom: 30px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-brand { display: inline-flex; align-items: center; }
.foot-blurb { opacity: 0.7; font-size: 13.5px; line-height: 1.6; max-width: 32ch; }
.foot-social { display: flex; gap: 8px; margin-top: 18px; }
.foot-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  font-size: 12px;
  transition: all .15s;
}
.foot-social a:hover { background: var(--blue); border-color: var(--blue); }
.foot-col h5 { font-size: 13px; font-weight: 600; margin: 0 0 14px; color: #fff; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.foot-col a { opacity: 0.65; font-size: 13px; transition: color .15s, opacity .15s; }
.foot-col a:hover { color: #fff; opacity: 1; }
.foot-bottom {
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px; opacity: 0.55;
}

/* ===== Cart drawer ===== */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(12,28,46,0.5);
  z-index: 90;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: #fff; z-index: 91;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.7,.05,.3,1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 20px 22px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 { font-size: 18px; font-weight: 700; margin: 0; }
.drawer-body { flex: 1; overflow-y: auto; padding: 14px 22px; }
.drawer-foot { padding: 22px; border-top: 1px solid var(--line); background: #fff; }
.drawer-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.drawer-row:last-child { border-bottom: 0; }
.drawer-thumb { width: 64px; height: 64px; background: var(--bg-blue-50); border-radius: 12px; flex-shrink: 0; }
.drawer-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.drawer-info h5 { margin: 0; font-size: 14px; font-weight: 600; }
.drawer-info small { font-size: 11px; color: var(--muted); }
.qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 100px; padding: 2px;
  margin-top: 6px; align-self: flex-start;
}
.qty button { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; }
.qty button:hover { background: var(--bg-alt); }
.qty span { padding: 0 10px; font-size: 12px; min-width: 28px; text-align: center; font-weight: 600; }
.drawer-price { font-weight: 700; font-size: 15px; color: var(--ink); }
.drawer-empty { text-align: center; padding: 60px 20px; }
.drawer-empty h4 { font-size: 16px; font-weight: 600; margin: 12px 0 6px; }
.drawer-empty p { color: var(--muted); font-size: 13px; }
.drawer-totals { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.drawer-totals .row { display: flex; justify-content: space-between; font-size: 13.5px; }
.drawer-totals .row.total { font-size: 17px; font-weight: 700; padding-top: 8px; border-top: 1px solid var(--line); margin-top: 4px; color: var(--blue); }

/* ===== Search overlay ===== */
.search-overlay {
  position: fixed; inset: 0;
  z-index: 95;
  background: rgba(12,28,46,0.85);
  backdrop-filter: blur(20px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
  padding: 80px 24px 40px;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-overlay-inner { max-width: 720px; width: 100%; margin: 0 auto; }
.search-overlay input {
  width: 100%;
  background: transparent; border: 0;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 16px 0;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  outline: none;
  font-family: inherit;
}
.search-overlay input::placeholder { color: rgba(255,255,255,0.4); }
.search-suggestions { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.search-suggestions a {
  color: #fff;
  padding: 12px 0;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  transition: padding .2s;
}
.search-suggestions a:hover { padding-left: 12px; color: #9fd6f5; }
.search-suggestions small { font-size: 11px; color: rgba(255,255,255,0.55); }
.search-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}
.search-close:hover { background: rgba(255,255,255,0.12); }

/* ===== FAB ===== */
.fab {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 80;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6);
  transition: transform .2s;
}
.fab:hover { transform: scale(1.06); }

/* Toast */
.toast {
  position: fixed; bottom: 90px; left: 50%;
  transform: translate(-50%, 200px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  transition: transform .35s cubic-bezier(.7,.05,.3,1);
}
.toast.show { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.toast .ic { color: #6ee2a8; }

/* ===================== MOBILE VIEW ===================== */
.mobile-frame {
  max-width: 430px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  position: relative;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.mobile-only { display: none; }
@media (max-width: 900px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block; }
  body { background: var(--bg-alt); }
}

.m-header {
  position: sticky; top: 0; z-index: 30;
  background: #fff;
  padding: 16px 20px 14px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line-soft);
}
.m-greeting small { font-size: 11px; color: var(--muted); display: block; }
.m-greeting b { font-size: 15px; font-weight: 700; }
.m-header-actions { display: flex; gap: 8px; }
.m-icon-btn {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: grid; place-items: center;
  color: var(--ink);
  position: relative;
}
.m-icon-btn .badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--blue); color: #fff;
  font-size: 9px; font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 8px; padding: 0 4px;
  display: grid; place-items: center;
}

.m-search-bar {
  margin: 14px 20px;
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
}
.m-search-bar input {
  flex: 1; border: 0; background: transparent; outline: none; font-size: 14px; font-family: inherit;
}

.m-hero {
  margin: 0 20px;
  border-radius: 22px;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--blue-3);
  color: #fff;
  isolation: isolate;
}
.m-hero .m-hero-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.m-hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.m-hero .scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(20,63,99,0.3) 0%, rgba(20,63,99,0.45) 60%, rgba(12,28,46,0.85));
}
.m-hero .body {
  position: absolute; inset: auto 0 0 0;
  z-index: 3;
  padding: 24px;
}
.m-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
  line-height: 1;
  white-space: nowrap;
  width: auto;
}
.m-hero .eyebrow .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6ee2a8;
  animation: pulse 2s infinite;
}
.m-hero h1 {
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.m-hero h1 em {
  font-style: normal;
  background: linear-gradient(180deg, #9fd6f5, #5fb3e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.m-hero p { margin: 0 0 18px; opacity: 0.85; font-size: 13px; }
.m-hero .cta-row { display: flex; gap: 8px; }
.m-hero .btn { padding: 11px 18px; font-size: 12.5px; }

.m-section {
  padding: 28px 20px 8px;
}
.m-section-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.m-section-head h2 { font-size: 17px; font-weight: 700; margin: 0; }
.m-section-head a { font-size: 12px; color: var(--blue); font-weight: 600; }

/* Side category tabs (like reference 2) */
.m-cat-layout {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 0;
  margin: 0 20px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  overflow: hidden;
}
.m-cat-tabs {
  display: flex; flex-direction: column;
  background: var(--bg-blue-50);
  border-right: 1px solid var(--line-soft);
}
.m-cat-tabs button {
  padding: 14px 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 3px solid transparent;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.m-cat-tabs button.active {
  color: var(--blue);
  font-weight: 700;
  border-right-color: var(--blue);
  background: #fff;
}
.m-cat-content {
  padding: 14px 14px 16px;
  min-width: 0;
}
.m-cat-pills {
  display: flex; gap: 6px; overflow-x: auto;
  padding-bottom: 12px; margin-bottom: 12px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.m-cat-pills::-webkit-scrollbar { display: none; }
.m-cat-pills button {
  white-space: nowrap;
  padding: 5px 11px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-blue-50);
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
}
.m-cat-pills button.active { background: var(--ink); color: #fff; }

.m-cat-content .m-prod-grid {
  gap: 10px;
}
.m-cat-content .m-prod-card {
  min-width: 0;
}
.m-cat-content .price-pill {
  padding: 7px 10px;
  font-size: 11.5px;
}
.m-cat-content .price-pill small {
  font-size: 9px;
}
.m-cat-content .m-prod-card h5 {
  font-size: 12.5px;
}

.m-prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.m-prod-card {
  background: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
}
.m-prod-info { padding: 10px 4px 0; display: flex; flex-direction: column; flex: 1; }
.m-prod-info .cat { font-size: 10.5px; color: var(--muted); margin-bottom: 2px; }
.m-prod-info h5 { font-size: 13.5px; font-weight: 600; margin: 0 0 6px; line-height: 1.3; }
.m-prod-info .price-pill {
  margin-top: auto;
}
.m-prod-img-wrap {
  aspect-ratio: 1;
  background: var(--bg-blue-50);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.m-prod-img-wrap > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.m-prod-img-wrap:has(img)::after { display: none; }
.m-prod-tag, .m-prod-add { z-index: 2; }
.m-prod-card:nth-child(2n) .m-prod-img-wrap { background: var(--bg-blue-100); }
.m-prod-card:nth-child(3n) .m-prod-img-wrap { background: var(--blue-soft); }
.m-prod-img-wrap::after {
  content: 'product';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 9px;
  color: var(--blue);
  letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.4;
}
.m-prod-tag {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--blue-tint);
  color: var(--blue-3);
  font-size: 9.5px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 100px;
  z-index: 2;
  white-space: nowrap;
  line-height: 1.2;
}
.m-prod-add {
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  z-index: 2;
}
.m-prod-add:hover { background: var(--blue); }
.m-prod-info .price-pill {
  display: inline-flex; align-items: baseline;
  gap: 8px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
  padding-top: 6px;
  flex-wrap: wrap;
}
.m-prod-info .price-pill small {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 500;
  text-decoration: line-through;
  opacity: 1;
}
.m-prod-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  margin-top: 10px;
  padding: 11px 14px;
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 100px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 4px 12px -4px rgba(28, 113, 197, 0.5);
  transition: background .15s, transform .12s;
}
.m-prod-cta:hover { background: var(--blue-2); transform: translateY(-1px); }
.m-prod-cta.added {
  background: #2f8f4a;
  box-shadow: 0 4px 12px -4px rgba(47, 143, 74, 0.5);
}

/* Mobile bottom nav */
.m-bottom-nav {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 10px 8px 14px;
}
.m-nav-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 0;
  position: relative;
}
.m-nav-btn.active { color: var(--blue); }
.m-nav-btn.center {
  position: relative;
}
.m-nav-btn.center .icon-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  margin-top: -22px;
  box-shadow: 0 8px 20px -6px rgba(43,125,189,0.5);
}

/* Mobile trust strip */
.m-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 20px;
  margin-top: 24px;
}
.m-trust-card {
  background: var(--bg-blue-50);
  border-radius: 14px;
  padding: 14px;
  display: flex; gap: 10px; align-items: center;
}
.m-trust-card .ic-wrap { width: 34px; height: 34px; background: #fff; color: var(--blue); border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.m-trust-card b { font-size: 12px; display: block; }
.m-trust-card span { font-size: 10.5px; color: var(--muted); }

/* Mobile deal banner */
.m-deal-banner {
  margin: 24px 20px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-3) 100%);
  border-radius: 18px;
  padding: 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.m-deal-banner::before {
  content: ''; position: absolute;
  right: -30px; top: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.m-deal-banner h3 { font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.m-deal-banner p { margin: 0 0 14px; font-size: 12.5px; opacity: 0.9; }
.m-deal-timer { display: flex; gap: 6px; margin-bottom: 14px; }
.m-deal-timer .cell { background: rgba(0,0,0,0.25); border-radius: 8px; padding: 6px 10px; min-width: 44px; text-align: center; }
.m-deal-timer .cell b { display: block; font-size: 16px; font-weight: 700; }
.m-deal-timer .cell small { font-size: 9px; opacity: 0.8; }

/* Mobile newsletter */
.m-newsletter {
  margin: 28px 20px 24px;
  padding: 24px;
  background: var(--bg-blue-50);
  border-radius: 18px;
  text-align: center;
}
.m-newsletter h3 { font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.m-newsletter p { margin: 0 0 14px; font-size: 13px; color: var(--muted); }
.m-newsletter form { display: flex; gap: 6px; background: #fff; border-radius: 100px; padding: 4px; }
.m-newsletter input { flex: 1; background: transparent; border: 0; padding: 10px 14px; font-size: 13px; outline: none; font-family: inherit; }

/* Mobile reviews */
.m-reviews { padding: 0 20px; }
.m-reviews-scroll {
  display: flex; gap: 12px; overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  margin: 0 -20px; padding: 4px 20px;
}
.m-reviews-scroll::-webkit-scrollbar { display: none; }
.m-review-card {
  flex: 0 0 calc(100% - 40px);
  background: var(--bg-blue-50);
  border-radius: 16px;
  padding: 18px;
  scroll-snap-align: start;
}
.m-review-card .stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 8px; }
.m-review-card p { font-size: 13px; line-height: 1.5; margin: 0 0 12px; }
.m-review-card .meta { display: flex; gap: 10px; align-items: center; }
.m-review-card .avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 700; }

@media (max-width: 1024px) {
  body:not(.mobile-view) .nav-row { display: none; }
  body:not(.mobile-view) .header-inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  body:not(.mobile-view) .location-pill { display: none; }
}

/* ===== Deal of the Day ===== */
.dod {
  background: linear-gradient(180deg, #fff 0%, var(--bg-blue-50) 100%);
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.dod-container {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: 32px;
  align-items: center;
}
.dod-side {
  display: flex; flex-direction: column;
  align-self: center;
}
.dod-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}
.dod-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--bg-blue-50);
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.dod-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--ink);
}
.dod-sub { color: var(--muted); font-size: 13px; margin: 0; line-height: 1.5; }

.dod-timer {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  margin-top: 28px;
}
.dod-timer-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.dod-timer-digits {
  display: flex; align-items: center; gap: 6px;
}
.dod-timer-cell {
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(180deg, #1a3a5e 0%, #0e2942 100%);
  color: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  min-width: 88px;
  box-shadow: 0 12px 28px -10px rgba(14, 41, 66, 0.55);
}
.dod-timer-cell b {
  font-size: 44px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1;
}
.dod-timer-cell span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}
.dod-timer-digits em {
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 -2px;
  animation: dodPulse 1s ease-in-out infinite;
}
@keyframes dodPulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

.dod-dots {
  display: flex; gap: 6px;
  margin-top: 20px;
}
.dod-dot {
  width: 22px; height: 3px;
  border-radius: 2px;
  background: var(--line);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background .2s, width .2s;
}
.dod-dot.active { background: var(--blue); width: 32px; }

.dod-carousel {
  overflow: hidden;
  border-radius: 12px;
}
.dod-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  width: 100%;
}
.dod-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
/* Smaller product cards inside the deal carousel */
.dod-page .prod-card .prod-img { aspect-ratio: 1 / 1; }
.dod-page .prod-card .prod-name { font-size: 13.5px; }
.dod-page .prod-card .prod-cat { font-size: 11px; }
.dod-page .prod-card .prod-price { font-size: 14.5px; }
.dod-page .prod-card .prod-was { font-size: 11.5px; }
.dod-page .prod-card .prod-tag { font-size: 10px; padding: 4px 8px; }
.dod-page .prod-card .prod-add-btn { width: 30px; height: 30px; }

@media (max-width: 1100px) {
  .dod-page { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1000px) {
  .dod-container { grid-template-columns: 1fr; gap: 24px; }
  .dod-timer { margin-top: 14px; }
}
@media (max-width: 700px) {
  .dod-page { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .dod-page { grid-template-columns: 1fr; }
}

/* ===== Location modal (first-visit blocker) ===== */
body.locked { overflow: hidden; }
body.locked .desktop-only,
body.locked .mobile-only,
body.locked .view-toggle { filter: blur(8px) saturate(0.8); pointer-events: none; user-select: none; transition: filter .25s; }

.loc-modal-backdrop {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(8, 24, 44, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 24px;
  animation: locBackdropIn .25s ease-out;
}
@keyframes locBackdropIn { from { opacity: 0; } to { opacity: 1; } }

.loc-modal {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(8,24,44,0.4), 0 6px 18px -8px rgba(8,24,44,0.15);
  overflow: hidden;
  animation: locModalIn .35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes locModalIn { from { opacity: 0; transform: translateY(16px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.loc-modal-head {
  text-align: center;
  padding: 28px 28px 0;
}
.loc-modal h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.loc-modal-head p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* Locate-me CTA */
.loc-modal-locate {
  padding: 20px 24px 8px;
}
.loc-modal-locate-btn {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 16px;
  background: var(--blue);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.loc-modal-locate-btn:hover:not(:disabled) {
  background: var(--blue-2);
  transform: translateY(-1px);
}
.loc-modal-locate-btn:disabled { opacity: 0.75; cursor: progress; }
.loc-spinner {
  width: 15px; height: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: locSpin 0.7s linear infinite;
}
@keyframes locSpin { to { transform: rotate(360deg); } }
.loc-modal-error {
  margin-top: 10px;
  padding: 8px 12px;
  background: #fef3f2;
  color: #b42318;
  font-size: 12.5px;
  border-radius: 8px;
}

.loc-modal-grid {
  padding: 12px 16px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  max-height: 320px;
  overflow: auto;
}
@media (max-width: 540px) { .loc-modal-grid { grid-template-columns: 1fr; } }
body.mobile-view .loc-modal { max-width: 380px; border-radius: 16px; }
body.mobile-view .loc-modal-head { padding: 22px 22px 0; }
body.mobile-view .loc-modal h2 { font-size: 18px; }
body.mobile-view .loc-modal-head p { font-size: 12.5px; }
body.mobile-view .loc-modal-locate { padding: 16px 18px 6px; }
body.mobile-view .loc-modal-grid { grid-template-columns: 1fr; padding: 10px 14px 16px; }

.loc-modal-item {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 10px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: background .12s;
}
.loc-modal-item:hover { background: var(--bg-blue-50); }
.loc-modal-mon {
  width: 44px; height: 32px;
  flex-shrink: 0;
  color: var(--blue);
  display: grid; place-items: center;
  opacity: 0.85;
  transition: opacity .12s, transform .15s;
}
.loc-modal-mon svg { width: 100%; height: 100%; display: block; }
.loc-modal-item:hover .loc-modal-mon { opacity: 1; transform: translateY(-1px); }
.loc-modal-item-text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.loc-modal-item-name { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.loc-modal-item-sub { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.loc-modal-item:hover .loc-modal-item-name { color: var(--blue-2); }
