/* ============================================================
   FRAMD — Art That Hits Different
   Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --blue:     #D6E4F0;
  --offwhite: #F0EDE4;
  --black:    #0A0A0A;
  --coral:    #E8502A;
  --gray:     #D8D8D8;
  --white:    #FFFFFF;
  --nav-h:    70px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--offwhite);
  color: var(--black);
  cursor: none;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; font-family: 'Space Grotesk', sans-serif; border: none; }
ul { list-style: none; }

/* ── Custom Cursor ─────────────────────────────────────────── */
#cursor {
  width: 16px;
  height: 16px;
  background: var(--black);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: width .15s ease, height .15s ease, background .15s ease;
  will-change: left, top;
}
#cursor.hovering {
  width: 40px;
  height: 40px;
  background: var(--coral);
  mix-blend-mode: multiply;
}

/* ── Splash Screen ─────────────────────────────────────────── */
.splash {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.splash-line {
  width: 48px;
  height: 2px;
  background: var(--coral);
  opacity: 0;
}
.splash-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(88px, 18vw, 200px);
  color: var(--white);
  letter-spacing: 8px;
  line-height: 1;
}
.splash-tagline {
  font-size: clamp(11px, 1.4vw, 15px);
  color: rgba(255,255,255,.4);
  letter-spacing: 7px;
  text-transform: uppercase;
  opacity: 0;
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background .35s ease, box-shadow .35s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 26px;
  letter-spacing: 4px;
  color: var(--black);
  transition: color .2s;
}
.nav-logo:hover { color: var(--coral); }
.nav-links { display: flex; gap: 44px; }
.nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  padding: 8px;
  color: var(--black);
  display: flex;
  align-items: center;
}
.cart-icon-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 17px; height: 17px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}
.cart-count.visible { display: flex; }

/* ── Ticker ────────────────────────────────────────────────── */
.ticker {
  background: var(--black);
  height: 44px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--white);
  padding: 0 24px;
  white-space: nowrap;
}
.ticker-dot {
  color: var(--coral);
  font-family: 'Bebas Neue', cursive;
  font-size: 14px;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: var(--white);
  border: 2px solid var(--coral);
  padding: 15px 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background .22s, color .22s, transform .22s, border-color .22s;
}
.btn-primary:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 15px 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background .22s, color .22s, transform .22s;
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Hero (Homepage) ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--blue);
  display: flex;
  align-items: flex-end;
  padding: 0 48px 88px;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-deco {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(200px, 30vw, 420px);
  color: rgba(255,255,255,.22);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -10px;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--coral);
}
.hero-heading {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(80px, 13vw, 158px);
  line-height: .9;
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-heading .accent { color: var(--coral); }
.hero-sub {
  font-size: 15px;
  color: rgba(10,10,10,.55);
  margin-bottom: 44px;
  line-height: 1.7;
  max-width: 380px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; right: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(10,10,10,.35);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(10,10,10,.25);
  transform-origin: top;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(.3); opacity: .3; }
}

/* ── Section Layout ────────────────────────────────────────── */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .95;
  letter-spacing: -.5px;
}
.section-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(10,10,10,.4);
  margin-top: 8px;
}

/* ── Product Grid ──────────────────────────────────────────── */
.products-section { padding: 80px 48px; background: var(--offwhite); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), box-shadow .35s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,.12);
}

/* ── Product Image Wrap & Placeholder ─────────────────────── */
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray);
}
.product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.shop-item:hover .product-img-wrap img    { transform: scale(1.05); }
.img-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  gap: 10px;
  padding: 20px;
}
.img-placeholder svg {
  width: 36px; height: 36px;
  stroke: rgba(0,0,0,.25);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.img-placeholder .ph-label {
  font-size: 9px;
  font-weight: 600;
  color: rgba(0,0,0,.35);
  letter-spacing: .5px;
  word-break: break-all;
  text-align: center;
  line-height: 1.5;
  font-family: monospace;
}
.img-placeholder .ph-add {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,.25);
  padding: 5px 12px;
  border: 1px dashed rgba(0,0,0,.2);
}
/* Hover overlay */
.card-hover-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.25,.46,.45,.94), background .2s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.product-card:hover .card-hover-overlay,
.shop-item:hover .card-hover-overlay { transform: translateY(0); }
.card-hover-overlay:hover { background: var(--coral); }

/* ── Product Card Info ─────────────────────────────────────── */
.product-info { padding: 18px 20px 22px; }
.product-name {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.collection-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.tag-rap    { background: var(--blue);    color: var(--black); }
.tag-cars   { background: #DDF0DD;        color: var(--black); }
.tag-movies { background: #F0E6DD;        color: var(--black); }
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-price { font-size: 15px; font-weight: 700; }
.add-cart-btn {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,.15);
  color: var(--black);
  padding: 7px 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s;
}
.add-cart-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* ── Collections Strip ─────────────────────────────────────── */
.collections-section { padding: 80px 48px; background: var(--black); }
.collections-section .section-title { color: var(--white); }
.collections-section .section-sub   { color: rgba(255,255,255,.3); }
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1400px;
  margin: 0 auto;
}
.collection-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.coll-bg { position: absolute; inset: 0; transition: transform .6s ease; }
.coll-bg-rap    { background: linear-gradient(135deg,#1a0a0a 0%,#2d1a1a 35%,#7a2f2f 100%); }
.coll-bg-cars   { background: linear-gradient(135deg,#0a1220 0%,#1a2d42 35%,#2b5fa8 100%); }
.coll-bg-movies { background: linear-gradient(135deg,#1a1a0a 0%,#2d2a1a 35%,#8b7a2f 100%); }
.collection-card:hover .coll-bg { transform: scale(1.06); }
.coll-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.coll-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(0,0,0,.88) 0%,rgba(0,0,0,.2) 50%,transparent 80%);
}
.coll-content { position: relative; z-index: 2; padding: 40px; }
.coll-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 11px;
  letter-spacing: 5px;
  color: rgba(255,255,255,.3);
  margin-bottom: 10px;
}
.coll-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  line-height: .9;
  margin-bottom: 6px;
}
.coll-sub {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.coll-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  transition: gap .25s;
}
.collection-card:hover .coll-link { gap: 18px; }

/* ── Trust Badges ──────────────────────────────────────────── */
.trust-section {
  background: var(--blue);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 48px;
  position: relative;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 28px;
  background: rgba(10,10,10,.15);
}
.trust-icon { font-size: 22px; flex-shrink: 0; }
.trust-text { font-size: 12px; font-weight: 600; }
.trust-text strong { display: block; font-size: 13px; }
.trust-text span   { color: rgba(10,10,10,.5); font-size: 11px; }

/* ── Email Section ─────────────────────────────────────────── */
.email-section { background: var(--coral); padding: 88px 48px; text-align: center; }
.email-kicker {
  font-size: 10px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 16px;
}
.email-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(44px, 7vw, 80px);
  color: var(--white);
  line-height: .95;
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.email-sub { color: rgba(255,255,255,.65); font-size: 13px; margin-bottom: 36px; letter-spacing: .5px; }
.email-form { display: flex; max-width: 480px; margin: 0 auto; }
.email-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: rgba(255,255,255,.92);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  outline: none;
  color: var(--black);
}
.email-input::placeholder { color: rgba(0,0,0,.4); }
.email-submit {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 16px 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s;
}
.email-submit:hover { background: #222; }
.email-disclaimer { margin-top: 14px; font-size: 10px; color: rgba(255,255,255,.35); letter-spacing: .5px; }

/* ── Footer ────────────────────────────────────────────────── */
footer { background: var(--black); color: var(--white); padding: 64px 48px 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 40px;
  letter-spacing: 5px;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--coral); }
.footer-tagline {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.social-btn:hover { border-color: var(--coral); background: var(--coral); }
.social-btn svg { width: 14px; height: 14px; fill: var(--white); }
.footer-col-title {
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 20px;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-list a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-nav-list a:hover { color: var(--coral); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,.22); letter-spacing: .5px; }
.zentrix-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 10px;
  color: rgba(255,255,255,.4);
  letter-spacing: .5px;
  transition: all .2s;
}
.zentrix-badge:hover { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.25); }
.zentrix-dot { width: 6px; height: 6px; background: var(--coral); border-radius: 50%; flex-shrink: 0; }

/* ── Toast ─────────────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 36px; right: 36px;
  background: var(--black);
  color: var(--white);
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  z-index: 99999;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  border-left: 3px solid var(--coral);
}
#toast.show { opacity: 1; transform: translateY(0); }
.toast-check {
  width: 18px; height: 18px;
  background: var(--coral);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
}

/* ── Page Hero (Shop / Collection pages) ───────────────────── */
.page-hero {
  background: var(--black);
  padding: 100px 48px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero-deco {
  position: absolute;
  right: -40px; bottom: -60px;
  font-family: 'Bebas Neue', cursive;
  font-size: 280px;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -12px;
}
.page-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(64px, 12vw, 140px);
  color: var(--white);
  line-height: .9;
  letter-spacing: -1px;
}
.page-title span { color: var(--coral); }
.page-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: 16px;
}

/* ── Filter Bar ────────────────────────────────────────────── */
.filter-bar {
  background: var(--offwhite);
  padding: 28px 48px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.filter-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(0,0,0,.3);
  margin-right: 8px;
}
.filter-pill {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,.15);
  color: var(--black);
  padding: 8px 22px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  transition: all .2s;
  border-radius: 100px;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* ── Shop / Masonry Grid ───────────────────────────────────── */
.shop-grid-section { padding: 40px 48px 80px; background: var(--offwhite); }
.shop-grid {
  columns: 3;
  column-gap: 18px;
  max-width: 1400px;
  margin: 0 auto;
}
.shop-item {
  break-inside: avoid;
  margin-bottom: 18px;
  background: var(--white);
  overflow: hidden;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  display: block;
}
.shop-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}
.shop-item .product-img-wrap { aspect-ratio: 3/4; }
.shop-item-info { padding: 14px 16px 18px; }
.shop-item-name  { font-weight: 700; font-size: 13px; margin-bottom: 4px; }
.shop-item-sub   { font-size: 11px; color: rgba(0,0,0,.45); margin-bottom: 10px; }
.shop-item-bottom { display: flex; align-items: center; justify-content: space-between; }
.shop-item-price  { font-weight: 700; font-size: 14px; }

/* ── Collection Hero ───────────────────────────────────────── */
.collection-hero {
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.rap-hero    { background: var(--coral); }
.cars-hero   { background: var(--black); }
.movies-hero { background: var(--blue);  }
.collection-hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(72px, 14vw, 120px);
  line-height: .9;
  letter-spacing: -1px;
  position: relative; z-index: 2;
}
.rap-hero .collection-hero-title,
.cars-hero .collection-hero-title  { color: var(--white); }
.movies-hero .collection-hero-title { color: var(--black); }
.collection-hero-sub {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.7;
  max-width: 480px;
  margin: 14px auto 0;
  position: relative; z-index: 2;
}
.rap-hero .collection-hero-sub    { color: rgba(255,255,255,.65); }
.cars-hero .collection-hero-sub   { color: rgba(255,255,255,.5); }
.movies-hero .collection-hero-sub { color: rgba(10,10,10,.55); }
.collection-hero-deco {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(160px, 28vw, 300px);
  line-height: 1;
  pointer-events: none; user-select: none;
  white-space: nowrap;
  letter-spacing: -12px;
}
.rap-hero .collection-hero-deco    { color: rgba(255,255,255,.06); }
.cars-hero .collection-hero-deco   { color: rgba(255,255,255,.04); }
.movies-hero .collection-hero-deco { color: rgba(0,0,0,.06); }

/* ── Product Detail Page ───────────────────────────────────── */
.product-detail-page { padding-top: var(--nav-h); min-height: 100vh; background: var(--offwhite); }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - var(--nav-h));
}
.product-detail-img-col {
  background: var(--blue);
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.product-main-img-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3/4;
  box-shadow: 0 32px 80px rgba(0,0,0,.2);
}
.product-main-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-main-img-wrap .img-placeholder { border-radius: 0; }
.product-detail-info-col { padding: 64px; display: flex; flex-direction: column; }
.product-breadcrumb {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(0,0,0,.3);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 8px;
}
.product-breadcrumb a:hover { color: var(--coral); }
.breadcrumb-sep { color: rgba(0,0,0,.2); }
.product-detail-name {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: .95;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.product-detail-sub { font-size: 13px; color: rgba(0,0,0,.45); margin-bottom: 28px; }
.product-detail-price { font-size: 32px; font-weight: 700; margin-bottom: 36px; }
.option-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(0,0,0,.4);
  margin-bottom: 12px;
}
.size-pills   { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.finish-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.size-pill,
.finish-pill {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,.2);
  padding: 10px 24px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  transition: all .2s;
}
.size-pill.active, .size-pill:hover,
.finish-pill.active, .finish-pill:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.qty-row { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.qty-stepper { display: flex; align-items: center; border: 1.5px solid rgba(0,0,0,.2); width: fit-content; }
.qty-btn {
  width: 44px; height: 44px;
  background: transparent; border: none;
  font-size: 20px; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  color: var(--black); transition: background .2s;
}
.qty-btn:hover { background: rgba(0,0,0,.05); }
.qty-display {
  width: 56px; text-align: center;
  font-size: 15px; font-weight: 700;
  border-left: 1.5px solid rgba(0,0,0,.2);
  border-right: 1.5px solid rgba(0,0,0,.2);
  height: 44px; line-height: 44px;
}
.atc-btn {
  width: 100%;
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 18px 32px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  transition: background .22s, transform .22s;
  margin-bottom: 16px;
}
.atc-btn:hover { background: var(--black); transform: translateY(-2px); }
.shipping-note {
  text-align: center;
  font-size: 11px;
  color: rgba(0,0,0,.38);
  letter-spacing: 1px;
  margin-bottom: 36px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.shipping-note::before, .shipping-note::after {
  content: '';
  flex: 1; height: 1px;
  background: rgba(0,0,0,.08);
}
/* Accordion */
.accordion { border-top: 1px solid rgba(0,0,0,.08); }
.acc-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.acc-header {
  width: 100%; background: none; border: none;
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; text-align: left;
  color: var(--black); font-family: 'Space Grotesk', sans-serif;
}
.acc-plus {
  font-size: 22px; font-weight: 300;
  transition: transform .3s;
  color: rgba(0,0,0,.35); flex-shrink: 0;
}
.acc-item.open .acc-plus { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-body-inner {
  padding-bottom: 20px;
  font-size: 13px; color: rgba(0,0,0,.55); line-height: 1.8;
}
.acc-body-inner ul { padding-left: 16px; list-style: disc; }
.acc-body-inner li { margin-bottom: 4px; }
/* Related */
.related-section { padding: 64px 48px; background: var(--offwhite); border-top: 1px solid rgba(0,0,0,.06); }

/* ── Cart Page ─────────────────────────────────────────────── */
.cart-page { background: var(--offwhite); min-height: 100vh; }
.cart-page-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 48px 80px;
  align-items: start;
}
.cart-page-title { font-family: 'Bebas Neue', cursive; font-size: 64px; margin-bottom: 6px; letter-spacing: -.5px; }
.cart-count-text { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,.38); margin-bottom: 36px; }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.cart-item-img-wrap {
  aspect-ratio: 3/4;
  background: var(--gray);
  overflow: hidden; position: relative;
}
.cart-item-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.cart-item-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.cart-item-meta { font-size: 11px; color: rgba(0,0,0,.45); margin-bottom: 12px; letter-spacing: .3px; }
.cart-item-qty {
  display: flex; align-items: center;
  border: 1px solid rgba(0,0,0,.15);
  width: fit-content;
}
.cart-qty-btn {
  width: 30px; height: 30px;
  background: transparent; border: none;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.cart-qty-btn:hover { background: rgba(0,0,0,.05); }
.cart-qty-num {
  width: 36px; text-align: center;
  font-size: 13px; font-weight: 700;
  border-left: 1px solid rgba(0,0,0,.15);
  border-right: 1px solid rgba(0,0,0,.15);
  height: 30px; line-height: 30px;
}
.cart-item-right { text-align: right; }
.cart-item-price { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.cart-remove-btn {
  background: none; border: none;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(0,0,0,.28); transition: color .2s;
}
.cart-remove-btn:hover { color: var(--coral); }
.empty-cart { text-align: center; padding: 80px 0; }
.empty-cart-icon { font-size: 56px; margin-bottom: 20px; opacity: .3; }
.empty-cart-text { font-family: 'Bebas Neue', cursive; font-size: 36px; color: rgba(0,0,0,.2); margin-bottom: 8px; }
.empty-cart-sub  { font-size: 12px; color: rgba(0,0,0,.32); margin-bottom: 28px; letter-spacing: 1px; text-transform: uppercase; }
/* Order Summary */
.order-summary { position: sticky; top: 90px; background: var(--black); color: var(--white); padding: 40px; }
.order-summary-title { font-family: 'Bebas Neue', cursive; font-size: 36px; margin-bottom: 28px; }
.summary-line {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.5);
  margin-bottom: 12px; letter-spacing: .3px;
}
.summary-line.total {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 16px; margin-top: 8px;
  font-size: 18px; font-weight: 700;
  color: var(--white);
}
.summary-shipping-note { font-size: 10px; color: rgba(255,255,255,.25); letter-spacing: 1px; margin-top: 4px; margin-bottom: 24px; text-align: center; }
.checkout-section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 18px; letter-spacing: 2px;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px; margin-top: 24px;
}
.form-field { margin-bottom: 10px; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  padding: 12px 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; outline: none;
  transition: border-color .2s;
}
.form-input:focus { border-color: rgba(255,255,255,.4); }
.form-input::placeholder { color: rgba(255,255,255,.22); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.place-order-btn {
  width: 100%;
  background: var(--coral); color: var(--white); border: none;
  padding: 18px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  margin-top: 20px;
  transition: background .22s, transform .22s;
}
.place-order-btn:hover { background: #cc3f1f; transform: translateY(-2px); }
.demo-disclaimer { text-align: center; font-size: 9px; color: rgba(255,255,255,.18); margin-top: 12px; letter-spacing: 1px; text-transform: uppercase; }
.order-success-panel { display: none; text-align: center; padding: 20px 0; }
.order-success-panel.show { display: block; }
.success-checkmark {
  width: 64px; height: 64px;
  background: var(--coral); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.success-title { font-family: 'Bebas Neue', cursive; font-size: 36px; color: var(--white); margin-bottom: 8px; }
.success-sub { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.7; }
.continue-shopping-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--coral);
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  border-bottom: 1px solid rgba(232,80,42,.3);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.continue-shopping-link:hover { border-color: var(--coral); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
  .shop-grid { columns: 2; }
  .cart-page-inner { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-img-col { position: static; height: 55vw; max-height: 480px; }
  .product-detail-info-col { padding: 40px 48px 64px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 80px 20px 60px; }
  .hero-deco { display: none; }
  .products-section { padding: 60px 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .collections-grid { grid-template-columns: 1fr; }
  .trust-section { flex-direction: column; gap: 20px; padding: 36px 20px; }
  .trust-item { padding: 0; }
  .trust-item + .trust-item::before { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .shop-grid { columns: 1; }
  .shop-grid-section { padding: 32px 20px 60px; }
  .filter-bar { padding: 20px; }
  .page-hero { padding: 80px 20px 48px; }
  .collections-section { padding: 60px 20px; }
  .email-section { padding: 64px 20px; }
  .email-form { flex-direction: column; }
  .cart-page-inner { padding: 80px 20px 60px; gap: 40px; }
  .product-detail-info-col { padding: 32px 20px 60px; }
  .product-detail-img-col { padding: 32px 40px; }
  .related-section { padding: 48px 20px; }
  .collection-hero { padding: 100px 20px 60px; }
  .collection-hero-deco { display: none; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-heading  { font-size: 72px; }
  .hero-btns     { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .products-section { padding: 48px 16px; }
}
