:root {
  --navy: #0b1d3e;
  --navy-2: #122a56;
  --blue: #0056b3;
  --sky: #0284c7;
  --cyan: #06b6d4;
  --red: #e31e24;
  --gold: #f5c518;
  --ice: #e8eef5;
  --bg: #e8eef5;
  --fg: #0f172a;
  --muted: #5b6b82;
  --white: #ffffff;
  --neu: #e8eef5;
  --neu-2: #dde6f0;
  --neu-light: #ffffff;
  --neu-dark: #c5d0de;
  --glass: var(--neu);
  --glass-strong: var(--neu);
  --glass-border: transparent;
  --ring: rgba(0, 86, 179, 0.28);
  --shadow-out: 8px 8px 16px var(--neu-dark), -8px -8px 16px var(--neu-light);
  --shadow-out-sm: 4px 4px 10px var(--neu-dark), -4px -4px 10px var(--neu-light);
  --shadow-in: inset 6px 6px 12px var(--neu-dark), inset -6px -6px 12px var(--neu-light);
  --shadow-in-sm: inset 3px 3px 7px var(--neu-dark), inset -3px -3px 7px var(--neu-light);
  --shadow: var(--shadow-out);
  --radius: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 0px;
  --font-h: "Rubik", system-ui, sans-serif;
  --font-b: "Nunito Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  min-height: 100%;
  height: auto;
  overflow-x: clip;
  overflow-y: visible;
}
body {
  font-family: var(--font-b);
  color: var(--fg);
  background: var(--neu);
  line-height: 1.55;
  touch-action: manipulation;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button, [role="button"], .btn, summary { cursor: pointer; }
button { font: inherit; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.15; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: #fff; padding: 8px 12px; z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }
.wrap { width: min(1240px, calc(100% - 32px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.glass,
.glass-strong,
.panel {
  background: var(--neu);
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-out);
}

.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-lg { width: 28px; height: 28px; }

/* Announcement — scrolls with the page, never sticky */
.announce {
  position: static;
  background: var(--neu);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 0 0;
}
.announce-inner {
  min-height: 44px;
  padding: 0;
  border-radius: 16px;
  box-shadow: var(--shadow-in);
  overflow: hidden;
}
.announce-marquee {
  overflow: hidden;
  width: 100%;
}
.announce-track {
  display: flex;
  width: max-content;
  animation: announceScroll 28s linear infinite;
}
.announce:hover .announce-track,
.announce:focus-within .announce-track {
  animation-play-state: paused;
}
.announce-group {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 28px;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.announce a, .announce span { display: inline-flex; align-items: center; gap: 8px; flex: none; }
.announce .gold { color: #b45309; }
.announce .dot { opacity: 0.4; font-weight: 800; }
.announce a:hover { color: var(--blue); }
@keyframes announceScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.wa { color: #15803d; }

/* Header — scrolls with the page, never sticky */
.site-head {
  position: static;
  z-index: 20;
  background: var(--neu);
  border-bottom: 0;
}
.brand-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0 8px;
}
.logo {
  display: flex; align-items: center; gap: 10px; min-width: 220px;
}
.logo img {
  width: 72px; height: 72px; object-fit: contain;
  border-radius: 20px;
  background: var(--neu);
  box-shadow: var(--shadow-out-sm);
  padding: 6px;
}
.logo-word { display: flex; flex-direction: column; line-height: 1; }
.logo-word strong { font-family: var(--font-h); font-size: 24px; letter-spacing: 0.04em; }
.logo-word strong span:nth-child(1) { color: var(--navy); }
.logo-word strong span:nth-child(2) { color: var(--blue); }
.logo-word strong span:nth-child(3) { color: var(--red); }
.logo-word small { margin-top: 6px; font-size: 8.5px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; max-width: 220px; }

.search {
  display: flex; align-items: stretch;
  border: 0;
  border-radius: 999px;
  background: var(--neu);
  box-shadow: var(--shadow-in);
  max-width: 640px;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
.search input {
  flex: 1; border: 0; outline: none; background: transparent;
  padding: 12px 18px; min-height: 46px; font-size: 15px;
}
.search button {
  background: var(--neu); color: var(--blue); padding: 0;
  display: grid; place-items: center; min-width: 44px; min-height: 44px;
  margin: 4px 4px 4px 0; border-radius: 50%;
  box-shadow: var(--shadow-out-sm);
  transition: box-shadow 180ms var(--ease), color 180ms var(--ease);
}
.search button:hover { color: var(--navy); box-shadow: var(--shadow-in-sm); }
.search input:focus { outline: none; }
.search:focus-within { box-shadow: var(--shadow-in), 0 0 0 3px var(--ring); }

.head-actions { display: flex; align-items: center; gap: 10px; }
.head-link, .icon-btn {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 8px 14px; border-radius: 14px;
  color: var(--navy); font-weight: 700; font-size: 13px;
  background: var(--neu);
  box-shadow: var(--shadow-out-sm);
  transition: box-shadow 180ms var(--ease), transform 180ms var(--ease);
}
.head-link span { line-height: 1.2; font-size: 12px; text-align: left; }
.head-link:hover, .icon-btn:hover { box-shadow: var(--shadow-in-sm); }
.icon-btn { position: relative; width: 48px; justify-content: center; padding: 8px; border-radius: 50%; }
.badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--red); color: #fff; font-size: 10px; font-weight: 800;
  min-width: 18px; height: 18px; border-radius: 999px;
  display: grid; place-items: center; padding: 0 4px;
  box-shadow: 2px 2px 6px rgba(180, 20, 30, 0.35);
}

/* Nav */
.main-nav {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0 16px;
}
.cat-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--neu); color: var(--blue); font-weight: 800; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 12px 18px; border-radius: 14px; min-height: 44px;
  position: relative;
  box-shadow: var(--shadow-out-sm);
}
.cat-btn:hover { box-shadow: var(--shadow-in-sm); color: var(--navy); }
.cat-menu {
  position: absolute; top: calc(100% + 12px); left: 0; width: min(92vw, 420px);
  padding: 12px; border-radius: 18px; display: none; z-index: 40;
  background: var(--neu);
  box-shadow: var(--shadow-out);
}
.cat-wrap { position: relative; }
.cat-wrap:hover .cat-menu, .cat-wrap:focus-within .cat-menu { display: block; }
.cat-menu-hub {
  padding: 8px 10px 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.cat-menu-hub a { color: inherit; }
.cat-menu-hub a:hover { color: var(--blue); }
.cat-menu-block + .cat-menu-block { margin-top: 10px; padding-top: 10px; box-shadow: inset 0 1px 0 var(--neu-dark); }
.cat-menu-hub + .cat-menu-block { margin-top: 0; padding-top: 0; box-shadow: none; }
.cat-menu-name {
  display: flex; align-items: center;
  padding: 8px 10px; border-radius: 12px; font-weight: 800; color: var(--navy);
  min-height: 44px;
}
.cat-menu-name:hover { box-shadow: var(--shadow-in-sm); color: var(--blue); }
.cat-menu-sizes { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 6px 6px; }
.cat-menu-size {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 36px; padding: 6px 10px; border-radius: 10px;
  font-size: 12px; font-weight: 800; color: var(--navy);
  background: var(--neu);
  box-shadow: var(--shadow-out-sm);
}
.cat-menu-size:hover { box-shadow: var(--shadow-in-sm); color: var(--blue); }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; margin-left: 8px; }
.nav-links a {
  padding: 10px 14px; min-height: 44px; display: inline-flex; align-items: center;
  font-weight: 800; font-size: 13px; letter-spacing: 0.04em; color: var(--navy);
  border-radius: 12px; text-transform: uppercase;
  transition: box-shadow 180ms var(--ease), color 180ms var(--ease);
}
.nav-links a:hover, .nav-links a.is-active {
  color: var(--blue);
  box-shadow: var(--shadow-in-sm);
}
.menu-toggle {
  display: none;
  background: var(--neu);
  box-shadow: var(--shadow-out-sm);
  border-radius: 12px;
}

/* Hero */
.hero,
.hero-slide {
  position: relative; isolation: isolate;
  min-height: 620px;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}
.hero::after {
  content: "";
  position: absolute; inset: auto -10% -20% 40%;
  height: 280px;
  background: radial-gradient(closest-side, rgba(125,211,252,0.35), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: center; min-height: 620px; padding: 48px 0 36px; position: relative; z-index: 2;
}
.hero h1,
.hero-slide h1,
.hero-copy h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 800; max-width: 14ch; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero h1 em,
.hero-slide h1 em { font-style: normal; color: #fff; display: block; font-size: 1.08em; }
.hero .script,
.hero-slide .script {
  margin-top: 14px; font-family: "Great Vibes", cursive;
  font-size: clamp(26px, 2.6vw, 38px); color: var(--gold); font-weight: 400;
}
.hero-feats {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px; margin-top: 40px;
}
.hero-feat {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 16px;
  background: rgba(11, 29, 62, 0.35);
  border: 0;
  box-shadow: 5px 5px 12px rgba(0,0,0,0.28), -4px -4px 10px rgba(255,255,255,0.12);
  font-size: 12px; font-weight: 700; line-height: 1.25;
}
.hero-feat svg { flex: none; color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 12px 22px; border-radius: 14px;
  font-weight: 800; letter-spacing: 0.02em;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease);
}
.btn:hover { transform: none; }
.btn:active { transform: scale(0.98); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--sky); outline-offset: 2px;
}
.btn-gold {
  background: linear-gradient(145deg, #ffd54a, #e6b800);
  color: var(--navy);
  box-shadow: 6px 6px 12px rgba(180, 140, 20, 0.28), -4px -4px 10px rgba(255,255,255,0.55);
}
.btn-gold:hover { box-shadow: var(--shadow-in-sm); }
.btn-white {
  background: var(--neu); color: var(--navy);
  box-shadow: var(--shadow-out-sm);
}
.btn-navy {
  background: linear-gradient(145deg, #163056, #0b1d3e);
  color: #fff;
  box-shadow: 6px 6px 14px var(--neu-dark), -4px -4px 10px var(--neu-light);
}
.btn-red {
  background: linear-gradient(145deg, #ef3b40, #c4181e);
  color: #fff;
  box-shadow: 6px 6px 12px var(--neu-dark), -4px -4px 10px var(--neu-light);
}
.btn-outline {
  background: transparent; color: #fff;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.28), -3px -3px 8px rgba(255,255,255,0.12);
}
.btn-order {
  background: var(--neu); color: var(--navy); border-radius: 14px; min-width: 180px;
  box-shadow: var(--shadow-out);
}
.btn-blue {
  background: linear-gradient(145deg, #1a6fd4, #004a9a);
  color: #fff;
  box-shadow: 6px 6px 14px var(--neu-dark), -4px -4px 10px var(--neu-light);
}
.btn-blue:hover, .btn-navy:hover, .btn-red:hover { filter: brightness(1.04); }
.btn-blue:active, .btn-navy:active, .btn-gold:active, .btn-red:active {
  box-shadow: var(--shadow-in-sm);
}
.word span:nth-child(1) { color: var(--navy); }
.word span:nth-child(2) { color: var(--blue); }
.word span:nth-child(3) { color: var(--red); }
.section-head h2 .word span:nth-child(1) { color: var(--navy); }

/* Sections */
.section { padding: 72px 0; }
.section-head {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: 36px;
}
.section-head h2 {
  font-size: 28px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); text-align: center;
}
.rule { height: 6px; flex: 1; border-radius: 999px; box-shadow: var(--shadow-in-sm); background: var(--neu); }

/* Categories */
.cat-track-wrap { overflow: hidden; padding: 8px 4px; }
.cat-track {
  display: flex; gap: 16px; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: none; scrollbar-width: none;
  -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
  padding: 8px 4px 16px;
}
.brand-track {
  display: flex; flex-direction: row; flex-wrap: nowrap;
  gap: 8px; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: none; scrollbar-width: none;
  -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
  padding: 8px 4px 16px;
}
.cat-track::-webkit-scrollbar,
.brand-track::-webkit-scrollbar { display: none; }
.cat-card {
  flex: 0 0 min(82vw, 380px);
  border-radius: 22px; overflow: hidden; padding: 0;
  background: var(--neu);
  box-shadow: var(--shadow-out);
  transition: box-shadow 220ms var(--ease);
}
.cat-card-link { display: block; color: inherit; }
.cat-card:hover { transform: none; box-shadow: var(--shadow-in); }
.cat-card-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px 8px; font-weight: 800; letter-spacing: 0.06em; color: var(--navy);
}
.cat-card-top span { font-size: 12px; color: var(--blue); }
.cat-card img { width: 100%; height: 210px; object-fit: cover; }
.sizes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  padding: 14px 16px 18px;
}
.size-chip {
  display: grid; place-items: center; min-height: 44px;
  background: var(--neu);
  border: 0;
  border-radius: 12px; font-weight: 800; font-size: 13px; color: var(--navy);
  box-shadow: var(--shadow-out-sm);
  transition: box-shadow 180ms var(--ease), color 180ms var(--ease);
  position: relative;
  z-index: 2;
}
.size-chip:hover { box-shadow: var(--shadow-in-sm); color: var(--blue); }

/* Brands */
.brands { position: relative; }
.brand-track-wrap { overflow: hidden; padding: 8px 4px; }
.brand-track .brand-card {
  flex: 0 0 calc((100% - 16px) / 3);
  width: calc((100% - 16px) / 3);
  max-width: none;
  min-width: 0;
  scroll-snap-align: unset;
  border-radius: 16px; padding: 10px 8px 8px;
  min-height: 108px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: var(--neu);
  box-shadow: var(--shadow-out-sm);
  transition: box-shadow 200ms var(--ease);
  text-align: center;
}
.brand-track .brand-card.glass { box-shadow: var(--shadow-out-sm); }
.brand-card:hover { transform: none; box-shadow: var(--shadow-in-sm); }
.brand-logo-box {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 92px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: var(--neu);
  box-shadow: var(--shadow-in-sm);
  padding: 8px;
}
.brand-logo-box.is-round { border-radius: 50%; }
.brand-logo-box.is-square { border-radius: 14px; }
.brand-logo-box img {
  width: 100%;
  height: 100%;
  max-height: 44px;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}
.brand-logo-box.is-round img { max-height: 70%; border-radius: 50%; object-fit: cover; }
.brand-card-name {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.testimonial-card {
  border-radius: 20px;
  padding: 18px 16px;
}
.testimonial-stars {
  margin: 0 0 8px;
  color: #d4a017;
  letter-spacing: 0.08em;
  font-size: 13px;
}
.testimonial-quote {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--navy);
  font-weight: 600;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-meta img,
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-avatar {
  display: grid;
  place-items: center;
  background: var(--neu);
  box-shadow: var(--shadow-in-sm);
  font-weight: 800;
  color: var(--blue);
}
.testimonial-meta strong,
.testimonial-meta small { display: block; }
.testimonial-meta small { color: #64748b; font-weight: 600; font-size: 12px; }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.partner-card {
  border-radius: 22px;
  padding: 18px 14px 16px;
  text-align: center;
}
.partner-photo {
  width: 104px;
  height: 104px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--neu);
  box-shadow: var(--shadow-in-sm);
}
.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partner-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
}
.partner-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--navy);
}
.partner-role {
  margin: 0 0 8px;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}
.partner-perf {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
}
.auto-dup-item { display: none; }
.cat-track .auto-dup-item.cat-card { display: block; }
.brand-track .auto-dup-item.brand-card { display: flex; }
.cat-track [data-reveal],
.brand-track [data-reveal] {
  opacity: 1;
  transform: none;
}
.why-track-wrap { padding: 8px 4px; }
.carousel-btn {
  position: absolute; top: 50%; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; z-index: 2;
  background: var(--neu); border: 0;
  box-shadow: var(--shadow-out-sm); color: var(--navy);
}
.carousel-btn:hover { box-shadow: var(--shadow-in-sm); }
.carousel-btn.prev { left: -8px; }
.carousel-btn.next { right: -8px; }

/* 20L banner */
.special {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  width: min(1240px, calc(100% - 32px));
  margin: 8px auto 24px;
  border-radius: 28px;
  box-shadow: var(--shadow-out);
}
.special-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
  padding: 64px 28px;
}
.special h2 { font-size: clamp(32px, 4vw, 48px); letter-spacing: 0.04em; }
.special ul { margin: 22px 0 28px; display: grid; gap: 10px; }
.special li { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; }
.special li::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.35), -1px -1px 3px rgba(255,255,255,0.2);
}

/* Why */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.why-card {
  text-align: center; padding: 28px 16px; border-radius: 22px;
  background: var(--neu);
  box-shadow: var(--shadow-out);
}
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%;
  display: grid; place-items: center; color: var(--blue);
  background: var(--neu);
  box-shadow: var(--shadow-out-sm);
}
.why-card h3 { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); }
.why-card p { margin-top: 6px; font-size: 13px; color: var(--muted); font-weight: 700; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-photo {
  border-radius: 28px; overflow: hidden; min-height: 360px;
  background: var(--neu);
  box-shadow: var(--shadow-out);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.kicker { color: var(--blue); font-weight: 800; letter-spacing: 0.16em; font-size: 12px; }
.about-copy h2 { margin: 10px 0 16px; font-size: clamp(28px, 3vw, 40px); color: var(--navy); }
.about-copy p { color: #334155; font-size: 16px; max-width: 54ch; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.stats > div {
  background: var(--neu);
  border-radius: 18px;
  padding: 14px 10px;
  box-shadow: var(--shadow-out-sm);
  text-align: center;
}
.stats strong { display: block; font-size: 28px; color: var(--blue); }
.stats span { font-size: 12px; font-weight: 800; letter-spacing: 0.04em; color: var(--navy); }

/* Help bar */
.help-bar {
  background: var(--neu);
  color: var(--navy);
  width: min(1240px, calc(100% - 32px));
  margin: 8px auto 28px;
  border-radius: 22px;
  box-shadow: var(--shadow-out);
}
.help-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; flex-wrap: wrap;
}
.help-left { display: flex; align-items: center; gap: 14px; font-weight: 800; letter-spacing: 0.04em; }
.help-left svg { color: #b45309; }
.help-phone {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(145deg, #ffd54a, #e6b800);
  color: var(--navy); font-weight: 800;
  padding: 10px 18px; border-radius: 14px; min-height: 48px;
  box-shadow: 5px 5px 12px var(--neu-dark), -3px -3px 8px var(--neu-light);
}

/* Footer */
.site-foot {
  background: var(--neu);
  color: #334155;
  padding: 36px 0 0;
  border-top: 0;
}
.foot-grid {
  display: grid; grid-template-columns: 1.1fr 1.3fr 1fr; gap: 28px;
  padding-bottom: 36px;
}
.site-foot h3 { color: var(--navy); font-size: 14px; letter-spacing: 0.12em; margin-bottom: 16px; text-transform: uppercase; }
.site-foot a { display: inline-flex; align-items: center; gap: 8px; min-height: 32px; color: #334155; }
.site-foot a:hover { color: var(--blue); }
.foot-logo img { width: 96px; }
.foot-contact .foot-action {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 8px;
  padding: 0 14px;
  border-radius: 14px;
  font-weight: 800;
  color: var(--navy);
  background: var(--neu);
  box-shadow: var(--shadow-out-sm);
}
.foot-contact .foot-action:hover { color: var(--blue); box-shadow: var(--shadow-in-sm); }
.foot-contact h3 { margin-top: 18px; }
.help-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.help-page-card {
  display: block;
  padding: 22px 20px;
  border-radius: 20px;
}
.help-page-card h3 { font-size: 18px; color: var(--navy); }
.help-page-card p { margin-top: 8px; color: var(--muted); font-weight: 700; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--neu); border: 0; color: #fff;
  box-shadow: var(--shadow-out-sm);
}
.socials a:hover { box-shadow: var(--shadow-in-sm); transform: translateY(-1px); }
.socials a.social-fb { background: #1877f2; }
.socials a.social-ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.socials a.social-wa { background: #25d366; }
.order-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #eff6ff;
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(0, 86, 179, 0.12);
}
.order-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: var(--blue);
}
.order-note p {
  margin: 0;
  font-weight: 600;
  line-height: 1.45;
  white-space: pre-wrap;
}
.site-foot .inquiry input, .site-foot .inquiry select, .site-foot .inquiry textarea {
  width: 100%; background: var(--neu); border: 0;
  color: var(--navy); border-radius: 12px; padding: 11px 12px; margin-bottom: 10px; min-height: 44px;
  box-shadow: var(--shadow-in);
}
.site-foot .inquiry textarea { min-height: 84px; resize: vertical; }
.site-foot .inquiry option { color: var(--navy); }
.site-foot .inquiry .btn { width: 100%; border-radius: 14px; }
.inquiry textarea { min-height: 84px; resize: vertical; width: 100%; }
.form-msg { font-size: 13px; margin-top: 8px; min-height: 1.2em; }
.form-msg.ok { color: #15803d; }
.form-msg.err { color: #b91c1c; }
.foot-copy {
  background: var(--neu); color: var(--muted);
  padding: 16px 0 28px;
  display: block;
}
.foot-copy .wrap {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-in);
}

.shop-poster {
  position: relative;
  overflow: hidden;
  color: #fff;
  width: min(1240px, calc(100% - 32px));
  margin: 8px auto 12px;
  min-height: min(42vw, 280px);
  border-radius: 28px;
  box-shadow: var(--shadow-out);
}
.shop-poster-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.shop-poster-inner {
  position: relative;
  z-index: 2;
  padding: 42px 28px;
}
.shop-poster-inner .kicker { color: var(--gold); }
.shop-poster-inner h1 {
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 0.03em;
  max-width: 16ch;
}
.shop-poster-inner p { margin-top: 8px; font-weight: 700; opacity: 0.92; }
.shop-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.shop-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.shop-cat-grid .cat-card { margin: 0; }
.shop-brand-grid .brand-card {
  flex: none;
  width: 100%;
  min-width: 0;
  min-height: 132px;
  border-radius: 18px;
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--neu);
  box-shadow: var(--shadow-out-sm);
  text-align: center;
}
.shop-brand-grid .brand-logo-box {
  max-width: 108px;
  border-radius: 16px;
  padding: 10px;
}
.shop-brand-grid .brand-logo-box img {
  max-height: 52px;
}
.shop-brand-grid .brand-card-name { font-size: 12px; }
.shop-brand-grid .brand-card.is-active {
  box-shadow: var(--shadow-in-sm, inset 4px 4px 10px rgba(11, 29, 62, 0.12), inset -3px -3px 8px rgba(255,255,255,0.9));
  outline: 2px solid var(--bmc, #0056b3);
  outline-offset: 0;
}
.shop-block-head {
  margin: 0 0 14px;
}
.shop-block-head h2 {
  margin: 0;
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 800;
  color: var(--navy, #0b1d3e);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.shop-block-head p {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(11, 29, 62, 0.55);
}
.shop-size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.shop-size-row .size-chip {
  flex: 1 1 auto;
  min-width: 72px;
  padding: 0 12px;
}
.brand-mark {
  flex-shrink: 0;
  width: 100%; height: 100%;
  max-width: 56px; max-height: 56px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: transparent;
  box-shadow: none;
  font-weight: 800; font-size: 22px; color: var(--blue);
}

/* Shop */
.page-hero {
  background: var(--neu);
  color: var(--navy);
  width: min(1240px, calc(100% - 32px));
  margin: 20px auto 0;
  padding: 28px 24px;
  border-radius: 24px;
  box-shadow: var(--shadow-out);
}
.page-hero h1 { font-size: 32px; }
.crumbs { margin-top: 8px; font-size: 13px; opacity: 0.8; }
.crumbs a { text-decoration: underline; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.filter-chip {
  padding: 8px 16px; min-height: 40px; border-radius: 14px;
  background: var(--neu); border: 0;
  font-weight: 800; font-size: 13px; color: var(--navy);
  box-shadow: var(--shadow-out-sm);
}
.filter-chip.is-active, .filter-chip:hover {
  background: var(--neu); color: var(--blue); border-color: transparent;
  box-shadow: var(--shadow-in-sm);
}
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-card {
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--neu);
  box-shadow: var(--shadow-out);
  padding: 12px 12px 16px;
}
.product-visual {
  aspect-ratio: 1 / 1;
  display: block;
  position: relative;
  background: var(--neu);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-in);
}
.bottle { width: 46px; height: 110px; border-radius: 10px 10px 8px 8px; position: relative; box-shadow: var(--shadow-out-sm); }
.bottle::before {
  content: ""; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 16px; border-radius: 4px 4px 2px 2px; background: #94a3b8;
}
.product-card .body { padding: 14px 6px 4px; }
.product-card .brand { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.product-card h3 { font-size: 16px; margin: 4px 0; word-break: break-word; }
.product-card .meta { font-size: 13px; color: var(--muted); }
.price-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 8px 0 12px; }
.product-card .price-row { gap: 6px 8px; }
.price { font-size: 20px; font-weight: 800; color: var(--navy); }
.mrp { font-size: 13px; color: #94a3b8; text-decoration: line-through; }
.save-pill {
  display: inline-flex; align-items: center;
  min-height: 24px; padding: 2px 8px; border-radius: 999px;
  font-size: 12px; font-weight: 800; color: #15803d;
  background: var(--neu);
  box-shadow: var(--shadow-in-sm);
  text-decoration: none;
}
.qty-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.qty-btn {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 800; color: var(--navy);
  background: var(--neu);
  box-shadow: var(--shadow-out-sm);
}
.qty-btn:hover { box-shadow: var(--shadow-in-sm); }
.qty-row input[type="number"] {
  width: 64px; min-height: 44px; text-align: center;
  border-radius: 12px; border: 0; font-weight: 800;
  background: var(--neu);
  box-shadow: var(--shadow-in-sm);
  color: var(--navy);
}
.add-live {
  display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap;
  margin: 0 0 10px; font-size: 13px; font-weight: 800;
}
.add-live [data-live-total] { color: var(--navy); }
.add-live [data-live-save] { color: #15803d; }
.add-btn { width: 100%; border-radius: 14px; }

.empty { text-align: center; padding: 48px 16px; color: var(--muted); }

/* Cart / forms */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { text-align: left; padding: 14px 10px; border-bottom: 0; vertical-align: middle; }
.cart-table tbody tr { box-shadow: var(--shadow-in-sm); }
.cart-product { display: flex; align-items: center; gap: 12px; min-width: 0; }
.cart-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(11, 29, 62, 0.08);
  flex: none;
  background: #fff;
}
.checkout-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.checkout-line-main { display: flex; gap: 10px; min-width: 0; }
.checkout-line-copy { min-width: 0; }
.checkout-line-copy strong { display: block; }
.checkout-line-copy small { display: block; color: #64748b; }
.checkout-line-price { text-align: right; }
.checkout-line-price .mrp,
.checkout-line-price .save-pill { display: block; }
.cart-mrp-cell { white-space: nowrap; }
.cart-mrp-cell .mrp { display: block; }
.cart-offer { font-weight: 800; color: var(--navy); font-size: 14px; }
.qty {
  display: inline-flex; align-items: center; border: 0; border-radius: 14px; overflow: hidden;
  background: var(--neu); box-shadow: var(--shadow-in);
}
.qty button { width: 36px; height: 36px; }
.qty span { min-width: 28px; text-align: center; font-weight: 800; }
.panel { border-radius: 22px; padding: 24px; }
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field label { font-weight: 700; font-size: 13px; }
.field-hint { font-size: 12px; color: var(--muted); margin: 0 0 8px; }
.location-btn { width: 100%; margin-bottom: 8px; }
.location-status { font-size: 13px; font-weight: 700; color: #15803d; margin-top: 6px; }
.location-status a { margin-left: 8px; text-decoration: underline; color: var(--blue); }
.location-error { font-size: 13px; font-weight: 700; color: var(--red); margin-top: 6px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 46px; border-radius: 14px; border: 0;
  padding: 10px 12px; background: var(--neu); color: var(--fg);
  box-shadow: var(--shadow-in);
}
.password-field {
  position: relative;
  display: grid;
}
.password-field input {
  padding-right: 72px;
}
.password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  min-height: 32px;
  padding: 4px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--blue);
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}
.password-toggle:hover { box-shadow: var(--shadow-in-sm); }
.saved-address-box {
  border: 1px solid rgba(11,29,62,.1);
  border-radius: 20px;
  padding: 16px;
  background: #fff;
}
.saved-address-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.saved-address-option:last-child { margin-bottom: 0; }
.saved-address-option input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 3px;
  box-shadow: none;
  padding: 0;
}
.variant-list {
  display: grid;
  gap: 8px;
}
.variant-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--neu);
  box-shadow: var(--shadow-in);
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}
.variant-option:has(input:checked) {
  box-shadow: var(--shadow-in), 0 0 0 2px var(--blue);
}
.variant-option input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
  accent-color: var(--blue);
  box-shadow: none;
  padding: 0;
}
.variant-name { font-size: 15px; }
.variant-price {
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

/* Toast + float */
.toast {
  position: fixed; bottom: 88px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 14px;
  opacity: 0; pointer-events: none; transition: 220ms var(--ease); z-index: 80; font-weight: 700;
  box-shadow: 8px 8px 18px rgba(11,29,62,0.35);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.float-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(145deg, #3ee07a, #1fbf5a); color: #fff; display: grid; place-items: center;
  box-shadow: 6px 6px 14px var(--neu-dark), -4px -4px 10px var(--neu-light);
}
.float-dock {
  position: fixed;
  right: 22px;
  bottom: calc(18px + 56px + 12px);
  z-index: 69;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.float-dock-btn {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--neu);
  color: var(--navy);
  box-shadow: var(--shadow-out-sm);
}
.float-dock-btn:hover { box-shadow: var(--shadow-in-sm); }
.float-dock-btn .icon { width: 22px; height: 22px; }
.float-dock-btn .badge {
  top: -2px; right: -2px;
  min-width: 18px; height: 18px; font-size: 10px;
}
.float-panel {
  position: fixed;
  right: 18px;
  bottom: calc(18px + 56px + 12px + 48px * 3 + 10px * 2 + 12px);
  z-index: 68;
  width: min(calc(100vw - 36px), 320px);
  padding: 12px;
  border-radius: 18px;
  background: var(--neu);
  box-shadow: var(--shadow-out);
}
.float-panel[hidden] { display: none; }
.float-search .search { max-width: none; border-radius: 14px; }
.float-search .search-results {
  top: auto;
  bottom: calc(100% + 10px);
  max-height: min(42vh, 280px);
}
.float-nav {
  display: grid;
  gap: 4px;
  max-height: min(60vh, 420px);
  overflow-y: auto;
}
.float-nav a {
  display: flex; align-items: center;
  min-height: 44px; padding: 10px 12px;
  border-radius: 12px; font-weight: 800; font-size: 14px; color: var(--navy);
}
.float-nav a:hover { box-shadow: var(--shadow-in-sm); color: var(--blue); }
.search-results {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0;
  border-radius: 16px; max-height: 320px; overflow: auto; z-index: 40;
  background: var(--neu);
  box-shadow: var(--shadow-out);
  padding: 8px;
}
.search-wrap { position: relative; }
.search-results a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  font-weight: 700;
  border-radius: 12px;
  color: var(--navy);
}
.search-results a:hover { box-shadow: var(--shadow-in-sm); }
.search-results img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
}
.search-item-copy { min-width: 0; }
.search-item-copy strong,
.search-item-copy small { display: block; }
.search-item-copy small { color: #64748b; font-weight: 600; font-size: 12px; }
.search-item-price { font-weight: 800; white-space: nowrap; color: var(--blue); }
.search-empty { padding: 12px 14px; color: #64748b; font-weight: 600; font-size: 13px; }

.prose { max-width: 820px; }
.prose h2 { margin: 28px 0 10px; font-size: 22px; color: var(--navy); }
.prose p, .prose li { color: #334155; margin-bottom: 12px; }
.prose ul { padding-left: 18px; list-style: disc; }
.faq { display: grid; gap: 12px; }
.faq details {
  border-radius: 16px; padding: 14px 18px;
  background: var(--neu);
  border: 0;
  box-shadow: var(--shadow-out);
}
.faq summary { font-weight: 800; color: var(--navy); min-height: 44px; display: flex; align-items: center; }
.faq p { margin-top: 8px; color: #334155; }
.icon-row { display: flex; gap: 8px; flex-wrap: wrap; }
.coupon-box { margin-top: 22px; padding-top: 16px; border-top: 0; }
.coupon-box h3 { font-size: 16px; margin-bottom: 10px; color: var(--navy); }
.coupon-apply { display: flex; gap: 8px; }
.coupon-apply input {
  flex: 1; min-height: 46px; border: 0; border-radius: 14px; padding: 10px 12px;
  background: var(--neu); box-shadow: var(--shadow-in); text-transform: uppercase; font-weight: 800;
}
.coupon-applied {
  font-weight: 800; color: #15803d; word-break: break-all;
  padding: 10px 12px; border-radius: 14px; background: var(--neu); box-shadow: var(--shadow-in-sm);
}
.coupon-claims { display: grid; gap: 8px; margin-top: 8px; }
.coupon-chip {
  width: 100%; text-align: left; padding: 12px 14px; border-radius: 14px;
  background: var(--neu); box-shadow: var(--shadow-out-sm);
  display: grid; gap: 2px; color: var(--navy);
}
.coupon-chip strong { letter-spacing: 0.06em; }
.coupon-chip span, .coupon-chip small { font-size: 12px; font-weight: 700; color: var(--muted); }
.coupon-chip.is-on, .coupon-chip:hover { box-shadow: var(--shadow-in-sm); color: var(--blue); }

@media (max-width: 1100px) {
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; gap: 12px; }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .partner-photo { width: 88px; height: 88px; }
  .announce-inner { min-height: 34px; border-radius: 12px; }
  .announce-group { padding: 7px 16px; gap: 14px; font-size: 11px; letter-spacing: 0.08em; }
  .site-head .wrap { width: min(1240px, calc(100% - 24px)); }
  .brand-bar {
    grid-template-columns: 1fr auto;
    gap: 8px 10px;
    padding: 8px 0 6px;
  }
  .logo { min-width: 0; gap: 8px; }
  .logo img {
    width: 40px; height: 40px;
    border-radius: 12px;
    padding: 3px;
    box-shadow: none;
    background: transparent;
  }
  .logo-word strong { font-size: 16px; letter-spacing: 0.02em; }
  .logo-word small { display: none; }
  .head-actions { gap: 6px; }
  .head-link, .icon-btn {
    min-width: 40px; width: 40px; min-height: 40px; height: 40px;
    padding: 0; border-radius: 12px;
    justify-content: center;
    box-shadow: none;
  }
  .head-link span { display: none; }
  .icon-btn { border-radius: 12px; }
  .badge { top: -2px; right: -2px; min-width: 16px; height: 16px; font-size: 9px; }
  .search {
    grid-column: 1 / -1; order: 3; max-width: none;
    border-radius: 14px;
  }
  .search input { padding: 8px 14px; min-height: 40px; font-size: 14px; }
  .search button {
    min-width: 36px; min-height: 36px; margin: 2px 2px 2px 0;
    box-shadow: none;
  }
  .main-nav { position: relative; padding: 4px 0 10px; gap: 6px; }
  .cat-btn {
    min-height: 38px; padding: 8px 12px; font-size: 11px;
    letter-spacing: 0.06em; border-radius: 12px;
    background: transparent;
    box-shadow: var(--shadow-in-sm);
  }
  .menu-toggle {
    display: inline-flex; margin-left: auto;
    min-width: 40px; min-height: 40px; width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: 12px;
    box-shadow: none;
  }
  .float-dock { display: flex; }
  .announce-track { animation-duration: 22s; }
  .hero-inner, .about-grid, .special-inner, .auth-grid { grid-template-columns: 1fr; }
  .hero, .hero-slide { min-height: min(72svh, 640px); }
  .hero-inner { min-height: min(72svh, 640px); padding: 36px 0; }
  .hero-feats { grid-template-columns: 1fr 1fr; }
  .cat-card { flex: 0 0 min(68vw, 360px); }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0;
    top: 100%; background: var(--neu); box-shadow: var(--shadow-out);
    padding: 12px; border-bottom: 0; z-index: 30; border-radius: 16px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }
  .product-card {
    min-width: 0;
    max-width: 100%;
    padding: 10px 8px 12px;
    overflow: hidden;
  }
  .product-card .body { min-width: 0; padding: 10px 2px 2px; }
  .product-card h3 {
    font-size: 13px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-card .brand { font-size: 10px; }
  .product-card .meta { font-size: 11px; }
  .price-row { gap: 4px 6px; margin: 6px 0 10px; }
  .price { font-size: 15px; }
  .product-card .mrp, .product-card .save-pill { font-size: 10px; }
  .qty-row { gap: 4px; margin-bottom: 8px; }
  .qty-btn { width: 32px; height: 32px; border-radius: 10px; font-size: 18px; flex: none; }
  .qty-row input[type="number"] {
    width: 40px; min-width: 0; min-height: 32px; flex: 1 1 auto; max-width: 48px;
  }
  .add-live { font-size: 11px; gap: 4px; margin-bottom: 8px; }
  .add-btn { min-height: 40px; font-size: 13px; border-radius: 12px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .brand-track-wrap,
  .why-track-wrap,
  .cat-track-wrap { overflow: hidden; }
  .brand-track { gap: 8px; }
  .brand-track .brand-card {
    flex: 0 0 calc((100% - 16px) / 3);
    width: calc((100% - 16px) / 3);
    max-width: none;
    min-height: 98px;
    padding: 8px 6px 6px;
    border-radius: 14px;
    gap: 6px;
  }
  .brand-track .brand-logo-box {
    max-width: 78px;
    border-radius: 12px;
    padding: 6px;
  }
  .brand-track .brand-logo-box img { max-height: 34px; }
  .brand-track .brand-card-name { font-size: 9px; }
  .why-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding: 8px 4px 16px;
  }
  .why-grid::-webkit-scrollbar { display: none; }
  .auto-dup-item.why-card { display: block; }
  .why-card { flex: 0 0 min(64vw, 220px); padding: 18px 12px; border-radius: 18px; }
  .why-icon { width: 48px; height: 48px; margin-bottom: 10px; }
  .why-icon .icon-lg { width: 22px; height: 22px; }
  .why-card h3 { font-size: 12px; }
  .why-card p { font-size: 12px; margin-top: 4px; }
  .why-grid [data-reveal] {
    opacity: 1;
    transform: none;
  }
  /* Keep content clear of floating cart/search/WA buttons */
  .section .wrap,
  .page-hero .wrap {
    width: min(1240px, calc(100% - 24px));
  }
  main {
    padding-bottom: 28px;
    padding-inline-end: 0;
  }
  .product-grid,
  .shop-brand-grid,
  .shop-cat-grid {
    padding-right: 4px;
  }
}
@media (max-width: 560px) {
  .logo-word small { display: none; }
  .head-link span { display: none; }
  .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .foot-grid, .help-page-grid { grid-template-columns: 1fr; }
  .product-grid,
  .shop-brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-track { gap: 8px; }
  .brand-track .brand-card {
    flex: 0 0 calc((100% - 16px) / 3);
    width: calc((100% - 16px) / 3);
    max-width: none;
    min-height: 92px;
    padding: 6px 6px 5px;
    border-radius: 12px;
    gap: 5px;
  }
  .brand-track .brand-logo-box {
    max-width: 70px;
    border-radius: 11px;
    padding: 5px;
  }
  .brand-track .brand-logo-box img { max-height: 30px; }
  .brand-track .brand-card-name { font-size: 8px; letter-spacing: 0.04em; }
  .why-card { flex: 0 0 min(62vw, 200px); padding: 16px 10px; }
  .shop-poster { min-height: 180px; border-radius: 22px; }
  .shop-poster-inner { padding: 32px 20px; }
  .hero h1 { max-width: none; }
  .sizes-grid { grid-template-columns: repeat(3, 1fr); }
  .stats > div { padding: 12px 8px; border-radius: 16px; }
  .stats strong { font-size: 22px; }
  .stats span { font-size: 11px; }
  .product-grid { gap: 10px; }
  .product-card { padding: 8px 6px 10px; }
  .product-card .body { padding: 8px 1px 1px; }
  .product-card h3 { font-size: 12px; }
  .product-card .meta,
  .product-card .brand,
  .add-live { font-size: 10px; }
  .price { font-size: 14px; }
  .product-card .mrp, .product-card .save-pill { font-size: 10px; }
  .qty-btn { width: 30px; height: 30px; font-size: 16px; }
  .qty-row input[type="number"] { width: 36px; max-width: 42px; min-height: 30px; }
  .add-btn { min-height: 38px; font-size: 12px; padding-inline: 8px; }
  .shop-brand-grid { gap: 12px; }
  .cart-table th, .cart-table td { padding: 12px 6px; font-size: 13px; }
  .cart-thumb { width: 52px; height: 52px; border-radius: 12px; }
  .cart-product { gap: 8px; }
  .shop-brand-grid .brand-card {
    min-height: 118px;
    padding: 12px 10px 10px;
    gap: 8px;
  }
  .shop-brand-grid .brand-logo-box {
    max-width: 92px;
    padding: 8px;
  }
  .shop-brand-grid .brand-logo-box img,
  .shop-brand-grid .brand-mark {
    max-height: 44px;
  }
  .shop-brand-grid .brand-card-name { font-size: 11px; }
  .wrap { width: min(1240px, calc(100% - 20px)); }
  .float-dock { right: 14px; }
  .float-wa { right: 12px; bottom: 14px; width: 52px; height: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .announce-track { transform: none; }
  .cat-track,
  .brand-track,
  .why-grid { scroll-snap-type: x mandatory; }
  .cat-card,
  .brand-card,
  .why-card { scroll-snap-align: start; }
}

/* Entire chrome scrolls with the document, including the announcement bar */
.announce,
.site-head,
header {
  position: static !important;
  top: auto !important;
  bottom: auto !important;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  width: min(1240px, calc(100% - 32px));
  margin: 8px auto 12px;
  border-radius: 32px;
  box-shadow: var(--shadow-out);
}
.hero-slide { display: none; }
.hero-slide.is-on { display: block; }
.hero-photo,
.special-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}
.hero-slide.is-on .hero-photo {
  animation: heroZoom 12s ease-out both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7,18,40,0.88) 0%, rgba(11,29,62,0.58) 46%, rgba(11,29,62,0.16) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-cta { margin-top: 18px; }
.hero-slide.is-on .hero-copy h1 { animation: riseIn 0.85s var(--ease) both; }
.hero-slide.is-on .hero-copy .script { animation: riseIn 0.85s 0.14s var(--ease) both; }
.hero-slide.is-on .hero-cta { animation: riseIn 0.85s 0.26s var(--ease) both; }
.hero-slide.is-on .hero-feat:nth-child(1) { animation: riseIn 0.7s 0.4s var(--ease) both; }
.hero-slide.is-on .hero-feat:nth-child(2) { animation: riseIn 0.7s 0.5s var(--ease) both; }
.hero-slide.is-on .hero-feat:nth-child(3) { animation: riseIn 0.7s 0.6s var(--ease) both; }
.hero-slide.is-on .hero-feat:nth-child(4) { animation: riseIn 0.7s 0.7s var(--ease) both; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.special { position: relative; overflow: hidden; color: #fff; }
.special-inner { position: relative; z-index: 2; }

.hero-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.hero-dots button {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.28);
  box-shadow: inset 2px 2px 4px rgba(0,0,0,0.35), inset -1px -1px 3px rgba(255,255,255,0.2);
}
.hero-dots button.is-on {
  background: var(--gold);
  box-shadow: 2px 2px 6px rgba(0,0,0,0.35), -1px -1px 4px rgba(255,255,255,0.25);
}
.flash {
  margin: 12px auto; padding: 12px 16px; border-radius: 14px; font-weight: 700;
  box-shadow: var(--shadow-out-sm);
}
.flash.ok { background: var(--neu); color: #166534; }
.flash.err { background: var(--neu); color: #991b1b; }
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
.product-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  padding: 12px;
}
.gallery-main {
  aspect-ratio: 1 / 1;
  background: var(--neu);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-in);
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; background: var(--neu); }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumbs img {
  width: 72px; height: 72px; object-fit: contain; background: var(--neu);
  border-radius: 14px;
  box-shadow: var(--shadow-out-sm);
  padding: 4px;
}
.gallery-thumbs button:hover img { box-shadow: var(--shadow-in-sm); }
.specs-table { width: 100%; }
.specs-table td { padding: 10px 0; }
.bmc-pager { margin-top: 24px; }
.bmc-pager-nav { display: flex; flex-wrap: wrap; gap: 8px; }
.bmc-pager-nav a, .bmc-pager-nav span {
  min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--neu); box-shadow: var(--shadow-out-sm); font-weight: 800;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .hero-photo, .special-photo { object-position: center top; }
  .hero-slider, .special, .help-bar, .page-hero, .shop-poster { border-radius: 22px; }
}
