:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #161616;
  --fg: #f0f0f0;
  --fg-muted: #888888;
  --accent: #ff3d6a;
  --accent-alt: #ff6b35;
  --accent-glow: rgba(255, 61, 106, 0.15);
  --gradient-hot: linear-gradient(135deg, #ff3d6a 0%, #ff6b35 100%);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1200px;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 61, 106, 0.3);
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  max-width: 800px;
}

.hero h1 span {
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lede {
  font-size: 1.25rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* STATS BAR */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 24px;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* FEATURES */
.features {
  padding: 100px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.features-header {
  margin-bottom: 64px;
  max-width: 600px;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.features-header p {
  color: var(--fg-muted);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(255, 61, 106, 0.25);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* NICHES SECTION */
.niches {
  background: var(--bg-alt);
  padding: 100px 24px;
}

.niches-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.niches-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 48px;
  text-align: center;
}

.niche-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.niche-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: var(--fg);
  display: block;
}

.niche-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.3);
}

.niche-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.niche-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

/* CLOSING */
.closing {
  padding: 120px 24px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  position: relative;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  line-height: 1.7;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 24px;
  text-align: center;
}

footer p {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

footer .brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .niche-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    letter-spacing: -1px;
  }
}

@media (max-width: 480px) {
  .niche-list {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hero {
    padding: 60px 20px 40px;
    min-height: 80vh;
  }
}

/* ─── NAV ─────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  background: var(--gradient-hot);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  margin-left: 8px;
  transition: opacity 0.2s ease;
}

.nav-cta:hover {
  opacity: 0.85;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
}

/* ─── SHOP HEADER ─────────────────────────────── */
.shop-main {
  min-height: 100vh;
}

.shop-header {
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 24px 48px;
}

.shop-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.shop-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.shop-header h1 span {
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-subhead {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 500px;
}

/* ─── SHOP LAYOUT ─────────────────────────────── */
.shop-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

/* ─── SIDEBAR ─────────────────────────────────── */
.shop-sidebar {
  position: sticky;
  top: 80px;
}

.filter-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.filter-link:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
}

.filter-link.active {
  color: var(--accent);
  background: var(--accent-glow);
}

.filter-count {
  font-size: 0.75rem;
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.07);
  padding: 2px 8px;
  border-radius: 100px;
}

/* ─── PRODUCT GRID ────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.product-card:hover {
  border-color: rgba(255, 61, 106, 0.3);
  transform: translateY(-3px);
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}

.product-emoji {
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  line-height: 1;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gradient-hot);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
}

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 16px;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
}

.product-compare {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}

.shop-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--fg-muted);
}

.shop-empty-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

/* ─── PRODUCT DETAIL ──────────────────────────── */
.product-main {
  min-height: 100vh;
  padding-bottom: 80px;
}

.product-detail-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.breadcrumb a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.2);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

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

.product-detail-emoji {
  font-size: 8rem;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  line-height: 1;
}

.product-detail-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-hot);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-display);
}

.product-detail-info {
  padding-top: 8px;
}

.product-detail-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.product-detail-tagline {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
  font-style: italic;
}

.product-detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.product-detail-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-detail-compare {
  font-size: 1.1rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}

.product-detail-save {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 3px 10px;
  border-radius: 100px;
}

.product-detail-desc {
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  font-size: 0.98rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
}

.product-cta-wrap {
  margin-bottom: 28px;
}

.btn-buy {
  display: block;
  width: 100%;
  background: var(--gradient-hot);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: var(--radius);
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-buy:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.product-shipping-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 12px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.product-tag {
  font-size: 0.78rem;
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* ─── RELATED ─────────────────────────────────── */
.related-section {
  background: var(--bg-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 24px;
  margin-top: 40px;
}

.related-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.related-heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.related-heading span {
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── BUTTONS (generic) ───────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gradient-hot);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: opacity 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.85;
}

/* ─── ERROR PAGE ──────────────────────────────── */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.error-inner {
  text-align: center;
  max-width: 480px;
}

.error-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 20px;
}

.error-inner h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}

.error-message {
  color: var(--fg-muted);
  margin-bottom: 32px;
}

/* ─── HERO SHOP LINK (landing page) ──────────────── */
.hero-shop-link {
  display: inline-block;
  margin-top: 36px;
  background: var(--gradient-hot);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-shop-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.hero-shop-link-secondary {
  display: inline-block;
  margin-top: 36px;
  margin-left: 16px;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.hero-shop-link-secondary:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ─── RESPONSIVE: SHOP ────────────────────────── */
@media (max-width: 900px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .filter-label {
    width: 100%;
  }
  .filter-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-detail-image {
    max-width: 460px;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 4px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-mobile-toggle {
    display: block;
  }
  .site-nav {
    position: sticky;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-emoji {
    font-size: 5rem;
  }
}

/* ─── LANDING DROPS SECTION ──────────────────── */
.landing-drops {
  padding: 100px 24px;
  background: var(--bg);
}

.landing-drops-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.landing-drops-header {
  margin-bottom: 56px;
  max-width: 600px;
}

.landing-drops-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
  margin-top: 16px;
}

.landing-drops-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.landing-drops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.landing-drops-cta {
  text-align: center;
}

@media (max-width: 900px) {
  .landing-drops-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .landing-drops-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── TRUST BADGES ────────────────────────────── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.trust-badge {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ─── NOTIFY MODAL ────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--fg);
}

.modal-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.modal-body {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease;
}

.modal-input:focus {
  border-color: rgba(255, 61, 106, 0.5);
}

.modal-input::placeholder {
  color: var(--fg-muted);
}

.modal-submit {
  background: var(--gradient-hot);
  border: none;
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 24px;
  transition: opacity 0.2s ease;
}

.modal-submit:hover {
  opacity: 0.88;
}

/* CHECKOUT FORM */
.checkout-form-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  background: #1a1a1a;
  color: var(--fg);
  border: none;
  padding: 8px 14px;
  font-size: 1.1rem;
  cursor: pointer;
  font-family: var(--font-display);
  transition: background 0.15s;
}
.qty-btn:hover { background: #2a2a2a; }

.qty-value {
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  min-width: 36px;
  text-align: center;
  background: #111;
}

.checkout-error-banner {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}
.checkout-error-banner a { color: #fca5a5; text-decoration: underline; }

.checkout-cancelled-banner {
  background: rgba(107, 114, 128, 0.12);
  border: 1px solid rgba(107, 114, 128, 0.25);
  color: #9ca3af;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

/* END CHECKOUT FORM */

.modal-success {
  color: #4ade80;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 0;
}
/* SIZE SELECTOR */
.size-selector {
  margin-bottom: 1rem;
}

.size-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}

.size-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.size-btn {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: var(--fg);
  border-radius: 6px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.15s;
  min-width: 42px;
  text-align: center;
}

.size-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

/* IMPROVED FOOTER */
.site-footer {
  background: #0d0d0d;
  border-top: 1px solid #1a1a1a;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

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

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.footer-col ul li a:hover {
  color: var(--fg);
}

.footer-social h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.social-link:hover { color: var(--accent); }

.footer-trust {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.6;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #444;
}

/* MOBILE NAV CLOSE BUTTON */
.nav-mobile-toggle {
  font-size: 1.2rem;
  transition: color 0.15s;
}

/* END ADDITIONS */
