/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F5F5F0;
  --fg: #0A0A0A;
  --fg-muted: #555550;
  --accent: #C8001A;
  --accent-dark: #8B0013;
  --card-bg: #EDEDE8;
  --border: #D8D8D0;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  mix-blend-mode: multiply;
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 14vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 0;
}

.hero-title-z { color: var(--fg); }
.hero-title-r { color: var(--fg); }
.hero-title-e { color: var(--accent); }
.hero-title-d { color: var(--fg); }

.hero-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--fg-muted);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-accent-line {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 380px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-block {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--fg);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 40%, #C8001A 100%);
  opacity: 0.9;
}

.hero-image-gradient::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 140px);
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* Subtle texture overlay */
.hero-image-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.015) 2px,
      rgba(255,255,255,0.015) 4px
    );
}

.hero-image-label {
  position: relative;
  z-index: 2;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-image-label span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--fg-muted);
}

/* === MANIFESTO === */
.manifesto {
  background: var(--fg);
  color: var(--white);
  padding: 100px 48px;
}

.manifesto-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  align-items: start;
}

.manifesto-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
  padding-top: 8px;
}

.manifesto-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: 0.01em;
}

.manifesto-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  font-weight: 300;
}

/* === COLLECTION === */
.collection {
  padding: 100px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.collection-header {
  margin-bottom: 56px;
}

.collection-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.collection-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}

.product-card {
  background: var(--card-bg);
  overflow: hidden;
  transition: transform 0.2s ease;
  cursor: default;
}

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

.product-image {
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 1px,
      rgba(255,255,255,0.03) 1px,
      rgba(255,255,255,0.03) 2px
    );
}

.product-category-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.product-info {
  padding: 20px;
  border-top: 1px solid var(--border);
}

.product-name {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.product-detail {
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.product-color {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.collection-note {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
}

.note-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* === ETHOS === */
.ethos {
  background: var(--card-bg);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ethos-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.ethos-pillar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ethos-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ethos-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.ethos-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  padding: 120px 48px;
  background: var(--fg);
  color: var(--white);
}

.closing-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.closing-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: -20px;
  right: 0;
  line-height: 1;
}

.closing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
  max-width: 600px;
}

.closing-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 56px;
}

.closing-stamp {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stamp-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.stamp-line {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.stamp-meta {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* === FOOTER === */
.footer {
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { order: -1; }
  .hero-image-block { aspect-ratio: 4/3; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .ethos-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-number { font-size: 3rem; }
}

/* === STORE — NAV === */
.nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
}
.nav-link:hover { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 32px; }

/* === STORE — MAIN LAYOUT === */
.store-main, .product-main, .cart-main, .checkout-main {
  padding-top: 80px;
  min-height: 100vh;
}

/* === STORE HEADER === */
.store-header {
  padding: 60px 48px 32px;
  border-bottom: 1px solid var(--border);
}
.store-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.store-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.01em;
}
.category-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.tab {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  color: var(--fg-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.15s;
  font-weight: 500;
}
.tab:hover { border-color: var(--fg); color: var(--fg); }
.tab.active {
  background: var(--fg);
  color: var(--white);
  border-color: var(--fg);
}

/* === STORE GRID === */
.product-grid-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 48px 80px;
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* === STORE CARD === */
.store-card {
  background: var(--card-bg);
  text-decoration: none;
  color: var(--fg);
  display: block;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.store-card:hover { transform: translateY(-2px); }
.store-card-image {
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.store-card-image[data-category="tees"] { background: #1a1a1a; }
.store-card-image[data-category="hoodies"] { background: #222220; }
.store-card-image[data-category="joggers"] { background: #1e1e1c; }
.store-card-image[data-category="jackets"] { background: #202018; }
.store-card-image[data-category="caps"] { background: #1c1c18; }
.card-placeholder-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
  line-height: 1;
}
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 500;
  z-index: 3;
}
.store-card-info {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
}
.card-category {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.card-name {
  font-size: 0.88rem;
  font-weight: 500;
  margin: 6px 0 4px;
}
.card-colors {
  font-size: 0.65rem;
  color: var(--fg-muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

/* === PRODUCT DETAIL === */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  min-height: calc(100vh - 80px);
}
.product-visual {
  background: var(--card-bg);
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-display {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-display[data-category="tees"] { background: #1a1a1a; }
.product-display[data-category="hoodies"] { background: #222220; }
.product-display[data-category="joggers"] { background: #1e1e1c; }
.product-display[data-category="jackets"] { background: #202018; }
.product-display[data-category="caps"] { background: #1c1c18; }
.product-display-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 12vw, 10rem);
  color: rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
  line-height: 1;
}
.product-details {
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.back-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-decoration: none;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.back-link:hover { color: var(--fg); }
.detail-category {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.detail-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-top: 4px;
}
.detail-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-top: -4px;
}
.detail-description {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 420px;
}
.option-group { display: flex; flex-direction: column; gap: 10px; }
.option-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-muted);
}
.size-picker { display: flex; gap: 6px; flex-wrap: wrap; }
.size-option input { display: none; }
.size-option span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.15s;
  min-width: 48px;
  text-align: center;
}
.size-option input:checked + span {
  background: var(--fg);
  color: var(--white);
  border-color: var(--fg);
}
.size-option:hover span { border-color: var(--fg); }
.color-picker { display: flex; gap: 6px; flex-wrap: wrap; }
.color-option input { display: none; }
.color-option span {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.15s;
}
.color-option input:checked + span {
  background: var(--fg);
  color: var(--white);
  border-color: var(--fg);
}
.color-option:hover span { border-color: var(--fg); }
.btn-add-cart {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 8px;
  width: 100%;
}
.btn-add-cart:hover { background: var(--accent-dark); }
.product-meta {
  margin-top: 16px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.meta-row { font-size: 0.78rem; color: var(--fg-muted); }

/* === CART === */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  min-height: calc(100vh - 80px);
}
.cart-items-col {
  padding: 60px 48px;
  border-right: 1px solid var(--border);
}
.cart-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.01em;
  margin-bottom: 40px;
}
.cart-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 300;
}
.cart-items { display: flex; flex-direction: column; gap: 2px; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
}
.cart-item-image {
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cart-item-image[data-category="tees"] { background: #1a1a1a; }
.cart-item-image[data-category="hoodies"] { background: #222220; }
.cart-item-image[data-category="joggers"] { background: #1e1e1c; }
.cart-item-image[data-category="jackets"] { background: #202018; }
.cart-item-image[data-category="caps"] { background: #1c1c18; }
.cart-item-name {
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}
.cart-item-name:hover { color: var(--accent); }
.cart-item-variant { font-size: 0.75rem; color: var(--fg-muted); margin-bottom: 4px; }
.cart-item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.cart-item-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.qty-control { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); }
.qty-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--card-bg); }
.qty-value {
  width: 36px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.remove-btn {
  background: none;
  border: none;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.remove-btn:hover { color: var(--accent); }

/* === CART SUMMARY === */
.cart-summary-col {
  padding: 60px 40px;
  background: var(--card-bg);
  position: sticky;
  top: 80px;
  height: fit-content;
}
.cart-summary { display: flex; flex-direction: column; gap: 16px; }
.summary-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--fg-muted);
}
.summary-row.summary-total {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-top: 4px;
}
.summary-divider { height: 1px; background: var(--border); }
.btn-checkout {
  display: block;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 16px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-top: 8px;
  transition: background 0.15s;
}
.btn-checkout:hover { background: var(--accent-dark); }
.continue-shopping {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 12px;
}
.continue-shopping:hover { color: var(--fg); }

/* === CHECKOUT === */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  min-height: calc(100vh - 80px);
}
.checkout-form-col {
  padding: 60px 48px;
  border-right: 1px solid var(--border);
}
.checkout-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.01em;
  margin-bottom: 40px;
}
.checkout-form { display: flex; flex-direction: column; gap: 32px; }
.form-section { display: flex; flex-direction: column; gap: 16px; }
.form-section-title {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); font-weight: 500; }
.field-input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
  border-radius: 0;
}
.field-input:focus { border-color: var(--fg); }
.form-row { display: grid; grid-template-columns: 1fr 80px 80px; gap: 12px; }
.checkout-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 12px 16px;
  font-size: 0.82rem;
  color: #991b1b;
}
.btn-pay {
  background: var(--fg);
  color: var(--white);
  border: none;
  padding: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s;
}
.btn-pay:hover:not(:disabled) { background: var(--accent); }
.btn-pay:disabled { opacity: 0.6; cursor: not-allowed; }
.checkout-summary-col {
  padding: 60px 40px;
  background: var(--card-bg);
  position: sticky;
  top: 80px;
  height: fit-content;
}
.checkout-items { display: flex; flex-direction: column; gap: 16px; }
.checkout-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 16px; align-items: center; }
.checkout-item-img {
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.checkout-item-img[data-category="tees"] { background: #1a1a1a; }
.checkout-item-img[data-category="hoodies"] { background: #222220; }
.checkout-item-img[data-category="joggers"] { background: #1e1e1c; }
.checkout-item-img[data-category="jackets"] { background: #202018; }
.checkout-item-img[data-category="caps"] { background: #1c1c18; }
.checkout-item-qty {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--fg);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.checkout-item-name { font-size: 0.82rem; font-weight: 500; }
.checkout-item-variant { font-size: 0.7rem; color: var(--fg-muted); margin-top: 2px; }
.checkout-item-price { font-size: 0.88rem; font-weight: 500; text-align: right; }
.checkout-shipping-row .checkout-item-name { color: var(--fg-muted); font-size: 0.82rem; }
.checkout-divider { height: 1px; background: var(--border); }
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

/* === CONFIRMATION === */
.confirmation-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px;
}
.confirmation-box {
  max-width: 480px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.confirm-icon {
  width: 72px;
  height: 72px;
  border: 2px solid var(--fg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--fg);
}
.confirm-icon.cancel-icon { border-color: var(--fg-muted); color: var(--fg-muted); }
.confirm-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.01em;
}
.confirm-body { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.7; max-width: 360px; }
.confirm-sub { font-size: 0.8rem; color: var(--fg-muted); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: background 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--accent-dark); }

/* === EMPTY STATE === */
.empty-state {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.empty-title { font-size: 1.1rem; color: var(--fg-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .product-visual { position: relative; top: auto; height: 50vw; }
  .product-details { padding: 40px 24px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-items-col { padding: 40px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .cart-summary-col { padding: 40px 24px; position: relative; top: auto; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-form-col { padding: 40px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .checkout-summary-col { padding: 40px 24px; position: relative; top: auto; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-row .form-field:last-child { grid-column: span 2; }
}
@media (max-width: 600px) {
  .nav, .hero, .collection, .ethos, .closing, .footer,
  .store-header, .product-grid-wrapper, .cart-items-col,
  .checkout-form-col { padding-left: 24px; padding-right: 24px; }
  .nav { padding: 16px 24px; }
  .store-grid { grid-template-columns: 1fr 1fr; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-controls { grid-column: span 2; flex-direction: row; justify-content: space-between; }
}