:root {
  --bg-dark: #0a0a0a;
  --bg-section: #111111;
  --yellow: #FFD700;
  --yellow-dim: #c4a400;
  --amber: #FF8C00;
  --text-primary: #f0f0f0;
  --text-secondary: #999999;
  --text-muted: #666666;
  --card-bg: #1a1a1a;
  --card-border: #2a2a2a;
  --drip-color: #FFD700;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1200 50%, #0a0a0a 100%);
}

.hero-inner {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid var(--yellow-dim);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero h1 .highlight {
  color: var(--yellow);
  position: relative;
}

.lede {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 0.4rem 1rem;
  border-radius: 6px;
}

.hero-drip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  z-index: 1;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-primary);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.step {
  position: relative;
  padding: 2rem;
}

.step-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 4rem;
  color: var(--yellow);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.step p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === FEATURES === */
.features {
  padding: 4rem 2rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: var(--yellow-dim);
}

.feature-large {
  grid-column: span 2;
  background: linear-gradient(135deg, #1a1a1a 0%, #1f1a00 100%);
  border-color: var(--yellow-dim);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1200 50%, var(--bg-dark) 100%);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.closing-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.closing-tagline {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--card-border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem;
  color: var(--yellow);
}

.footer-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: #0a0a0a;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #ffe033;
  transform: translateY(-1px);
}

.btn-primary.btn-large {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--yellow);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--yellow-dim);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--yellow);
  color: #0a0a0a;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text-secondary);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

/* === HERO CTA === */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.hero-cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === NAV === */
.store-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--card-border);
}

.nav-brand {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  color: var(--yellow);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

/* === SHOP HEADER === */
.shop-header {
  padding: 5rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1200 60%, #0a0a0a 100%);
}

.shop-header-inner {
  max-width: 700px;
  margin: 0 auto;
}

/* === PRODUCT GRID === */
.product-grid-section {
  padding: 3rem 2rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.product-card:hover {
  border-color: var(--yellow-dim);
  transform: translateY(-2px);
}

.product-featured {
  grid-column: span 3;
  flex-direction: row;
  background: linear-gradient(135deg, #1a1a1a 0%, #1f1a00 100%);
  border-color: var(--yellow-dim);
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-featured .product-card-link {
  flex-direction: row;
  flex: 1;
}

/* === CARICATURE PLACEHOLDERS === */
.product-caricature {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--card-border);
}

.product-caricature-lg {
  aspect-ratio: auto;
  min-height: 220px;
  min-width: 220px;
  border-bottom: none;
  border-right: 1px solid var(--card-border);
}

.caricature-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
}

.caricature-featured {
  padding: 3rem;
}

.caricature-sm .caricature-emoji {
  font-size: 2.5rem;
}

.caricature-xl .caricature-emoji {
  font-size: 5rem;
}

.caricature-emoji {
  font-size: 3.5rem;
  line-height: 1;
}

.caricature-emoji-xl {
  font-size: 6rem;
}

.caricature-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.caricature-label-lg {
  font-size: 1rem;
}

/* === PRODUCT INFO === */
.product-info {
  padding: 1.25rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-party {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.4rem;
}

.featured-party {
  font-size: 0.75rem;
}

.product-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.product-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.product-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  color: var(--text-primary);
}

.product-savings {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow);
  background: rgba(255, 215, 0, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.product-card .btn-primary,
.product-card .btn-secondary {
  margin: 0 1.5rem 1.5rem;
  text-align: center;
}

.product-featured .btn-primary {
  margin: 1.5rem;
  align-self: flex-start;
}

/* === SHOP GUARANTEE === */
.shop-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.guarantee-icon {
  font-size: 1.25rem;
}

/* === PRODUCT DETAIL === */
.product-detail {
  padding: 3rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.detail-image-col {
  position: sticky;
  top: 6rem;
}

.detail-caricature {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.caricature-xl {
  width: 100%;
  height: 100%;
}

.detail-badge-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.detail-info-col {
  padding-top: 1rem;
}

.detail-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.detail-tagline {
  font-size: 1.1rem;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.detail-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.detail-specs {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.9rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--text-muted);
  font-weight: 500;
}

.spec-value {
  color: var(--text-secondary);
}

.detail-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  color: var(--text-primary);
}

.detail-cta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === RELATED PRODUCTS === */
.related-section {
  padding: 4rem 2rem 6rem;
  background: var(--bg-section);
  border-top: 1px solid var(--card-border);
}

.related-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.related-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

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

.related-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.related-card:hover {
  border-color: var(--yellow-dim);
}

.related-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding-bottom: 1rem;
}

.related-caricature {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--card-border);
  background: #111;
  margin-bottom: 0.75rem;
}

.related-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 0 1rem;
  margin-bottom: 0.25rem;
}

.related-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0 1rem;
}

/* === SUCCESS PAGE === */
.success-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.success-inner {
  max-width: 560px;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.success-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.success-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.success-body {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.success-specs {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  text-align: left;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .feature-large {
    grid-column: span 1;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .hero {
    min-height: 90vh;
    padding: 4rem 1.5rem;
  }

  .step {
    padding: 1.5rem;
  }

  .step-number {
    font-size: 3rem;
  }

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

  .product-featured {
    grid-column: span 2;
    flex-direction: column;
  }

  .product-caricature-lg {
    border-right: none;
    border-bottom: 1px solid var(--card-border);
    min-width: unset;
    min-height: 160px;
  }

  .product-detail-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .detail-image-col {
    position: static;
  }

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

  .store-nav {
    padding: 0.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-featured {
    grid-column: span 1;
  }

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