:root {
  color-scheme: light;
  --ink: #000;
  --paper: #fff;
  --paper-strong: #fff;
  --muted: #555;
  --line: rgba(0, 0, 0, 0.16);
  --green: #000;
  --sun: #fff;
  --tomato: #000;
  --blue: #000;
  --header-white: rgba(255, 255, 255, 0.94);
  --product-bg: #f2f0ea;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.cart-open {
  overflow: hidden;
}

h1,
h2,
h3,
.brand,
.site-nav,
.button,
.checkout-button,
.add-button,
.filter-button,
.marquee span,
.cart-toggle,
.status-pill {
  font-family:
    "Helvetica Neue Condensed Black",
    "HelveticaNeue-CondensedBlack",
    "Arial Narrow",
    Impact,
    sans-serif;
  font-style: italic;
  font-stretch: condensed;
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 52px);
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: var(--header-white);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav,
.cart-toggle {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  border: 0;
  border-radius: 4px;
  background: var(--header-white);
  padding: 4px 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  user-select: none;
}

.site-header.is-scrolled .brand {
  background: transparent;
}

.brand-banner {
  display: block;
  width: clamp(95px, 10.2vw, 151px);
  height: 70px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  background: transparent;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.site-nav {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-toggle {
  min-width: 92px;
  justify-content: center;
  gap: 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 9px 13px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 850;
  text-transform: uppercase;
}

.cart-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.cart-toggle strong {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: currentColor;
  color: var(--ink);
  font-size: 0.75rem;
}

.site-header.is-scrolled .cart-toggle strong {
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 76px) 76px;
  color: #fff;
  isolation: isolate;
}

.hero-video,
.hero-backup,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-backup {
  z-index: -4;
  background: url("assets/hero-hacky-sack.png") center / cover no-repeat;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 10, 8, 0.78), rgba(6, 10, 8, 0.22) 54%, rgba(6, 10, 8, 0.05)),
    linear-gradient(0deg, rgba(6, 10, 8, 0.56), transparent 38%);
}

.hero-content {
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 9ch;
  margin-bottom: 20px;
  font-size: clamp(4.5rem, 13vw, 10.8rem);
  line-height: 0.84;
  letter-spacing: 0;
  font-style: italic;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-style: italic;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.checkout-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

a.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.customize-button {
  width: 100%;
  min-height: 56px;
  padding: 0 22px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1;
}

.button.primary,
.checkout-button {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 6vw, 76px);
  bottom: 28px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-size: 1.3rem;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.marquee div {
  display: flex;
  width: max-content;
  animation: slide 22s linear infinite;
}

.marquee span {
  padding: 17px 32px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.shop-section,
.feature-band,
.club-section {
  padding: clamp(56px, 9vw, 108px) clamp(18px, 5vw, 68px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

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

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.preview-tile {
  display: grid;
  grid-template-rows: minmax(210px, 1fr) auto;
  min-height: clamp(260px, 31vw, 440px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--product-bg);
}

.preview-tile .product-media {
  height: 100%;
  min-height: clamp(210px, 28vw, 390px);
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.preview-tile:hover .product-media {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
}

.preview-meta {
  min-height: 58px;
  border-top: 1px solid var(--line);
  padding: 0 16px;
  background: var(--product-bg);
  color: #000;
}

.preview-meta strong {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 950;
}

.product-media {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  background: var(--product-bg);
}

.product-media img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(16px, 3vw, 38px);
  transition:
    transform 180ms ease,
    filter 180ms ease;
  -webkit-user-drag: none;
  user-select: none;
}

.product-media.has-image .sack-render {
  display: none;
}

.product-card {
  position: relative;
  display: grid;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--product-bg);
}

.product-art {
  display: grid;
  min-height: 285px;
  place-items: center;
  background: var(--product-bg);
}

.sack-render {
  position: relative;
  width: 172px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 22deg, var(--color-one), var(--color-two), var(--color-three), var(--color-four), var(--color-one)),
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.95), transparent 26%);
  box-shadow: inset -18px -22px 38px rgba(0, 0, 0, 0.24), 0 28px 44px rgba(0, 0, 0, 0.24);
}

.shop-page {
  background: var(--paper);
}

.shop-page .site-header {
  position: sticky;
}

.shop-hero {
  padding: clamp(92px, 12vw, 150px) clamp(18px, 5vw, 68px) clamp(36px, 6vw, 68px);
  background: var(--paper);
}

.page-loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 1;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    visibility 240ms ease;
}

.page-loader img {
  width: min(440px, 72vw);
  max-height: 180px;
  object-fit: contain;
  background: transparent;
}

.page-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.shop-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(4rem, 12vw, 10rem);
}

.shop-hero p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.shipping-callout {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  margin: 0 0 18px;
  padding: 0 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.shop-error {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--product-bg);
  color: var(--muted);
}

.shop-board {
  padding: 0 clamp(18px, 5vw, 68px) clamp(60px, 8vw, 104px);
}

.shop-toolbar {
  position: sticky;
  z-index: 10;
  top: 91px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.filter-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.filter-button.is-active {
  background: var(--ink);
  color: var(--paper);
}

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

.shop-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--product-bg);
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
  will-change: transform;
}

.shop-card:hover {
  border-color: rgba(0, 0, 0, 0.42);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
  transform: translateY(-8px) scale(1.018);
}

.shop-card:hover .product-media img {
  filter: contrast(1.04) saturate(1.05);
  transform: scale(1.045);
}

.shop-card.is-targeted {
  box-shadow: 0 0 0 4px var(--ink), var(--shadow);
  transform: translateY(-2px);
}

.shop-card-copy {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.shop-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shop-card-top strong {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 950;
}

.shop-card-copy h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.shop-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.shop-card-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.status-pill.sold-out {
  background: var(--ink);
}

.status-pill.coming-soon {
  background: var(--blue);
}

.sack-render::before,
.sack-render::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 2px dashed rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.sack-render::after {
  inset: 36%;
  border-color: rgba(0, 0, 0, 0.18);
}

.product-info {
  display: grid;
  gap: 14px;
  align-content: end;
  padding: 20px;
}

.product-info h3 {
  margin: 0;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.product-info p {
  min-height: 48px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 950;
}

.add-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.add-button:not(:disabled):hover {
  background: #444;
  box-shadow:
    inset 0 0 0 2px #000,
    0 10px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.add-button:not(:disabled):active {
  background: #000;
  transform: translateY(0);
}

.add-button.is-loading,
.checkout-button.is-loading {
  opacity: 0.62;
  pointer-events: none;
}

.add-button:disabled {
  cursor: not-allowed;
  background: #d7d7d7;
  color: #555;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #fff;
  border-block: 1px solid var(--line);
}

.new-drop-section {
  display: grid;
  grid-template-columns: minmax(150px, 240px) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
  padding: clamp(28px, 5vw, 52px) clamp(18px, 5vw, 68px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.new-drop-media a {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(14px, 3vw, 22px);
  background: var(--product-bg);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.new-drop-media a:hover {
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
  transform: translateY(-6px);
}

.new-drop-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}

.new-drop-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.new-drop-copy h2 {
  font-size: clamp(2.3rem, 5vw, 5.2rem);
}

.new-drop-copy ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  font-weight: 850;
}

.highlights-section {
  padding: clamp(56px, 9vw, 108px) clamp(18px, 5vw, 68px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.highlights-section .section-heading {
  align-items: start;
}

.highlights-section .section-heading p:not(.eyebrow) {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.highlight-video {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.08), transparent),
    var(--product-bg);
  aspect-ratio: 9 / 14;
}

.highlight-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.apparel-section {
  padding: 0 clamp(18px, 5vw, 68px) clamp(60px, 8vw, 104px);
}

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

.apparel-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--product-bg);
}

.apparel-card h3 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 4rem);
  text-transform: uppercase;
}

.apparel-card p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.5;
}

.customize-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding: clamp(98px, 12vw, 150px) clamp(18px, 5vw, 68px) clamp(60px, 8vw, 104px);
}

.customize-product {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 4vw, 34px);
  background: var(--product-bg);
}

.customize-product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}

.customize-copy h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(3.8rem, 10vw, 8rem);
}

.customize-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.customize-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.customize-form label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

.customize-form input,
.customize-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
}

.color-mode-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.color-mode-button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.color-mode-button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.color-readout,
.discount-note {
  margin: 0;
  color: var(--muted);
}

.color-swatches {
  display: flex;
  gap: 8px;
}

.color-swatches span {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.custom-price-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--product-bg);
}

.custom-price-box span {
  color: var(--muted);
}

.custom-price-box strong {
  justify-self: end;
}

.stat-stack {
  display: grid;
  gap: 12px;
}

.stat-stack article {
  display: flex;
  align-items: center;
  gap: 52px;
  border-top: 1px solid rgba(23, 21, 17, 0.18);
  padding: 22px 0;
}

.stat-stack strong {
  width: 150px;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.9;
}

.stat-stack span {
  color: var(--ink);
  font-weight: 800;
}

.club-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #000;
  color: #fff;
}

.club-section .eyebrow {
  color: #fff;
}

.club-section h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.signup-form {
  display: flex;
  width: min(460px, 100%);
  gap: 10px;
}

.signup-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.cart-drawer {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: flex;
  justify-content: end;
  background: rgba(23, 21, 17, 0);
  pointer-events: none;
  transition: background 180ms ease;
}

.cart-drawer.is-open {
  background: rgba(23, 21, 17, 0.46);
  pointer-events: auto;
}

.cart-panel {
  display: grid;
  width: min(440px, 100%);
  grid-template-rows: auto 1fr auto;
  transform: translateX(100%);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  transition: transform 220ms ease;
}

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

.cart-head,
.cart-foot,
.cart-item {
  padding: 20px;
}

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

.cart-head h2 {
  margin: 0;
  font-size: 1.55rem;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.6rem;
}

.cart-items {
  overflow: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  max-height: 120px;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    max-height 180ms ease,
    padding-top 180ms ease,
    padding-bottom 180ms ease,
    border-color 180ms ease;
}

.cart-item.is-removing {
  opacity: 0;
  transform: translateX(18px);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-color: transparent;
  pointer-events: none;
}

.mini-sack {
  position: relative;
  overflow: hidden;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
}

.mini-sack img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  -webkit-user-drag: none;
  user-select: none;
}

.mini-sack span {
  position: absolute;
  inset: 0;
  background: conic-gradient(var(--color-one), var(--color-two), var(--color-three), var(--color-four), var(--color-one));
}

.mini-sack.has-image span {
  display: none;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-control button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.cart-empty {
  display: none;
  padding: 28px 20px;
  color: var(--muted);
}

.cart-empty.is-visible {
  display: block;
}

.cart-foot {
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.checkout-button {
  width: 100%;
  min-height: 54px;
  border: 0;
}

.checkout-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 68px);
  background: var(--ink);
  color: var(--paper);
  font-weight: 850;
  text-transform: uppercase;
}

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

.social-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 13px;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-grid,
  .shop-grid,
  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-band,
  .club-section,
  .new-drop-section,
  .customize-layout {
    grid-template-columns: 1fr;
  }

  .club-section {
    display: grid;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
  }

  .site-nav {
    display: none;
  }

  .brand {
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88svh;
  }

  h1 {
    font-size: clamp(4rem, 24vw, 7rem);
  }

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

  .preview-grid,
  .shop-grid,
  .highlight-grid,
  .apparel-grid {
    grid-template-columns: 1fr;
  }

  .brand-banner {
    width: 83px;
    height: 52px;
  }

  .shop-toolbar {
    top: 76px;
  }

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

  .section-heading,
  .signup-form,
  .site-footer {
    display: grid;
  }

  .signup-form .button {
    width: 100%;
  }
}
