:root {
  --navy: #0b1d3e;
  --navy-2: #122a56;
  --blue: #0056b3;
  --sky: #0284c7;
  --cyan: #06b6d4;
  --red: #e31e24;
  --gold: #f5c518;
  --ice: #e8f4fc;
  --bg: #f3f8fd;
  --fg: #0f172a;
  --muted: #5b6b82;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.72);
  --ring: rgba(2, 132, 199, 0.28);
  --shadow: 0 12px 40px rgba(11, 29, 62, 0.12);
  --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: #fff;
  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 {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.85);
}
.glass-strong {
  background: var(--glass-strong);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.8);
}

.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: linear-gradient(90deg, #071428 0%, var(--navy) 40%, #12305f 100%);
  color: #dbe8f8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.announce-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 6px 0;
}
.announce a, .announce span { display: inline-flex; align-items: center; gap: 8px; }
.announce .center { justify-self: center; color: #fff; text-transform: uppercase; font-size: 12px; letter-spacing: 0.12em; }
.announce .right { justify-self: end; }
.announce .gold { color: var(--gold); }
.announce .dot { opacity: 0.45; }
.wa { color: #25d366; }

/* Header — scrolls with the page, never sticky */
.site-head {
  position: static;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid rgba(11,29,62,0.08);
}
.brand-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
}
.logo {
  display: flex; align-items: center; gap: 10px; min-width: 220px;
}
.logo img { width: 72px; height: 72px; object-fit: contain; }
.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: 1.5px solid rgba(11,29,62,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  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(--blue); color: #fff; padding: 0 18px;
  display: grid; place-items: center; min-width: 52px;
  transition: background 200ms var(--ease);
}
.search button:hover { background: var(--navy); }
.search input:focus { outline: none; }
.search:focus-within { border-color: var(--sky); box-shadow: 0 0 0 4px var(--ring); }

.head-actions { display: flex; align-items: center; gap: 6px; }
.head-link, .icon-btn {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 8px 10px; border-radius: 12px;
  color: var(--navy); font-weight: 700; font-size: 13px;
  transition: background 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 { background: rgba(2,132,199,0.08); }
.icon-btn { position: relative; }
.badge {
  position: absolute; top: 4px; 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;
}

/* Nav */
.main-nav {
  display: flex; align-items: center; gap: 8px;
  padding: 0 0 10px;
}
.cat-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: #fff; font-weight: 800; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 12px 16px; border-radius: 10px; min-height: 44px;
  position: relative;
}
.cat-btn:hover { background: var(--navy); }
.cat-menu {
  position: absolute; top: calc(100% + 8px); left: 0; width: 320px;
  padding: 12px; border-radius: 16px; display: none; z-index: 40;
}
.cat-wrap { position: relative; }
.cat-wrap:hover .cat-menu, .cat-wrap:focus-within .cat-menu { display: block; }
.cat-menu a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px; border-radius: 10px; font-weight: 700; color: var(--navy);
}
.cat-menu a:hover { background: rgba(2,132,199,0.1); }
.cat-menu .sizes { font-size: 11px; color: var(--muted); font-weight: 600; }
.nav-links { display: flex; flex-wrap: wrap; gap: 2px; margin-left: 8px; }
.nav-links a {
  padding: 10px 12px; min-height: 44px; display: inline-flex; align-items: center;
  font-weight: 800; font-size: 13px; letter-spacing: 0.04em; color: var(--navy);
  border-radius: 10px; text-transform: uppercase;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--blue); background: rgba(2,132,199,0.08); }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative; isolation: isolate;
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(7,18,40,0.92) 0%, rgba(11,29,62,0.72) 42%, rgba(11,29,62,0.28) 100%),
    url("/images/hero.webp") right center / cover no-repeat,
    var(--navy);
  color: #fff;
  overflow: hidden;
}
.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: 560px; padding: 48px 0 36px; position: relative; z-index: 1;
}
.hero h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 800; max-width: 14ch; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: #fff; display: block; font-size: 1.08em; }
.hero .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: 10px 12px; border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  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: 999px;
  font-weight: 800; letter-spacing: 0.02em; transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.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: var(--gold); color: var(--navy); box-shadow: 0 8px 24px rgba(245,197,24,0.35); }
.btn-gold:hover { background: #ffd84a; }
.btn-white { background: #fff; color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-red { background: var(--red); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-order {
  background: #fff; color: var(--navy); border-radius: 999px; min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-blue { background: var(--blue); color: #fff; }
.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: 1px; flex: 1; background: linear-gradient(90deg, transparent, rgba(11,29,62,0.18), transparent); }

/* Categories */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card {
  border-radius: 22px; overflow: hidden; padding: 0;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(11,29,62,0.16); }
.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: 40px;
  background: rgba(241,247,253,0.9); border: 1px solid rgba(11,29,62,0.08);
  border-radius: 10px; font-weight: 800; font-size: 13px; color: var(--navy);
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}
.size-chip:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Brands */
.brands { position: relative; }
.brand-track-wrap { overflow: hidden; }
.brand-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 4px 16px; scrollbar-width: none;
}
.brand-track::-webkit-scrollbar { display: none; }
.brand-card {
  flex: 0 0 230px; scroll-snap-align: start;
  border-radius: 16px; padding: 18px 16px 16px; text-align: center;
  min-height: 168px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,0.82);
  transition: transform 200ms var(--ease);
}
.brand-card:hover { transform: translateY(-3px); }
.brand-card img { width: 170px; height: 72px; object-fit: contain; background: #fff; border-radius: 8px; padding: 6px; }
.brand-card h3 { font-size: 15px; color: var(--navy); }
.brand-card p { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.carousel-btn {
  position: absolute; top: 50%; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; z-index: 2;
  background: rgba(255,255,255,0.85); border: 1px solid rgba(11,29,62,0.1);
  box-shadow: var(--shadow); color: var(--navy);
}
.carousel-btn.prev { left: -8px; }
.carousel-btn.next { right: -8px; }

/* 20L banner */
.special {
  background:
    linear-gradient(90deg, rgba(7,18,40,0.92) 0%, rgba(11,29,62,0.7) 50%, rgba(11,29,62,0.35) 100%),
    url("/images/banner-20l.webp") right center / cover no-repeat,
    var(--navy);
  color: #fff; border-radius: 0;
}
.special-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
  padding: 64px 0;
}
.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: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}

/* Why */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.why-card {
  text-align: center; padding: 28px 16px; border-radius: 18px;
}
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%;
  display: grid; place-items: center; color: var(--blue);
  border: 1.5px solid rgba(0,86,179,0.25); background: rgba(255,255,255,0.5);
}
.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: 24px; overflow: hidden; min-height: 360px;
  background: #0b1d3e;
}
.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 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: linear-gradient(90deg, var(--navy), #16356e);
  color: #fff;
}
.help-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; flex-wrap: wrap;
}
.help-left { display: flex; align-items: center; gap: 14px; font-weight: 800; letter-spacing: 0.04em; }
.help-left svg { color: var(--gold); }
.help-phone {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--navy); font-weight: 800;
  padding: 10px 18px; border-radius: 999px; min-height: 48px;
}

/* Footer */
.site-foot {
  background: #fff;
  color: #334155;
  padding: 56px 0 0;
  border-top: 1px solid rgba(11,29,62,0.08);
}
.foot-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr 0.9fr 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; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); border: 0; color: #fff;
}
.socials a:hover { background: var(--blue); }
.site-foot .inquiry input, .site-foot .inquiry select, .site-foot .inquiry textarea {
  width: 100%; background: #f4f8fc; border: 1px solid rgba(11,29,62,0.12);
  color: var(--navy); border-radius: 8px; padding: 11px 12px; margin-bottom: 10px; min-height: 44px;
}
.site-foot .inquiry textarea { min-height: 84px; resize: vertical; }
.site-foot .inquiry option { color: var(--navy); }
.site-foot .inquiry .btn { width: 100%; border-radius: 8px; }
.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(--navy); color: #c9d7ea;
  padding: 16px 0;
  display: block;
}
.foot-copy .wrap {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px;
}

/* Shop */
.page-hero {
  background: linear-gradient(90deg, var(--navy), #16356e);
  color: #fff; padding: 36px 0;
}
.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: 8px; margin: 24px 0; }
.filter-chip {
  padding: 8px 14px; min-height: 40px; border-radius: 999px;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(11,29,62,0.1);
  font-weight: 800; font-size: 13px; color: var(--navy);
}
.filter-chip.is-active, .filter-chip:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
.product-visual {
  height: 160px; display: grid; place-items: center; position: relative;
  background: radial-gradient(circle at 50% 80%, rgba(255,255,255,0.8), transparent 55%);
}
.bottle { width: 46px; height: 110px; border-radius: 10px 10px 8px 8px; position: relative; box-shadow: 0 12px 24px rgba(11,29,62,0.18); }
.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 16px 16px; }
.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; }
.product-card .meta { font-size: 13px; color: var(--muted); }
.price-row { display: flex; align-items: baseline; gap: 8px; margin: 8px 0 12px; }
.price { font-size: 20px; font-weight: 800; color: var(--navy); }
.mrp { font-size: 13px; color: #94a3b8; text-decoration: line-through; }
.add-btn { width: 100%; border-radius: 12px; }

.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: 1px solid rgba(11,29,62,0.08); }
.qty { display: inline-flex; align-items: center; border: 1px solid rgba(11,29,62,0.12); border-radius: 10px; overflow: hidden; }
.qty button { width: 36px; height: 36px; }
.qty span { min-width: 28px; text-align: center; font-weight: 800; }
.panel { border-radius: 20px; 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 input, .field select, .field textarea {
  width: 100%; min-height: 46px; border-radius: 12px; border: 1px solid rgba(11,29,62,0.14);
  padding: 10px 12px; background: rgba(255,255,255,0.75); color: var(--fg);
}

/* Toast + float */
.toast {
  position: fixed; bottom: 88px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 999px;
  opacity: 0; pointer-events: none; transition: 220ms var(--ease); z-index: 80; font-weight: 700;
}
.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: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
}
.search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  border-radius: 16px; max-height: 320px; overflow: auto; display: none; z-index: 40;
}
.search-wrap { position: relative; }
.search-results a { display: flex; justify-content: space-between; padding: 10px 14px; font-weight: 700; }
.search-results a:hover { background: rgba(2,132,199,0.08); }

.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: 10px; }
.faq details {
  border-radius: 14px; padding: 14px 18px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(11,29,62,0.08);
}
.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; }

@media (max-width: 1100px) {
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .announce-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .announce .right, .announce .center { justify-self: center; }
  .brand-bar { grid-template-columns: auto auto; }
  .search { grid-column: 1 / -1; order: 3; max-width: none; }
  .hero-inner, .about-grid, .special-inner, .auth-grid { grid-template-columns: 1fr; }
  .hero { min-height: 0; background-position: center top; }
  .hero-inner { min-height: 0; padding: 36px 0; }
  .hero-feats { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0;
    top: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
    padding: 12px; border-bottom: 1px solid rgba(11,29,62,0.08); z-index: 30;
  }
  .main-nav { position: relative; }
  .menu-toggle { display: inline-flex; margin-left: auto; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .logo-word small { display: none; }
  .head-link span { display: none; }
  .why-grid, .stats, .product-grid, .foot-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .sizes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* 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; }
.hero-slide {
  display: none;
  min-height: 560px;
  color: #fff;
  background-color: var(--navy);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.hero-slide.is-on { display: block; }
.hero-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.hero-dots button.is-on { background: var(--gold); }
.flash { margin: 12px auto; padding: 12px 16px; border-radius: 12px; font-weight: 700; }
.flash.ok { background: #ecfdf5; color: #166534; }
.flash.err { background: #fef2f2; color: #991b1b; }
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
.product-visual img { width: 100%; height: 160px; object-fit: cover; }
.gallery-main img { width: 100%; max-height: 420px; object-fit: contain; background: #f3f8fd; border-radius: 16px; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.gallery-thumbs img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; }
.specs-table { width: 100%; }
.specs-table td { padding: 8px 0; border-bottom: 1px solid rgba(11,29,62,0.08); }
.bmc-pager { margin-top: 24px; }
.bmc-pager-nav { display: flex; flex-wrap: wrap; gap: 8px; }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .hero-slide { min-height: 0; background-position: center top; }
}
