:root {
  --black: #0b0b0b;
  --carbon: #10100f;
  --ink: #151515;
  --muted: #6b6b6b;
  --cream: #ffffff;
  --sand: #f3f3f3;
  --line: #e5e5e5;
  --orange: #f26a1b;
  --green: #138a43;
  --pink: #f05a9d;
  --white: #ffffff;
  --gold: #c99a4a;
  --shadow: 0 28px 80px rgba(18, 18, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(242, 106, 27, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f3f3f3);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

.announcement {
  overflow: hidden;
  padding: 11px 16px;
  background: linear-gradient(90deg, #050505, #15120f, #050505);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.announcement-track {
  display: inline-flex;
  min-width: max-content;
  gap: 44px;
  animation: announcement-scroll 22s linear infinite;
}

.announcement-track span::after {
  content: "•";
  margin-left: 44px;
  color: var(--orange);
}

@keyframes announcement-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 60px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: 0 14px 50px rgba(11, 11, 11, 0.06);
  backdrop-filter: blur(22px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Chakra Petch", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-mark img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  opacity: 0.78;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--orange);
  opacity: 1;
}

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

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.cart-pill,
.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
  box-shadow: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.whatsapp-pill {
  text-decoration: none;
}

.whatsapp-logo {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-pill:hover,
.whatsapp-pill:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.whatsapp-icon {
  position: relative;
  display: block;
  width: 23px;
  height: 23px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.whatsapp-icon::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-left: 0;
  border-top: 0;
  border-radius: 2px 2px 5px 2px;
  content: "";
  transform: translate(-50%, -50%) rotate(42deg);
}

.whatsapp-icon::after {
  position: absolute;
  left: 1px;
  bottom: -3px;
  width: 7px;
  height: 7px;
  background: var(--white);
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(-18deg);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  min-height: calc(100vh - 102px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #050505;
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 45%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 42px);
  content: "";
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #050505;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: min(700px, calc(100% - 40px));
  margin: 0 0 clamp(28px, 5vw, 70px) clamp(18px, 5vw, 70px);
  padding: clamp(20px, 3vw, 34px);
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Chakra Petch", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
  line-height: 0.96;
}

h1 {
  max-width: 680px;
  font-size: clamp(42px, 6vw, 84px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(34px, 5vw, 70px);
  text-transform: uppercase;
}

h3 {
  font-size: 22px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid currentColor;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  border-color: var(--orange);
  background: linear-gradient(135deg, #ff8a2a, var(--orange));
  color: var(--black);
  box-shadow: 0 18px 45px rgba(242, 106, 27, 0.28);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  backdrop-filter: blur(12px);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary:hover {
  box-shadow: 0 24px 58px rgba(242, 106, 27, 0.34);
}

.hero-stats span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
}

.hero-stats strong {
  color: var(--white);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.rating-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.strip {
  display: flex;
  gap: 40px;
  overflow: hidden;
  padding: 16px 0;
  background: linear-gradient(90deg, var(--orange), #ffb45e, var(--orange));
  color: var(--black);
  font-family: "Chakra Petch", sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.strip span {
  padding-left: 26px;
}

.section,
.why,
.delivery,
.community,
.checkout-section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 60px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.color-card {
  min-height: 0;
  padding: 12px 12px 20px;
  border: 1px solid rgba(11, 11, 11, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.color-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 90px rgba(18, 18, 18, 0.16);
}

.color-card img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border: 1px solid rgba(11, 11, 11, 0.08);
}

.color-card h3,
.color-card p,
.color-card a {
  margin-left: 8px;
  margin-right: 8px;
}

.color-card p,
.why p,
.delivery p,
.community p,
.home-product-card p,
.checkout-note {
  color: var(--muted);
  line-height: 1.7;
}

.editorial-copy p span,
.premium-card p span {
  display: block;
}

.color-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 2px solid var(--orange);
}

.home-product-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 46px);
  padding: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(247,244,238,0.78)),
    var(--white);
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: var(--shadow);
}

.home-product-media {
  overflow: hidden;
  background: var(--cream);
}

.home-product-media img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-product-card p {
  max-width: 620px;
}

.home-price {
  margin: 10px 0 0;
  color: var(--black) !important;
  font-family: "Chakra Petch", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.editorial-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  min-height: 720px;
  background:
    radial-gradient(circle at 18% 18%, rgba(242, 106, 27, 0.20), transparent 30%),
    linear-gradient(135deg, #050505, #15120f);
  color: var(--white);
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 90px);
}

.editorial-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.editorial-image {
  min-height: 520px;
  overflow: hidden;
}

.editorial-image img,
.premium-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 18px;
  padding: clamp(24px, 4vw, 60px);
  background: var(--black);
}

.premium-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.premium-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.78));
  content: "";
}

.premium-card > div {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 1;
}

.premium-card h3 {
  font-size: clamp(28px, 3vw, 48px);
}

.premium-card p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 60px);
  background:
    radial-gradient(circle at 6% 10%, rgba(242, 106, 27, 0.08), transparent 30%),
    var(--white);
}

.product-gallery {
  min-width: 0;
}

.product-options-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(11, 11, 11, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(11, 11, 11, 0.08);
}

.product-options-panel fieldset {
  margin: 0;
}

.jersey-preview {
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: var(--shadow);
}

.product-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: contain;
  background: #fff;
}

.jersey {
  position: relative;
  width: min(72%, 420px);
  aspect-ratio: 0.76;
  background: var(--orange);
  clip-path: polygon(25% 0, 75% 0, 100% 17%, 88% 34%, 78% 27%, 78% 100%, 22% 100%, 22% 27%, 12% 34%, 0 17%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.jersey::before,
.jersey::after {
  content: "";
  position: absolute;
  inset: 0;
}

.jersey::before {
  background: linear-gradient(90deg, transparent 0 20%, rgba(255, 255, 255, 0.18) 20% 24%, transparent 24% 76%, rgba(0, 0, 0, 0.16) 76% 80%, transparent 80%);
}

.jersey::after {
  background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 18px 20px);
}

.jersey-collar {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 14%;
  background: var(--black);
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}

.jersey-logo,
.jersey-number {
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  color: var(--black);
  font-family: "Chakra Petch", sans-serif;
  font-weight: 800;
}

.jersey-logo {
  top: 24%;
  display: grid;
  width: 30%;
  aspect-ratio: 1.18;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
}

.jersey-logo img {
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.jersey-number {
  top: 42%;
  font-size: clamp(80px, 13vw, 170px);
  line-height: 1;
}

.thumb-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.thumb {
  flex: 1;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.thumb.active {
  background: var(--black);
  color: var(--white);
}

.product-info {
  align-self: start;
  position: sticky;
  top: 98px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(11, 11, 11, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.product-meta,
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.product-meta span,
.trust-grid span {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  margin: 22px 0 8px;
  color: var(--black);
  font-family: "Chakra Petch", sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.product-lead {
  color: var(--muted);
  line-height: 1.75;
}

fieldset {
  margin: 22px 0;
  padding: 0;
  border: 0;
}

legend,
.quantity-row > span {
  margin-bottom: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.legend-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.legend-row a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.legend-row a:hover {
  color: var(--orange);
}

.swatches,
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.swatch {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(11, 11, 11, 0.12);
  cursor: pointer;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.38);
}

.swatch[data-color="Orange"] {
  background: var(--orange);
}

.swatch[data-color="Blanc"] {
  background: var(--cream);
}

.swatch[data-color="Vert"] {
  background: var(--green);
}

.swatch[data-color="Noir"] {
  background: var(--black);
}

.swatch[data-color="Rose"] {
  background: var(--pink);
}

.swatch.is-selected,
.size.is-selected {
  border-color: var(--black);
  box-shadow: 0 0 0 3px var(--orange);
}

.selection-line {
  color: var(--muted);
  font-size: 14px;
}

.size {
  min-width: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(11, 11, 11, 0.12);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-weight: 900;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 26px 0;
}

.quantity {
  display: inline-flex;
  border: 1px solid rgba(11, 11, 11, 0.12);
}

.quantity button,
.quantity input {
  width: 46px;
  height: 46px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-weight: 900;
}

.quantity button {
  cursor: pointer;
}

.whatsapp-help-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  padding: 16px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(11, 11, 11, 0.96), rgba(28, 28, 28, 0.92)),
    radial-gradient(circle at 18% 15%, rgba(242, 106, 27, 0.34), transparent 34%);
  border: 1px solid rgba(242, 106, 27, 0.3);
  box-shadow: 0 22px 54px rgba(11, 11, 11, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-help-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.whatsapp-help-card:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  box-shadow: 0 28px 68px rgba(11, 11, 11, 0.28);
}

.whatsapp-help-card:hover::after {
  transform: translateX(120%);
}

.whatsapp-help-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.whatsapp-help-icon img {
  display: block;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  object-fit: cover;
}

.whatsapp-help-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.whatsapp-help-copy strong {
  font-family: "Chakra Petch", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

.whatsapp-help-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.whatsapp-help-action {
  padding: 9px 12px;
  color: var(--black);
  background: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shipping-zone {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.shipping-zone p {
  margin: -2px 0 6px;
  color: var(--muted);
  font-size: 14px;
}

.shipping-zone label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(11, 11, 11, 0.1);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shipping-zone label:has(input:checked) {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 106, 27, 0.14);
}

.shipping-zone input {
  accent-color: var(--orange);
}

.shipping-zone span,
.shipping-zone strong {
  font-size: 14px;
}

.shipping-zone strong {
  white-space: nowrap;
}

.add-btn {
  width: 100%;
}

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

.size-grid span {
  display: grid;
  min-height: 104px;
  place-items: center;
  background: var(--black);
  color: var(--white);
  font-family: "Chakra Petch", sans-serif;
  font-size: 30px;
  font-weight: 800;
}

.why {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  background:
    radial-gradient(circle at 80% 20%, rgba(242, 106, 27, 0.16), transparent 28%),
    linear-gradient(135deg, #050505, #15120f);
  color: var(--white);
}

.benefits {
  display: grid;
  gap: 12px;
}

.benefits article,
.delivery-grid article,
.order-summary,
.checkout-form {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(11, 11, 11, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.benefits p {
  color: var(--muted);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.delivery-grid strong {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  background: linear-gradient(135deg, #ff8a2a, var(--orange));
  font-family: "Chakra Petch", sans-serif;
  font-size: 22px;
}

.community {
  background:
    linear-gradient(120deg, rgba(242, 106, 27, 0.9), rgba(19, 138, 67, 0.82)),
    linear-gradient(135deg, #050505, #15120f);
  color: var(--white);
  text-align: center;
}

.community p {
  max-width: 640px;
  margin: 18px auto 24px;
  color: rgba(255, 255, 255, 0.86);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 20px;
}

.checkout-page h1 {
  color: var(--ink);
  font-size: clamp(38px, 6vw, 82px);
}

.checkout-page .section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 11, 11, 0.1);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: rgba(242, 106, 27, 0.72);
  box-shadow: 0 0 0 4px rgba(242, 106, 27, 0.12);
}

.payment-fieldset {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(11, 11, 11, 0.1);
}

.payment-fieldset p {
  margin: -2px 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.payment-fieldset label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(11, 11, 11, 0.1);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-weight: 800;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.payment-fieldset label:has(input:checked) {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 106, 27, 0.14);
  color: var(--black);
}

.payment-fieldset input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--orange);
}

.payment-fieldset span {
  display: block;
  flex: 1;
  text-align: left;
}

.order-summary {
  align-self: start;
  position: sticky;
  top: 98px;
}

.summary-row,
.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.summary-row small,
.cart-row small {
  display: block;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
  padding: 64px clamp(18px, 4vw, 60px) 28px;
  background:
    radial-gradient(circle at 20% 0, rgba(242, 106, 27, 0.18), transparent 30%),
    linear-gradient(135deg, #050505, #12100f);
  color: var(--white);
}

.footer p,
.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.footer-brand p {
  max-width: 460px;
  margin-top: 18px;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
  text-transform: uppercase;
}

.footer h3 {
  margin-bottom: 16px;
  font-size: 16px;
}

.footer a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.social-links a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-logo {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  object-fit: cover;
}

.social-icon {
  position: relative;
  display: block;
  width: 19px;
  height: 19px;
}

.social-icon-instagram {
  border: 2px solid currentColor;
  border-radius: 6px;
}

.social-icon-instagram::before {
  position: absolute;
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 999px;
  content: "";
}

.social-icon-instagram::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.social-icon-tiktok::before {
  position: absolute;
  left: 6px;
  top: 0;
  width: 8px;
  height: 14px;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  border-radius: 0 0 0 8px;
  content: "";
}

.social-icon-tiktok::after {
  position: absolute;
  left: 10px;
  top: 1px;
  width: 8px;
  height: 5px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  border-radius: 0 8px 0 0;
  content: "";
}

.social-icon-facebook::before {
  position: absolute;
  left: 7px;
  top: 0;
  color: currentColor;
  content: "f";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.social-links a:hover {
  border-color: rgba(242, 106, 27, 0.72);
  color: var(--orange);
  transform: translateY(-3px);
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  padding: 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
}

.newsletter button {
  border: 0;
  background: linear-gradient(135deg, #ff8a2a, var(--orange));
  font-weight: 900;
  padding: 0 16px;
  white-space: nowrap;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.48);
}

.cart-drawer.is-open {
  display: flex;
}

.cart-panel {
  display: flex;
  width: min(100%, 460px);
  height: 100%;
  flex-direction: column;
  padding: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(242, 106, 27, 0.12), transparent 26%),
    var(--cream);
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.22);
}

.cart-head,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-head button {
  border: 1px solid var(--black);
  background: transparent;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 900;
}

.cart-items {
  flex: 1;
  overflow: auto;
  margin: 20px 0;
}

.cart-controls {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.cart-controls button {
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.cart-checkout {
  margin-top: 16px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  transform: translateY(120%);
  transition: transform 0.25s ease;
  padding: 14px 18px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.toast.is-visible {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .announcement {
    padding: 9px 0;
    font-size: 11px;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-content: flex-end;
    gap: 4px;
  }

  .desktop-nav {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    overflow: visible;
    gap: 4px;
    width: 100%;
    padding-top: 0;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .desktop-nav::-webkit-scrollbar {
    display: none;
  }

  .desktop-nav a {
    flex: 0 0 auto;
    padding: 7px 2px;
    border: 0;
    background: transparent;
    font-size: 10px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .desktop-nav a::after {
    bottom: -5px;
  }

  .hero,
  .editorial-feature,
  .premium-grid,
  .product-section,
  .why,
  .checkout-layout,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - 92px);
  }

  .hero-copy {
    min-height: auto;
    max-width: calc(100% - 24px);
    margin: 0 12px 18px;
    padding: 20px 16px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 14px;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn {
    flex: 1 1 180px;
    min-height: 48px;
    padding: 0 16px;
    font-size: 12px;
  }

  .home-product-card {
    grid-template-columns: 1fr;
  }

  .home-product-media img {
    height: auto;
  }

  .hero-visual {
    min-height: 52svh;
  }

  .editorial-feature {
    min-height: auto;
  }

  .editorial-image,
  .premium-card {
    min-height: 460px;
  }

  .product-section {
    gap: 0;
  }

  .product-options-panel {
    grid-template-columns: 1fr;
  }

  .jersey-preview {
    min-height: 460px;
  }

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

  .product-info,
  .order-summary {
    position: static;
  }
}

@media (max-width: 540px) {
  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .cart-pill,
  .whatsapp-pill {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }

  .desktop-nav {
    gap: 4px;
  }

  .desktop-nav a {
    padding: 7px 3px;
    font-size: 9px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy,
  .section,
  .product-section,
  .why,
  .delivery,
  .community,
  .checkout-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section,
  .why,
  .delivery,
  .community,
  .checkout-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .strip {
    font-size: 17px;
    padding: 12px 0;
  }

  .home-product-card {
    padding: 12px;
  }

  .home-product-media img {
    max-height: 520px;
    object-fit: contain;
    background: var(--cream);
  }

  .color-grid,
  .delivery-grid,
  .size-grid {
    grid-template-columns: 1fr;
  }

  .color-card {
    padding: 10px 10px 18px;
  }

  .editorial-copy {
    min-height: 420px;
    justify-content: center;
  }

  .editorial-image,
  .premium-card {
    min-height: 420px;
  }

  .premium-grid {
    padding: 12px;
    gap: 12px;
  }

  .premium-card > div {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .product-info {
    padding: 20px 16px;
    border-right: 0;
    border-left: 0;
  }

  .whatsapp-help-card {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 14px;
  }

  .whatsapp-help-action {
    grid-column: 1 / -1;
    text-align: center;
  }

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

  .product-photo {
    min-height: 430px;
  }

  .checkout-layout {
    gap: 14px;
  }

  .checkout-form,
  .order-summary {
    padding: 18px;
  }

  .footer {
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter button {
    min-height: 44px;
  }

  .cart-panel {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .site-header {
    gap: 5px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .desktop-nav {
    gap: 3px;
  }

  .desktop-nav a {
    padding: 6px 2px;
    font-size: 8px;
  }
}

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

  .announcement-track {
    animation: none;
  }

  .btn,
  .color-card,
  .desktop-nav a::after {
    transition: none;
  }
}
