:root {
  --ink: #0a0a0a;
  --ink-soft: #111111;
  --mist: #f0f2f4;
  --line: #e2e5ea;
  --accent: #fa5400;
  --accent-hover: #e04d00;
  --accent-glow: rgba(250, 84, 0, 0.35);
  --lime: #c8ff00;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 60px;
  --promo-h: 38px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
  --font-display: "Teko", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

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

  .site-header.is-nav-open .nav-toggle span:nth-child(1),
  .site-header.is-nav-open .nav-toggle span:nth-child(3) {
    transform: none;
  }

  .site-header.is-nav-open .nav-toggle span:nth-child(2) {
    opacity: 1;
  }
}

body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow-x: hidden;
  
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.hero h1,
.section-head h2,
.shop-hero h1,
.logo,
.cart-drawer-head h2,
.policy-hero h1,
.pdp-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  font-weight: 600;
  line-height: 0.95;
}

.section-head h2,
.shop-hero h1 {
  line-height: 1.05;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
}

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

.site-shell {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 900;
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  min-height: var(--promo-h);
  padding: 0.35rem 1rem;
  background: linear-gradient(90deg, var(--ink) 0%, #1c1c1c 50%, var(--ink) 100%);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promo-strip code {
  background: rgba(255, 255, 255, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  color: var(--lime);
}

.promo-strip button {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}

.promo-strip button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header {
  position: relative;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (min-width: 1061px) {
  .header-inner {
    padding: 0 1.25rem;
    gap: 1rem;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.95rem);
  line-height: 1;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 1;
  min-width: 0;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.85;
}

.logo-mark {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

@media (min-width: 640px) {
  .logo-mark {
    height: 40px;
    max-width: 140px;
  }
}

@media (max-width: 420px) {
  .logo {
    gap: 0.35rem;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
  }

  .logo-mark {
    display: none;
  }
}

.logo-wordmark {
  white-space: normal;
  word-wrap: break-word;
  line-height: 0.95;
}

.logo-accent {
  color: var(--accent);
}

.nav-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-body);
  min-width: 0;
}

.header-tray {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}

.nav-toggle:hover {
  background: var(--mist);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.site-header.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-main {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0.5rem 1rem 1.25rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    max-height: min(75vh, 520px);
    overflow-y: auto;
    z-index: 1100;
    display: none;
  }

  .site-header.is-nav-open .nav-main {
    display: flex;
  }

  .nav-main > a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-main > a:last-of-type {
    border-bottom: none;
  }

  .nav-dropdown {
    border-bottom: 1px solid var(--line);
    padding: 0.35rem 0;
  }

  .nav-dropdown summary {
    padding: 0.5rem 0;
  }

  .nav-dropdown-panel {
    position: static;
    transform: none;
    margin: 0.25rem 0 0.5rem;
    min-width: 0;
    box-shadow: none;
    border: none;
    background: var(--mist);
    border-radius: 6px;
    padding: 0.25rem 0;
  }

  .nav-dropdown-panel a {
    padding: 0.55rem 1rem;
  }
}

.nav-main a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown[open] summary,
.nav-dropdown summary:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  min-width: 200px;
  padding: 0.5rem 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  z-index: 50;
}

.nav-dropdown-panel a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.nav-dropdown-panel a:hover {
  background: var(--mist);
  text-decoration: none;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  color: var(--ink);
}

.icon-btn:hover {
  background: var(--mist);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.cart-count {
  position: absolute;
  top: 6px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  background: var(--ink);
  color: #fff;
  border-radius: 9px;
}

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  background: var(--ink);
  color: #fff;
  display: grid;
  align-items: end;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1);
  will-change: transform;
}

@supports (animation-timeline: view()) {
  .hero-media img,
  .hero-media video {
    animation: hero-zoom linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 45%;
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 1.25rem 3.5rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  max-width: 14ch;
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.0625rem;
  max-width: 36ch;
  opacity: 0.9;
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s;
}

.btn:active {
  transform: scale(0.97);
}

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

.btn-primary:hover {
  background: var(--mist);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

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

.btn-dark:hover {
  background: #333;
  text-decoration: none;
}

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

.btn-accent:hover {
  background: var(--accent-hover);
  text-decoration: none;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.85s var(--ease-spring);
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 1.25rem;
}

.section-dark {
  background: var(--ink-soft);
  color: #fff;
}

.section-mist {
  background: var(--mist);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  max-width: 52ch;
  opacity: 0.85;
  font-size: 1rem;
}

.split-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.split-copy h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.split-copy p {
  margin: 0 0 1rem;
  color: inherit;
  opacity: 0.88;
}

.split-copy p:last-child {
  margin-bottom: 0;
}

.img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #ddd;
  box-shadow: var(--shadow);
}

.img-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.6s var(--ease-out);
}

.img-frame.is-inview img {
  transform: scale(1);
}

@supports (animation-timeline: view()) {
  .img-parallax {
    animation: img-tilt linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 50%;
  }
}

@keyframes img-tilt {
  from {
    transform: scale(1.08) translateY(12px);
  }
  to {
    transform: scale(1) translateY(0);
  }
}

.product-strip {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card-product {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease-out), transform 0.35s var(--ease-spring);
}

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

.section-dark .card-product {
  background: #1a1a1a;
  border-color: #333;
}

.card-product a {
  text-decoration: none;
}

.card-product .thumb {
  position: relative;
  overflow: hidden;
  background: #eee;
}

.card-product .thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.card-product:hover .thumb img {
  transform: scale(1.06);
}

.card-body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow-x: hidden;
  
  padding: 1.25rem;
}

.card-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.card-meta {
  font-size: 0.8125rem;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.price {
  font-weight: 700;
  font-size: 1rem;
}

.add-btn {
  margin-top: 1rem;
  width: 100%;
}

.spec-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.spec-item {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-item strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.35rem;
}

.section-mist .spec-item {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.section-mist .spec-item strong {
  opacity: 0.55;
  color: var(--ink);
}

.band-form {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .band-form {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.75rem 1rem;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.section-dark .field input,
.section-dark .field textarea {
  background: #1a1a1a;
  border-color: #444;
  color: #fff;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 3rem 1.25rem 2rem;
  font-size: 0.875rem;
}

.footer-grid {
  word-break: break-word;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-grid h4 {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  opacity: 0.9;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.65;
  font-size: 0.8125rem;
}

.footer-map {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  aspect-ratio: 16 / 7;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-hero-map {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
}

.contact-hero-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.contact-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-modal-panel {
  background: #fff;
  color: var(--ink);
  max-width: 420px;
  width: 100%;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.contact-modal-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-modal-text {
  margin: 0 0 1.5rem;
  line-height: 1.55;
  font-size: 0.9375rem;
  opacity: 0.88;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}

.cart-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  background: #fff;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-spring);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

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

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-head h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-lines {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.cart-line img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--mist);
}

.cart-line-info h3 {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
}

.cart-line-info .sub {
  font-size: 0.8125rem;
  opacity: 0.65;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-row button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1;
}

.qty-row span {
  min-width: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.cart-empty {
  padding: 2rem 1rem;
  text-align: center;
  opacity: 0.65;
}

.cart-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--line);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 1rem;
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--ink);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  z-index: 2000;
  opacity: 0;
  transition:
    transform 0.45s var(--ease-spring),
    opacity 0.35s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  max-width: calc(100% - 2rem);
  text-align: center;
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.shop-hero {
  padding: 2.5rem 1.25rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
}

.policy-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.policy-page h1 {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.policy-page .updated {
  font-size: 0.875rem;
  opacity: 0.65;
  margin-bottom: 2rem;
}

.policy-page h2 {
  font-size: 1.125rem;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.01em;
}

.policy-page p,
.policy-page li {
  font-size: 0.9375rem;
  color: #333;
}

.policy-page ul {
  padding-left: 1.25rem;
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.policy-nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.policy-nav a:hover {
  border-color: var(--ink);
  text-decoration: none;
}

.checkout-panel {
  padding: 1rem 0 0;
}

.checkout-panel .field {
  margin-bottom: 1rem;
}

.section-bg {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-repeat: no-repeat;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.section-bg > * {
  position: relative;
  z-index: 1;
}

.section-bg .section-head p,
.section-bg .split-copy p {
  color: rgba(255, 255, 255, 0.88);
}

.section-bg .split-copy h3 {
  color: #fff;
}

.section-bg .spec-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.94);
}

.section-bg .spec-item strong {
  color: rgba(255, 255, 255, 0.7);
}

.section-bg .section-head h2 {
  color: #fff;
}

.section-bg .card-product {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--ink);
}

.section-bg .card-body h3,
.section-bg .price {
  color: var(--ink);
}

.section-bg .field label {
  color: rgba(255, 255, 255, 0.88);
}

.section-bg .field input,
.section-bg .field textarea {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--ink);
}

.section-bg .btn-dark {
  background: #fff;
  color: var(--ink);
}

.section-bg .btn-dark:hover {
  background: var(--lime);
  color: var(--ink);
}

.widget-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}

.widget-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.widget-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.widget-card p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.82;
  line-height: 1.45;
}

.widget-ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #ff8533);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.pdp-widgets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pdp-widgets .widget-card {
  padding: 1rem 1.1rem;
  margin: 0;
}

.pdp-hero {
  position: relative;
  min-height: min(52vh, 520px);
  display: grid;
  align-items: end;
  padding: 2rem 1rem 2rem;
  color: #fff;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .pdp-hero {
    padding: 2rem 1.25rem 2.5rem;
    min-height: 48vh;
  }
}

.pdp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
  pointer-events: none;
}

.pdp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.pdp-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.pdp-title {
  margin: 0 0 0.5rem;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  line-height: 0.92;
}

.pdp-price {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.pdp-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1000px) {
  .pdp-layout {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}

.pdp-gallery {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .pdp-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

.pdp-gallery figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.pdp-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.pdp-prose h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 2rem 0 1rem;
}

.pdp-prose h2:first-child {
  margin-top: 0;
}

.pdp-prose p,
.pdp-prose li {
  font-size: 1rem;
  color: #333;
  line-height: 1.65;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1rem 0 0;
}

.spec-table th,
.spec-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.spec-table th {
  font-weight: 600;
  width: 42%;
  color: #555;
}

.pdp-buy {
  position: sticky;
  top: calc(var(--header-h) + var(--promo-h) + 1rem);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #fff 0%, var(--mist) 100%);
  box-shadow: var(--shadow);
}

.pdp-buy .price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
}

.pdp-buy select {
  width: 100%;
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.mini-promo {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.mini-promo button {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.mini-promo button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cart-promo-box {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.cart-promo-input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 0.875rem;
}

.cart-promo-apply {
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  border: none;
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-promo-apply:hover {
  background: #333;
}

.cart-promo-hint {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.55;
}

.cart-promo-clear {
  margin-bottom: 0.75rem;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.cart-row.cart-total-line {
  font-weight: 800;
  font-size: 1rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--line);
}

.cart-remove {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--mist);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--ink);
}

.cart-remove:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.policy-shell {
  background: var(--ink);
  color: #fff;
}

.policy-hero {
  position: relative;
  padding: 3rem 1.25rem 4rem;
  overflow: hidden;
}

.policy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/bg-minimal.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.policy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.policy-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.policy-hero p {
  margin: 0.75rem 0 0;
  max-width: 40ch;
  opacity: 0.85;
  line-height: 1.55;
}

.policy-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5rem);
  margin: 0.5rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.policy-body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow-x: hidden;
  
  background: #fff;
  color: var(--ink);
  margin-top: -2rem;
  border-radius: 16px 16px 0 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.2);
}

.policy-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.policy-page h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.policy-page p,
.policy-page li {
  color: #3a3a3a;
}

.policy-nav a {
  border-width: 2px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.policy-nav a:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.checkout-totals .cart-row {
  font-size: 0.9375rem;
}

.checkout-totals .cart-total-line {
  font-size: 1.125rem;
}

.nike-spotlight {
  position: relative;
  margin: 0;
  max-height: min(72vh, 720px);
  overflow: hidden;
  background: var(--ink);
}

.nike-spotlight img {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.nike-spotlight figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 100%);
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}

body.nav-drawer-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  .promo-strip {
    flex-direction: column;
    text-align: center;
    padding: 0.5rem 0.75rem;
    gap: 0.35rem;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .hero {
    min-height: min(88vh, 840px);
  }

  .hero-content {
    padding: 2.25rem 1rem 1.75rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .split-grid {
    gap: 1.5rem;
  }

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

  .widget-row {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-grid {
  word-break: break-word;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .footer-grid ul {
    padding: 0;
  }

  .pdp-layout {
    padding: 1.25rem 1rem 2.5rem;
    gap: 1.5rem;
  }

  .pdp-buy {
    position: static;
    top: auto;
  }

  .pdp-gallery {
    grid-template-columns: 1fr;
  }

  .nike-spotlight img {
    height: min(52vh, 440px);
  }

  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  .checkout-card {
    padding: 1.25rem !important;
    border-radius: 8px !important;
  }

  .policy-hero {
    padding: 2.25rem 1rem 3rem;
  }

  .policy-body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow-x: hidden;
  
    margin-top: -1.25rem;
    border-radius: 12px 12px 0 0;
  }

  .shop-hero {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 899px) {
  .split-grid {
    grid-template-columns: 1fr !important;
  }
}

/* —— Support Chat Widget —— */
.chat-widget-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(250, 84, 0, 0.4);
  z-index: 999;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.chat-widget-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 40px rgba(250, 84, 0, 0.5);
}

.chat-widget-btn svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s;
}

.chat-widget-window {
  position: fixed;
  bottom: calc(1.5rem + 75px);
  right: 1.5rem;
  width: min(calc(100vw - 3rem), 360px);
  height: min(calc(100vh - 6rem), 480px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.3s, visibility 0.3s, transform 0.4s var(--ease-spring);
  border: 1px solid var(--line);
}

.chat-widget-window.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-header {
  background: var(--ink);
  color: #fff;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chat-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  padding: 0;
}

.chat-close-btn:hover {
  opacity: 1;
}

.chat-messages {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--mist);
}

.chat-msg {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.chat-msg.bot {
  align-self: flex-start;
  background: #fff;
  color: var(--ink);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--ink);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-input-area {
  padding: 1rem;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0.5rem;
  margin: 0;
}

.chat-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  color: var(--ink);
}

.chat-input:focus {
  border-color: var(--accent);
}

.chat-send-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.chat-send-btn:hover {
  background: var(--accent-hover);
}

.chat-send-btn svg {
  width: 20px;
  height: 20px;
  margin-left: -2px;
}

/* Typing Indicator */
.typing-indicator {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  min-height: 24px;
}
.typing-indicator .dot {
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
  opacity: 0.4;
}
.typing-indicator .dot:nth-child(1) { animation-delay: 0s; }
.typing-indicator .dot:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}
