:root {
  --container: 1240px;
  --gutter: 20px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  opacity: .85;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 56px 0;
}

.section--tight {
  padding: 32px 0;
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: .4em;
}

.section__subtitle {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--accent {
  background: var(--color-accent);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}

.btn--lg {
  padding: 16px 34px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
}

.header__logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  white-space: nowrap;
}

.header__logo img {
  max-height: 44px;
  width: auto;
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--color-text);
  font-weight: 500;
  font-size: .95rem;
}

.header__nav a:hover {
  background: var(--color-primary-soft);
  opacity: 1;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--color-text);
  position: relative;
}

.header__icon:hover {
  background: var(--color-primary-soft);
  opacity: 1;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.header__burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-bg);
  padding: 24px;
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #081c33 0%, var(--color-primary) 55%, #0d5ea8 100%);
  color: #fff;
}

.hero--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,20,40,.78) 0%, rgba(5,20,40,.45) 55%, rgba(5,20,40,.25) 100%);
  z-index: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 96px 0;
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 700;
  color: #9ec5ff;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero__text {
  font-size: 1.1rem;
  opacity: .92;
  margin-bottom: 28px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__badges {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  opacity: .92;
}

.hero__badge svg {
  color: #7cc4ff;
  flex-shrink: 0;
}

/* Feature/trust bar */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature__title {
  font-weight: 700;
  margin-bottom: 2px;
}

.feature__text {
  font-size: .88rem;
  color: var(--color-text-light);
}

/* Fitment checker */
.fitment {
  background: var(--color-primary-soft);
  border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
  border-radius: var(--radius);
  padding: 40px;
}

.fitment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 14px;
  margin-bottom: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: .85rem;
  font-weight: 600;
}

.field select,
.field input {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  font: inherit;
  color: var(--color-text);
}

.fitment__note {
  font-size: .85rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(var(--products-per-row, 4), 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg);
  transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card__media {
  aspect-ratio: 1 / 1;
  background: #f4f6f8;
  position: relative;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card__title {
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
  flex: 1;
}

.product-card__fit {
  font-size: .78rem;
  color: var(--color-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-card__price {
  font-weight: 700;
  font-size: 1.05rem;
}

.product-card__price s {
  color: var(--color-text-light);
  font-weight: 400;
  font-size: .88rem;
  margin-left: 6px;
}

/* Collection banner */
.collection-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.collection-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.collection-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.72) 100%);
}

.collection-banner__content {
  position: relative;
  z-index: 1;
  padding: 36px;
}

.collection-banner__title {
  font-size: 1.9rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.collection-banner__desc {
  opacity: .9;
  max-width: 520px;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  transition: transform .18s ease, box-shadow .18s ease;
  display: block;
  color: var(--color-text);
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}

.video-card__media {
  aspect-ratio: 16 / 9;
  background: #0f172a;
  position: relative;
}

.video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card__play span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.video-card__body {
  padding: 16px;
}

.video-card__title {
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.4;
}

.video-card__meta {
  font-size: .82rem;
  color: var(--color-text-light);
}

/* Social strip */
.social-strip {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0d5ea8 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.social-strip__title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.social-strip__text {
  opacity: .9;
  max-width: 560px;
  margin: 0 auto 24px;
}

.social-strip__links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .15s ease;
}

.social-btn:hover {
  background: rgba(255,255,255,.24);
  opacity: 1;
}

/* Product page */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
}

.product__gallery {
  position: sticky;
  top: 96px;
  align-self: start;
}

.product__main-image {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f4f6f8;
  border: 1px solid var(--color-border);
}

.product__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.product__thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: #f4f6f8;
}

.product__thumb.is-active {
  border-color: var(--color-primary);
}

.product__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.product__sku {
  color: var(--color-text-light);
  font-size: .88rem;
  margin-bottom: 14px;
}

.product__price {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.product__price s {
  color: var(--color-text-light);
  font-weight: 400;
  font-size: 1.05rem;
}

.product__fit-banner {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--color-primary-soft);
  border: 1px solid color-mix(in srgb, var(--color-primary) 16%, transparent);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 22px;
  font-size: .92rem;
}

.product__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.product__options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.option-row label {
  font-size: .88rem;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.option-row select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font: inherit;
  background: var(--color-bg);
}

.product__qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product__qty input {
  width: 76px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font: inherit;
  text-align: center;
}

.product__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  font-size: .9rem;
}

.product__meta-item {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--color-text-light);
}

.product__description {
  margin-top: 32px;
  line-height: 1.75;
}

.product__description h2, .product__description h3 {
  margin-top: 1.2em;
}

.product__description ul {
  padding-left: 20px;
}

/* Collection page */
.collection-header {
  padding: 44px 0 8px;
}

.collection-header__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.collection-count {
  color: var(--color-text-light);
  font-size: .9rem;
}

.collection-sort select {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  font: inherit;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a, .pagination span {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  padding: 0 10px;
  color: var(--color-text);
}

.pagination .current {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--color-text-light);
}

/* Cart page */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 48px 0;
}

.cart-lines {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.cart-line {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}

.cart-line:last-child {
  border-bottom: 0;
}

.cart-line__media {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f4f6f8;
}

.cart-line__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-line__title {
  font-weight: 600;
  margin-bottom: 2px;
}

.cart-line__meta {
  font-size: .84rem;
  color: var(--color-text-light);
}

.cart-line__remove {
  background: none;
  border: 0;
  color: var(--color-text-light);
  text-decoration: underline;
  cursor: pointer;
  font-size: .85rem;
  padding: 0;
  margin-top: 6px;
}

.cart-line__qty input {
  width: 64px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font: inherit;
  text-align: center;
}

.cart-summary {
  align-self: start;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 96px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: .95rem;
}

.cart-summary__row--total {
  font-size: 1.2rem;
  font-weight: 800;
  border-top: 1px solid var(--color-border);
  margin-top: 10px;
  padding-top: 14px;
}

/* Footer */
.footer {
  background: #0c1524;
  color: #cbd5e1;
  margin-top: 64px;
  padding: 56px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.footer__desc {
  font-size: .92rem;
  opacity: .78;
  margin-bottom: 18px;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.footer__social a:hover {
  background: rgba(255,255,255,.18);
  opacity: 1;
}

.footer h4 {
  color: #fff;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: #cbd5e1;
  font-size: .92rem;
}

.footer a:hover {
  color: #fff;
  opacity: 1;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  font-size: .84rem;
  opacity: .7;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: var(--color-bg);
  z-index: 300;
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 32px rgba(0,0,0,.16);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__title {
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-drawer__close {
  background: none;
  border: 0;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--color-text);
  padding: 4px 8px;
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

.cart-drawer__line {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-drawer__line-title {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.cart-drawer__line-meta {
  font-size: .8rem;
  color: var(--color-text-light);
}

.cart-drawer__foot {
  border-top: 1px solid var(--color-border);
  padding: 18px 20px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.85);
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__inner {
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Forms */
.rte {
  line-height: 1.75;
}

.rte h2, .rte h3 {
  margin-top: 1.2em;
}

.rte ul, .rte ol {
  padding-left: 22px;
}

.rte table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

.rte table th, .rte table td {
  border: 1px solid var(--color-border);
  padding: 10px 12px;
  text-align: left;
}

.rte img {
  border-radius: var(--radius);
}

.newsletter {
  display: flex;
  gap: 10px;
  max-width: 420px;
}

.newsletter input {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font: inherit;
  background: var(--color-bg);
}

.form-status {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: .92rem;
}

.form-status--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Page */
.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 0;
}

.page-content h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.page-content img {
  border-radius: var(--radius);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  padding: 48px 0;
}

.contact-info h1 {
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--color-text-light);
}

.contact-form .field {
  margin-bottom: 16px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Search */
.search-bar {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 0 8px;
}

.search-bar form {
  display: flex;
  gap: 10px;
}

.search-bar input {
  flex: 1;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font: inherit;
}

/* Password */
.password-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #081c33, var(--color-primary));
  color: #fff;
}

.password-logo {
  font-size: 2rem;
  font-weight: 800;
}

.password-tagline {
  opacity: .85;
  margin-bottom: 28px;
}

.password-form {
  display: flex;
  gap: 10px;
}

.password-form input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 0;
  font: inherit;
}

/* Video hero fallback */
.hero--video .hero__media video {
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__burger {
    display: inline-flex;
  }

  .section {
    padding: 40px 0;
  }

  .hero__inner {
    padding: 64px 0;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .fitment__grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .product {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 0;
  }

  .product__gallery {
    position: static;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .social-strip {
    padding: 32px 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .product__meta {
    grid-template-columns: 1fr;
  }
}
