
:root {
  --brand: #00A3E0;
  --brand-dark: #0080B3;
  --brand-light: #33B5E8;
  --brand-rgb: 0, 163, 224;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-500: #737373;
  --gray-700: #404040;
  --gray-900: #171717;
  --danger: #DC2626;
  --success: #16A34A;

  --font: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);

  --header-h: 60px;
  --max-w: 1280px;
  --max-w-narrow: 800px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; border: none; outline: none; }
button { cursor: pointer; background: transparent; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }

body.locked { overflow: hidden; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: var(--max-w-narrow); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-brand { color: var(--brand); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-upper { text-transform: uppercase; }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12px; letter-spacing: .06em; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.opacity-70 { opacity: .7; }
.opacity-85 { opacity: .85; }
.hide-mobile { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  font-size: 14px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: -webkit-transform .15s ease, transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { -webkit-transform: translateY(-1px); transform: translateY(-1px); }
.btn:active { -webkit-transform: translateY(0); transform: translateY(0); }

.btn--primary { background: var(--brand); color: var(--white); }
.btn--primary:hover { background: var(--brand-dark); box-shadow: 0 6px 20px rgba(var(--brand-rgb), .35); }

.btn--white { background: var(--white); color: var(--brand); }
.btn--white:hover { box-shadow: 0 6px 20px rgba(255,255,255,.3); }

.btn--outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn--outline:hover { background: var(--brand); color: var(--white); }

.btn--outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn--outline-white:hover { background: rgba(255,255,255,.15); }

.btn--sm { padding: 10px 20px; font-size: 12px; }
.btn--lg { padding: 18px 36px; font-size: 15px; }
.btn--block { width: 100%; }
.btn--disabled { opacity: .5; pointer-events: none; }

.hdr {
  position: sticky; top: 0; z-index: 900;
  background: var(--brand);
  color: var(--white);
  height: var(--header-h);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hdr__bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-w); margin: 0 auto;
  padding: 0 20px; gap: 12px;
}
.hdr__logo { display: flex; align-items: center; }
.hdr__logo img { height: 24px; width: auto; }
.hdr__nav { display: none; align-items: center; gap: 4px; }
.hdr__nav a {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--radius-full);
  transition: background .2s;
}
.hdr__nav a:hover,
.hdr__nav a.active { background: rgba(255,255,255,.15); }
.hdr__right { display: flex; align-items: center; gap: 6px; }
.hdr__cta {
  display: none; padding: 9px 16px;
  background: var(--white); color: var(--brand);
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--radius-full); transition: -webkit-transform .15s, transform .15s;
}
.hdr__cta:hover { -webkit-transform: translateY(-1px); transform: translateY(-1px); }
.hdr__icon {
  width: 40px; height: 40px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; position: relative;
}
.hdr__icon:hover { background: rgba(255,255,255,.15); }
.hdr__icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.hdr__badge {
  position: absolute; top: 4px; right: 2px;
  min-width: 17px; height: 17px; padding: 0 5px;
  background: var(--white); color: var(--brand);
  font-size: 10px; font-weight: 800; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.hdr__badge:empty { display: none; }
.hdr__burger {
  width: 40px; height: 40px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: background .2s;
}
.hdr__burger:hover { background: rgba(255,255,255,.15); }
.hdr__burger svg { width: 24px; height: 24px; }

.drawer {
  position: fixed; inset: 0; z-index: 950;
  background: var(--brand); color: var(--white);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: -webkit-transform .35s cubic-bezier(.2,.7,.2,1), transform .35s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  padding: 18px 20px 32px;
}
.drawer.is-open { -webkit-transform: translateX(0); transform: translateX(0); }
.drawer__top { display: flex; align-items: center; justify-content: space-between; }
.drawer__top img { height: 22px; }
.drawer__close {
  width: 40px; height: 40px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.drawer__close svg { width: 24px; height: 24px; }
.drawer__nav { display: flex; flex-direction: column; gap: 2px; margin-top: 36px; }
.drawer__nav a {
  font-size: 28px; font-weight: 900; letter-spacing: -.01em; text-transform: uppercase;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.18);
}
.drawer__cta {
  margin-top: auto;
  background: var(--white); color: var(--brand);
  text-align: center; padding: 16px;
  border-radius: var(--radius-full);
  font-size: 14px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}

.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--brand); color: var(--white);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.age-gate.is-open { display: flex; }
.age-gate__card {
  width: 100%; max-width: 480px; text-align: center;
  -webkit-animation: ageIn .4s cubic-bezier(.2,.7,.2,1) both;
  animation: ageIn .4s cubic-bezier(.2,.7,.2,1) both;
}
@-webkit-keyframes ageIn { from { opacity: 0; -webkit-transform: translateY(16px); transform: translateY(16px); } }
@keyframes ageIn { from { opacity: 0; transform: translateY(16px); } }
.age-gate__logo { max-width: 240px; width: 60%; margin: 0 auto 24px; }
.age-gate__kicker {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  opacity: .9; margin-bottom: 8px;
}
.age-gate__h {
  font-size: clamp(26px, 6vw, 40px); font-weight: 900;
  text-transform: uppercase; margin-bottom: 12px;
}
.age-gate__p { font-size: 14px; line-height: 1.55; opacity: .92; max-width: 42ch; margin: 0 auto 24px; }
.age-gate__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.age-gate__fine { margin-top: 22px; font-size: 10px; letter-spacing: .05em; opacity: .7; text-transform: uppercase; }
.age-gate__denied { margin-top: 14px; font-size: 14px; opacity: 0; transition: opacity .3s; }
.age-gate__denied.show { opacity: 1; }

.hero {
  background: var(--brand); color: var(--white);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero__inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.hero__kicker {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  opacity: .9; margin-bottom: 12px;
}
.hero__h {
  font-size: clamp(40px, 10vw, 72px); font-weight: 900;
  letter-spacing: -.03em; line-height: .95;
  text-transform: uppercase; margin-bottom: 16px;
}
.hero__sub {
  font-size: 16px; line-height: 1.6; opacity: .92;
  max-width: 48ch; margin: 0 auto 28px;
}
.hero__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; padding: 8px 16px;
  background: rgba(255,255,255,.15); border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); -webkit-animation: pulse 2s infinite; animation: pulse 2s infinite; }
@-webkit-keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.section { padding: 60px 20px; }
.section--brand { background: var(--brand); color: var(--white); }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--gray-900); color: var(--white); }
.section__header {
  text-align: center; max-width: 640px; margin: 0 auto 40px;
}
.section__kicker {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--brand); font-weight: 700; margin-bottom: 8px;
}
.section--brand .section__kicker,
.section--dark .section__kicker { color: rgba(255,255,255,.7); }
.section__title {
  font-size: clamp(28px, 5vw, 44px); text-transform: uppercase;
  margin-bottom: 12px;
}
.section__desc { font-size: 16px; opacity: .8; max-width: 52ch; margin: 0 auto; }

.product-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px; max-width: var(--max-w); margin: 0 auto;
}
.card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: -webkit-transform .2s ease, transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { -webkit-transform: translateY(-4px); transform: translateY(-4px); box-shadow: var(--shadow); }
.card__img {
  aspect-ratio: 1; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__img-placeholder {
  font-size: 48px; color: var(--brand); opacity: .3;
  font-weight: 900; text-transform: uppercase;
}
.card__tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--brand); color: var(--white);
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-full);
}
.card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.card__name { font-size: 18px; font-weight: 900; text-transform: uppercase; margin-bottom: 4px; }
.card__type { font-size: 12px; color: var(--gray-500); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.card__profile { font-size: 13px; color: var(--gray-700); margin-bottom: 12px; }
.card__profile strong { color: var(--brand); font-weight: 800; }
.card__bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card__price { font-size: 22px; font-weight: 900; color: var(--gray-900); }
.card__price small { font-size: 12px; color: var(--gray-500); font-weight: 600; display: block; margin-top: 2px; }

.pdp { padding: 24px 20px 60px; }
.pdp__grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 32px; }
.pdp__gallery {
  aspect-ratio: 1; background: var(--gray-100);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pdp__gallery img { width: 100%; height: 100%; object-fit: cover; }
.pdp__info { display: flex; flex-direction: column; gap: 16px; }
.pdp__kicker { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--brand); font-weight: 700; }
.pdp__name { font-size: clamp(28px, 6vw, 42px); text-transform: uppercase; }
.pdp__tagline { font-size: 17px; color: var(--gray-700); }
.pdp__price-row { display: flex; align-items: baseline; gap: 12px; }
.pdp__price { font-size: 32px; font-weight: 900; }
.pdp__price-note { font-size: 13px; color: var(--gray-500); }
.pdp__desc { font-size: 15px; line-height: 1.7; color: var(--gray-700); }
.pdp__specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  background: var(--gray-50); padding: 20px; border-radius: var(--radius);
}
.pdp__spec-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--gray-500); font-weight: 700; }
.pdp__spec-value { font-size: 16px; font-weight: 800; color: var(--gray-900); }
.pdp__spec-value--brand { color: var(--brand); }
.pdp__actions { display: flex; flex-direction: column; gap: 12px; }
.pdp__qty {
  display: flex; align-items: center; gap: 0;
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; width: fit-content;
}
.pdp__qty button {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--gray-700);
  transition: background .15s;
}
.pdp__qty button:hover { background: var(--gray-100); }
.pdp__qty input {
  width: 52px; height: 44px; text-align: center;
  font-size: 16px; font-weight: 800; border-left: 2px solid var(--gray-200);
  border-right: 2px solid var(--gray-200); background: var(--white);
}
.pdp__trust { display: flex; flex-direction: column; gap: 10px; }
.pdp__trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--gray-700);
}
.pdp__trust-item svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }

.ship-bar {
  background: var(--gray-900); color: var(--white);
  text-align: center; padding: 10px 20px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.ship-bar .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--success); margin-right: 6px; animation: pulse 2s infinite; }

.discount-bar {
  background: var(--brand); color: var(--white);
  text-align: center; padding: 10px 20px;
  font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}

.cart-page { padding: 40px 20px 80px; }
.cart-page__inner { max-width: var(--max-w-narrow); margin: 0 auto; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty__h { font-size: 28px; text-transform: uppercase; margin-bottom: 12px; }
.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 16px;
  align-items: center; padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.cart-item__img {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  background: var(--gray-100); overflow: hidden;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name { font-size: 16px; font-weight: 800; text-transform: uppercase; }
.cart-item__meta { font-size: 13px; color: var(--gray-500); }
.cart-item__price { font-size: 18px; font-weight: 800; text-align: right; }
.cart-item__remove {
  font-size: 12px; color: var(--danger); font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; margin-top: 4px;
}
.cart-item__remove:hover { text-decoration: underline; }
.cart-summary {
  margin-top: 24px; padding: 24px;
  background: var(--gray-50); border-radius: var(--radius);
}
.cart-summary__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; padding: 6px 0;
}
.cart-summary__row--total {
  font-size: 20px; font-weight: 900; padding-top: 14px; margin-top: 8px;
  border-top: 2px solid var(--gray-200);
}
.cart-summary__discount { color: var(--success); font-weight: 700; }

.checkout { padding: 40px 20px 80px; }
.checkout__inner { max-width: var(--max-w-narrow); margin: 0 auto; }
.checkout__title { font-size: 28px; text-transform: uppercase; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-700); margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-size: 15px; background: var(--white);
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--brand); }
.form-input.error, .form-select.error { border-color: var(--danger); }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-textarea { min-height: 120px; resize: vertical; }

.confirm { padding: 60px 20px 80px; text-align: center; }
.confirm__icon { font-size: 48px; margin-bottom: 16px; }
.confirm__h { font-size: 32px; text-transform: uppercase; margin-bottom: 8px; }
.confirm__sub { font-size: 16px; color: var(--gray-700); max-width: 52ch; margin: 0 auto 24px; }
.confirm__id {
  display: inline-block; background: var(--gray-100); padding: 12px 24px;
  border-radius: var(--radius); font-family: var(--font-mono); font-size: 18px;
  font-weight: 800; letter-spacing: .06em; margin-bottom: 24px;
}

.trust-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  max-width: var(--max-w); margin: 0 auto;
}
.trust-card {
  text-align: center; padding: 28px 20px;
  background: rgba(255,255,255,.08); border-radius: var(--radius);
}
.section--gray .trust-card { background: var(--white); box-shadow: var(--shadow-sm); }
.trust-card__icon { margin: 0 auto 12px; width: 40px; height: 40px; color: var(--brand); }
.section--brand .trust-card__icon { color: var(--white); }
.trust-card__h { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.trust-card__p { font-size: 13px; opacity: .85; line-height: 1.5; }

.cta-banner {
  text-align: center; padding: 60px 20px;
  background: var(--brand); color: var(--white);
}
.cta-banner__h {
  font-size: clamp(28px, 5vw, 48px); font-weight: 900;
  text-transform: uppercase; margin-bottom: 12px;
}
.cta-banner__p { font-size: 16px; opacity: .9; max-width: 48ch; margin: 0 auto 24px; }

.deal-banner {
  text-align: center; padding: 48px 20px;
  background: var(--brand); color: var(--white);
  position: relative; overflow: hidden;
}
.deal-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.1) 0%, transparent 60%);
  pointer-events: none;
}
.deal-banner__inner {
  position: relative; z-index: 1; max-width: 600px; margin: 0 auto;
}
.deal-banner__kicker {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .2em; color: var(--white); margin-bottom: 8px;
}
.deal-banner__h {
  font-size: clamp(28px, 6vw, 48px); font-weight: 900;
  text-transform: uppercase; letter-spacing: .02em; margin-bottom: 12px; line-height: 1.1;
}
.deal-banner__sub {
  font-size: 16px; opacity: .85; max-width: 44ch; margin: 0 auto 24px; line-height: 1.5;
}
.deal-banner__note {
  font-size: 12px; opacity: .5; margin-top: 16px;
}

.ftr {
  background: var(--brand); color: var(--white); padding: 56px 20px 24px;
}
.ftr__inner { max-width: var(--max-w); margin: 0 auto; }
.ftr__newsletter { padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.2); margin-bottom: 40px; }
.ftr__news-h { font-size: clamp(24px, 4vw, 36px); font-weight: 900; text-transform: uppercase; margin-bottom: 6px; }
.ftr__news-p { font-size: 14px; opacity: .9; margin-bottom: 16px; }
.ftr__news-form { display: flex; gap: 8px; flex-wrap: wrap; }
.ftr__news-input {
  flex: 1; min-width: 200px; padding: 14px 16px;
  background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.3);
  color: var(--white); border-radius: var(--radius-full); font-size: 14px;
}
.ftr__news-input::placeholder { color: rgba(255,255,255,.65); }
.ftr__news-input:focus { border-color: var(--white); background: rgba(255,255,255,.18); }
.ftr__news-msg { font-size: 12px; opacity: .8; margin-top: 8px; width: 100%; }
.ftr__grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
.ftr__brand img { height: 28px; margin-bottom: 14px; }
.ftr__brand p { font-size: 13px; line-height: 1.6; opacity: .9; max-width: 36ch; margin-bottom: 16px; }
.ftr__social { display: flex; gap: 8px; }
.ftr__social a {
  width: 36px; height: 36px; border-radius: var(--radius-full);
  background: var(--white); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  transition: -webkit-transform .15s, transform .15s;
}
.ftr__social a:hover { -webkit-transform: translateY(-2px); transform: translateY(-2px); }
.ftr__social svg { width: 18px; height: 18px; }
.ftr__col h4 {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  opacity: .8; font-weight: 800; margin-bottom: 14px;
}
.ftr__col ul { display: flex; flex-direction: column; gap: 8px; }
.ftr__col a {
  font-size: 14px; font-weight: 600; opacity: .9;
  transition: opacity .15s, -webkit-transform .15s, transform .15s; display: inline-block;
}
.ftr__col a:hover { opacity: 1; -webkit-transform: translateX(2px); transform: translateX(2px); }
.ftr__disclaimer {
  border-top: 1px solid rgba(255,255,255,.2); padding-top: 20px; margin-top: 8px;
  font-size: 11px; line-height: 1.6; opacity: .8;
}
.ftr__disclaimer strong { font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.ftr__bottom {
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
  padding-top: 16px; font-size: 11px; letter-spacing: .06em; opacity: .75;
}
.ftr__bottom a { margin-right: 12px; }
.ftr__bottom a:hover { text-decoration: underline; }

.lab-card {
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.lab-card__name { font-size: 18px; font-weight: 900; text-transform: uppercase; }
.lab-card__meta { font-size: 13px; color: var(--gray-500); }
.lab-card__thca { font-size: 24px; font-weight: 900; color: var(--brand); }
.lab-card__link { font-size: 13px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .06em; }
.lab-card__link:hover { text-decoration: underline; }

.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; text-align: left; padding: 18px 0;
  font-size: 16px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--brand); flex-shrink: 0; transition: transform .2s; }
.faq-item.is-open .faq-q::after { content: '−'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a__inner { padding: 0 0 18px; font-size: 14px; line-height: 1.7; color: var(--gray-700); }

.breadcrumbs {
  padding: 14px 20px; font-size: 12px; color: var(--gray-500);
}
.breadcrumbs a { color: var(--brand); font-weight: 600; }
.breadcrumbs span { margin: 0 6px; }

.page-header {
  background: var(--brand); color: var(--white);
  padding: 48px 20px 36px; text-align: center;
}
.page-header__h {
  font-size: clamp(28px, 5vw, 42px); text-transform: uppercase;
}
.page-header__p { font-size: 15px; opacity: .9; max-width: 48ch; margin: 8px auto 0; }

.prose { max-width: var(--max-w-narrow); margin: 0 auto; }
.prose h2 { font-size: 24px; text-transform: uppercase; color: var(--brand); margin: 36px 0 12px; }
.prose h3 { font-size: 18px; margin: 24px 0 8px; }
.prose p { margin-bottom: 14px; color: var(--gray-700); font-size: 15px; line-height: 1.7; }
.prose ul { margin-bottom: 14px; padding-left: 20px; }
.prose li { margin-bottom: 6px; font-size: 15px; color: var(--gray-700); list-style: disc; }
.prose a { color: var(--brand); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose strong { font-weight: 800; color: var(--gray-900); }

.alert {
  padding: 14px 18px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; margin-bottom: 20px;
}
.alert--success { background: #DCFCE7; color: #166534; }
.alert--error { background: #FEE2E2; color: #991B1B; }
.alert--info { background: #DBEAFE; color: #1E40AF; }

.lifestyle-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
.content-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.barth-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.lifestyle-item {
  aspect-ratio: 1; background: var(--gray-100);
  border-radius: var(--radius-sm); overflow: hidden;
  position: relative;
}
.lifestyle-item img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,.6));
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity .3s;
}
.lifestyle-item:hover .lifestyle-item__overlay { opacity: 1; }
.lifestyle-item__text { color: var(--white); font-size: 14px; font-weight: 700; text-transform: uppercase; }

.not-found { text-align: center; padding: 100px 20px; }
.not-found__code { font-size: clamp(80px, 20vw, 160px); font-weight: 900; color: var(--brand); line-height: 1; }
.not-found__h { font-size: 24px; text-transform: uppercase; margin: 12px 0 8px; }
.not-found__p { font-size: 15px; color: var(--gray-500); margin-bottom: 24px; }

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .ftr__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .lifestyle-grid { grid-template-columns: repeat(3, 1fr); }
  .pdp__specs { grid-template-columns: repeat(3, 1fr); }
  .content-grid { grid-template-columns: 1fr 1fr; }
  .barth-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 639px) {
  .pdp__specs { grid-template-columns: 1fr; }
}
@media (max-width: 959px) {
  .pdp { padding-left: 0; padding-right: 0; }
  .pdp__gallery { border-radius: 0; }
  .pdp__info { padding: 0 20px; }
}

@media (min-width: 960px) {
  :root { --header-h: 66px; }
  .container { padding: 0 32px; }
  .section { padding: 80px 32px; }
  .hide-mobile { display: block; }
  .hide-desktop { display: none; }

  .hdr__nav { display: flex; }
  .hdr__cta { display: inline-flex; }
  .hdr__burger { display: none; }
  .hdr__logo img { height: 28px; }

  .hero { padding: 120px 32px 100px; }
  .hero__h { font-size: clamp(56px, 7vw, 84px); }

  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .product-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }

  .pdp__grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .pdp__gallery { aspect-ratio: auto; min-height: 480px; }
  .pdp { padding: 40px 32px 80px; }

  .ftr { padding: 64px 32px 28px; }
  .ftr__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; }
  .ftr__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1200px) {
  .hero__h { font-size: 84px; }
}

@media print {
  .hdr, .ftr, .age-gate, .drawer, .ship-bar, .discount-bar { display: none; }
  body { color: #000; }
  .section { padding: 20px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

.edu-img {
  width: 100%; border-radius: var(--radius-lg); overflow: hidden;
  margin: 24px 0;
}
.edu-img img { width: 100%; height: auto; display: block; }
.edu-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center; margin: 32px 0;
}
@media (min-width: 640px) {
  .edu-grid { grid-template-columns: 1fr 1fr; }
}
.edu-grid--reverse img { order: -1; }
@media (min-width: 640px) {
  .edu-grid--reverse img { order: 1; }
}
.edu-card {
  background: var(--gray-50); border-radius: var(--radius); padding: 24px;
  margin: 20px 0;
}
.edu-card h3 { color: var(--brand); margin-bottom: 8px; }
.edu-links {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px;
}

.pdp__size { margin-bottom: 8px; }
.pdp__size select {
  width: 100%; max-width: 200px; padding: 12px 16px;
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-size: 15px; font-weight: 700; background: var(--white);
  cursor: pointer; transition: border-color .2s;
}
.pdp__size select:focus { border-color: var(--brand); }
.pdp__badge {
  display: inline-block; padding: 6px 14px;
  background: var(--success); color: var(--white);
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius-full);
}
.pdp__notice {
  padding: 14px 18px; border-radius: var(--radius);
  background: #FEF3C7; color: #92400E;
  font-size: 13px; font-weight: 600; margin-top: 12px;
}
.bundle-items {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin: 16px 0;
}
.bundle-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-50); padding: 12px; border-radius: var(--radius-sm);
}
.bundle-item__img {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  overflow: hidden; flex-shrink: 0; background: var(--gray-100);
}
.bundle-item__img img { width: 100%; height: 100%; object-fit: cover; }
.bundle-item__name { font-size: 12px; font-weight: 700; text-transform: uppercase; }
.bundle-item__type { font-size: 10px; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; }
@media (min-width: 640px) {
  .bundle-items { grid-template-columns: repeat(4, 1fr); }
}
.pdp__highlights {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--gray-50); padding: 20px; border-radius: var(--radius);
  margin: 16px 0;
}
.pdp__highlight {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray-700);
}
.pdp__highlight-icon { color: var(--brand); font-size: 16px; flex-shrink: 0; margin-top: 1px; }

@supports not (gap: 1px) {
  .btn { margin-right: 8px; }
  .hdr__nav { margin-right: 4px; }
  .pdp__qty { margin-bottom: 12px; }
}
