:root {
  --bg: #020713;
  --bg-2: #06101e;
  --ink: #ffffff;
  --muted: #aebbd0;
  --faint: #6f7f98;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(8, 17, 31, 0.76);
  --panel-2: rgba(10, 20, 36, 0.9);
  --blue: #19a8ff;
  --blue-2: #27ddff;
  --red: #ff2d43;
  --red-2: #d4142a;
  --gold: #f4c071;
  --max: 1200px;
  --radius: 8px;
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 58%, rgba(0, 112, 255, 0.17), transparent 28rem),
    radial-gradient(circle at 100% 60%, rgba(255, 45, 67, 0.13), transparent 26rem),
    linear-gradient(180deg, #030711 0%, #051120 50%, #030711 100%);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  position: fixed;
  z-index: -4;
  content: "";
  pointer-events: none;
}

.page-shell::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 118, 255, 0.08), transparent 32%, rgba(255, 45, 67, 0.08)),
    linear-gradient(180deg, rgba(3, 7, 17, 0), #030711 78%);
}

.page-shell::after {
  left: -12rem;
  bottom: 12rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.28), transparent 68%);
  filter: blur(8px);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 38px));
  min-height: 70px;
  margin: 12px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(3, 7, 17, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(25, 168, 255, 0.28);
  background: rgba(3, 7, 17, 0.92);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-crest {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 42px;
  color: #fff;
}

.brand-crest svg {
  width: 34px;
  height: 42px;
  fill: rgba(8, 42, 110, 0.98);
  stroke: currentColor;
  stroke-width: 1.4;
  filter: drop-shadow(0 0 12px rgba(25, 168, 255, 0.35));
}

.brand-crest svg path:nth-child(2) {
  fill: var(--red);
  stroke: none;
}

.brand-crest svg path:nth-child(3) {
  fill: #fff;
  stroke: none;
}

.brand-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 900;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
}

.cart-btn,
.heart-btn,
.icon-btn,
.expand-btn {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.cart-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.cart-btn svg,
.heart-btn svg,
.icon-btn svg,
.expand-btn svg,
.benefit-bar svg,
.hero-trust svg,
.care-grid svg,
.btn svg,
.video-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.btn,
.thumb,
.product-option,
.size-option,
.cart-btn,
.heart-btn,
.icon-btn,
.expand-btn {
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease, background 170ms ease;
}

.btn:hover,
.cart-btn:hover,
.icon-btn:hover,
.expand-btn:hover {
  transform: translateY(-2px);
}

.btn:active,
.cart-btn:active,
.icon-btn:active,
.thumb:active,
.product-option:active,
.size-option:active {
  transform: translateY(1px) scale(0.99);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.btn-primary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 18px 48px rgba(255, 45, 67, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 26px 70px rgba(255, 45, 67, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-small {
  min-height: 52px;
}

.btn-full {
  width: 100%;
}

.ripple {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 660ms ease-out;
}

.hero {
  position: relative;
  min-height: 720px;
  margin-top: -82px;
  padding: 150px 0 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 168, 255, 0.16), transparent 30rem),
    #030711;
}

.hero-bg .hero-video {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: transform;
}

.hero-video-fill {
  inset: -12%;
  width: 124%;
  height: 124%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.58;
  filter: blur(12px) saturate(1.26) contrast(1.12);
  transform: scale(1.03);
}

.hero-video-main {
  top: min(46%, 360px);
  left: 50%;
  width: min(clamp(560px, 88vw, 1180px), calc(100% + 160px));
  height: auto;
  object-fit: contain;
  object-position: center top;
  filter: saturate(1.16) contrast(1.1) drop-shadow(0 30px 80px rgba(0, 0, 0, 0.44));
  transform: translate(-50%, -50%);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 7, 17, 0.96) 0%, rgba(3, 7, 17, 0.48) 42%, rgba(3, 7, 17, 0.12) 58%, rgba(3, 7, 17, 0.86) 100%),
    linear-gradient(180deg, rgba(3, 7, 17, 0.03) 0%, rgba(3, 7, 17, 0.2) 52%, rgba(3, 7, 17, 0.86) 86%, #030711 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 160px;
  content: "";
  background: linear-gradient(180deg, transparent, #030711);
}

.confetti {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255, 193, 91, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 31% 10%, rgba(255, 45, 67, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 15%, rgba(25, 168, 255, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 30%, rgba(255, 193, 91, 0.7) 0 2px, transparent 3px);
  background-size: 220px 180px;
  animation: confetti-drift 14s linear infinite;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 620px) 430px;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  width: min(var(--max), calc(100% - 70px));
  margin: 0 auto;
}

.hero-copy h1 {
  margin: 0;
  font-family: Inter, Manrope, sans-serif;
  font-size: clamp(58px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span:last-child {
  color: transparent;
  background: linear-gradient(100deg, #1aa7ff 0%, #d85cff 42%, #ff2d43 82%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy p {
  max-width: 500px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(6, 14, 26, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(16px);
}

.hero-trust svg {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.video-link span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

.hero-product {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0 0, rgba(25, 168, 255, 0.16), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(255, 45, 67, 0.22), transparent 34%),
    rgba(5, 13, 26, 0.82);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(25, 168, 255, 0.12),
    0 0 48px rgba(25, 168, 255, 0.18),
    0 30px 70px rgba(255, 45, 67, 0.12);
  backdrop-filter: blur(22px);
  transform-style: preserve-3d;
}

.hero-product::after {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 45%;
  height: 42%;
  border-right: 2px solid rgba(255, 45, 67, 0.95);
  border-bottom: 2px solid rgba(255, 45, 67, 0.95);
  border-radius: 0 0 var(--radius) 0;
  content: "";
  filter: drop-shadow(0 0 14px rgba(255, 45, 67, 0.9));
  pointer-events: none;
}

.hero-card-top,
.hero-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-card-top span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(25, 168, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(7, 21, 42, 0.82);
  font-size: 12px;
  font-weight: 850;
}

.heart-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.heart-btn svg {
  fill: currentColor;
  stroke-width: 0;
}

.hero-image-wrap {
  display: grid;
  place-items: center;
  min-height: 372px;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-image-wrap img {
  width: 100%;
  height: 372px;
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.42));
  transition: transform 250ms ease, opacity 160ms ease;
}

.hero-product:hover .hero-image-wrap img {
  transform: translateY(-4px) scale(1.025);
}

.hero-product-meta span {
  display: block;
  font-size: 16px;
  font-weight: 850;
}

.hero-product-meta strong {
  display: block;
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
}

.hero-product-meta strong b {
  font-size: 25px;
}

.hero-arrows {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
}

.icon-btn {
  width: 48px;
  height: 44px;
  border: 0;
  border-radius: 0;
}

.icon-btn.is-hot {
  background: linear-gradient(135deg, rgba(255, 45, 67, 0.35), rgba(255, 45, 67, 0.95));
  box-shadow: 0 0 28px rgba(255, 45, 67, 0.55);
}

.benefit-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 9, 18, 0.78);
  backdrop-filter: blur(20px);
}

.benefit-bar div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 16px;
  min-height: 104px;
  padding: 26px max(22px, calc((100vw - var(--max)) / 2 + 12px));
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-bar div:not(:first-child) {
  padding-left: 44px;
}

.benefit-bar svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.benefit-bar span {
  font-size: 14px;
  font-weight: 900;
}

.benefit-bar small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.custom-section,
.care-section {
  width: min(var(--max), calc(100% - 70px));
  margin: 0 auto;
  padding: 64px 0 0;
}

.custom-heading {
  margin-bottom: 28px;
}

.custom-heading h2,
.care-section h2 {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.05;
}

.custom-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.custom-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 490px;
  gap: 38px;
  align-items: start;
}

.preview-panel,
.order-panel,
.care-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(5, 13, 26, 0.72);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.preview-panel {
  position: relative;
  min-height: 820px;
  padding: 28px 28px 24px 130px;
  transform-style: preserve-3d;
}

.expand-btn {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 5;
  width: 44px;
  height: 44px;
}

.vertical-thumbs {
  position: absolute;
  left: 26px;
  top: 136px;
  display: grid;
  gap: 22px;
  width: 78px;
}

.thumb {
  display: grid;
  place-items: center;
  width: 78px;
  height: 106px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  padding: 8px;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.thumb img {
  width: 100%;
  height: 86px;
  border-radius: 6px;
  object-fit: cover;
  background: #eef3f8;
}

.thumb.is-active,
.thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 168, 255, 0.9);
  background: rgba(25, 168, 255, 0.12);
  box-shadow: 0 0 28px rgba(25, 168, 255, 0.25);
}

.jersey-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
  overflow: hidden;
}

.jersey-stage::before {
  position: absolute;
  inset: 8% 4%;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, rgba(25, 168, 255, 0.18), transparent 34%),
    radial-gradient(circle at 50% 72%, rgba(255, 45, 67, 0.12), transparent 36%);
  filter: blur(18px);
  pointer-events: none;
}

.jersey-stage img {
  position: relative;
  width: min(100%, 620px);
  height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.34));
}

.stage-print {
  position: absolute;
  top: 150px;
  left: 50%;
  display: grid;
  place-items: center;
  width: min(46%, 250px);
  color: #fff;
  text-align: center;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.32),
    0 0 18px rgba(255, 255, 255, 0.22);
  transform: translateX(-50%);
  pointer-events: none;
}

.stage-print span {
  font-family: Inter, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1;
}

.stage-print strong {
  font-family: Inter, sans-serif;
  font-size: clamp(105px, 14vw, 164px);
  font-weight: 900;
  line-height: 0.86;
  -webkit-text-stroke: 2px #fff;
  color: rgba(255, 255, 255, 0.08);
  text-shadow:
    3px 0 0 #d61f34,
    -3px 0 0 #1aa7ff,
    0 0 24px rgba(255, 255, 255, 0.18);
}

.stage-print.is-hidden {
  opacity: 0;
}

.view-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: -4px;
}

.view-toggle button {
  min-width: 116px;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 850;
}

.view-toggle button:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.view-toggle button:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.view-toggle .is-selected,
.view-toggle button:hover {
  border-color: rgba(25, 168, 255, 0.78);
  background: rgba(25, 168, 255, 0.14);
  box-shadow: inset 0 0 22px rgba(25, 168, 255, 0.12);
}

.preview-panel p {
  margin: 24px 0 0;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.order-panel {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
  padding: 28px;
}

.order-panel h3 {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 20px;
  font-weight: 900;
}

.product-choice {
  display: grid;
  gap: 12px;
}

.product-option {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  padding: 9px 12px;
  text-align: left;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.product-option img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  background: #fff;
}

.product-option span {
  font-size: 13px;
  font-weight: 900;
}

.product-option strong {
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  font-weight: 900;
}

.product-option.is-selected {
  border-color: rgba(25, 168, 255, 0.95);
  background: rgba(25, 168, 255, 0.12);
  box-shadow: 0 0 28px rgba(25, 168, 255, 0.16);
}

.product-option.is-selected strong {
  color: var(--blue);
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.field-group span em,
.field-group span b {
  color: var(--faint);
  font-style: normal;
  font-weight: 750;
}

.field-group input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  outline: none;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.field-group input[data-name-input] {
  text-transform: uppercase;
}

.field-group input:focus {
  border-color: rgba(25, 168, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 3px rgba(25, 168, 255, 0.12);
}

.field-group input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.size-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.size-option {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 900;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.size-option:hover,
.size-option.is-selected {
  transform: translateY(-1px);
  border-color: rgba(25, 168, 255, 0.9);
  background: rgba(25, 168, 255, 0.12);
  box-shadow: 0 0 20px rgba(25, 168, 255, 0.13);
}

.summary-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.summary-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
}

.summary-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.summary-row strong {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 750;
}

.summary-row b {
  color: #fff;
  font-weight: 900;
  text-align: right;
}

.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.summary-total span {
  font-size: 22px;
  font-weight: 900;
}

.summary-total strong {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.summary-total small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.form-note {
  margin: 0;
  color: var(--faint);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.care-section {
  position: relative;
  padding-bottom: 56px;
}

.care-section::before,
.care-section::after {
  position: absolute;
  bottom: 0;
  width: 220px;
  height: 220px;
  content: "";
  opacity: 0.45;
  pointer-events: none;
}

.care-section::before {
  left: -90px;
  background: radial-gradient(circle at bottom left, rgba(25, 168, 255, 0.32), transparent 68%);
}

.care-section::after {
  right: -90px;
  background: radial-gradient(circle at bottom right, rgba(255, 45, 67, 0.28), transparent 68%);
}

.care-section h2 {
  margin: 72px 0 34px;
  text-align: center;
}

.care-section h2 span {
  color: var(--blue);
}

.care-section h2 strong {
  color: var(--red);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.care-grid article {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 210px;
  padding: 34px 24px;
  text-align: center;
}

.care-grid article:nth-child(1) {
  border-color: rgba(255, 45, 67, 0.34);
}

.care-grid article:nth-child(2) {
  border-color: rgba(25, 168, 255, 0.36);
}

.care-grid article:nth-child(3) {
  border-color: rgba(255, 45, 67, 0.38);
}

.care-grid svg {
  width: 48px;
  height: 48px;
}

.care-grid article:nth-child(1) svg,
.care-grid article:nth-child(3) svg {
  color: var(--red);
}

.care-grid article:nth-child(2) svg {
  color: var(--blue);
}

.care-grid h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.care-grid p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.85fr 0.9fr;
  gap: 44px;
  width: 100%;
  margin: 0 auto;
  padding: 34px max(40px, calc((100vw - var(--max)) / 2)) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 11, 21, 0.86);
}

.site-footer h3 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 900;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: var(--muted);
  font-size: 13px;
}

.site-footer a {
  display: block;
  margin-top: 10px;
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .footer-email {
  color: #fff;
  font-weight: 900;
}

.site-footer p {
  max-width: 280px;
  margin: 12px 0 0;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  max-width: min(440px, calc(100vw - 40px));
  padding: 14px 16px;
  border: 1px solid rgba(25, 168, 255, 0.38);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(3, 7, 17, 0.94);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.toast[hidden] {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes confetti-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 220px 180px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-content,
  .custom-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 30px;
  }

  .hero {
    min-height: auto;
  }

  .hero-product {
    max-width: 520px;
    margin-top: -12px;
  }

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

  .benefit-bar div,
  .benefit-bar div:not(:first-child) {
    padding: 24px;
  }

  .order-panel {
    position: static;
  }

  .care-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 8px;
    width: min(100% - 24px, var(--max));
    min-height: 62px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .cart-btn {
    display: none;
  }

  .btn-small {
    width: 48px;
    min-height: 48px;
    padding: 0;
  }

  .btn-small span {
    display: none;
  }

  .hero {
    margin-top: -76px;
    padding: 142px 0 24px;
  }

  .hero-video-main {
    top: 330px;
    width: min(590px, calc(100% + 150px));
  }

  .hero-content,
  .custom-section,
  .care-section {
    width: min(100% - 28px, var(--max));
  }

  .hero-content {
    gap: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero-actions .video-link {
    display: none;
  }

  .hero-trust {
    gap: 10px;
  }

  .hero-trust span {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-product {
    margin-top: -18px;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 300px;
    height: 300px;
  }

  .benefit-bar {
    grid-template-columns: 1fr;
  }

  .preview-panel {
    min-height: auto;
    padding: 76px 14px 18px;
  }

  .vertical-thumbs {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: auto;
    margin-bottom: 16px;
  }

  .thumb {
    width: 100%;
    height: 86px;
  }

  .thumb img {
    height: 66px;
  }

  .jersey-stage {
    min-height: 430px;
  }

  .jersey-stage img {
    height: 430px;
  }

  .stage-print {
    top: 112px;
  }

  .view-toggle button {
    min-width: 96px;
  }

  .order-panel,
  .care-grid article {
    padding: 18px;
  }

  .product-option {
    grid-template-columns: 44px 1fr auto;
  }

  .summary-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .summary-row b {
    text-align: left;
  }

  .care-section h2 {
    text-align: left;
  }

  .site-footer {
    padding-inline: 20px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
