:root {
  --bg: #0C0A09;
  --bg-warm: #1C1917;
  --bg-card: #292524;
  --fg: #FAFAF9;
  --fg-muted: #A8A29E;
  --accent: #F59E0B;
  --accent-warm: #D97706;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --highlight: #FBBF24;
  --success: #34D399;
  --radius: 16px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  font-family: var(--font-body);
}

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

.hero h1 .accent {
  color: var(--accent);
}

.hero .lede {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 120px 24px;
  background: var(--bg-warm);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
  max-width: 700px;
}

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

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

.step-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  border: 1px solid rgba(168, 162, 158, 0.1);
  transition: border-color 0.3s ease;
}

.step-card:hover {
  border-color: var(--accent);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.12);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

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

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

/* REVENUE MODEL */
.revenue {
  padding: 120px 24px;
  position: relative;
}

.revenue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
}

.revenue-card {
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.revenue-card.dropship {
  background: linear-gradient(135deg, #1a1510 0%, #292015 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.revenue-card.affiliate {
  background: linear-gradient(135deg, #0f1a15 0%, #152920 100%);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

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

.revenue-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.revenue-card .margin {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.revenue-card.affiliate .margin {
  color: var(--success);
}

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

/* CATEGORIES */
.categories {
  padding: 120px 24px;
  background: var(--bg-warm);
  position: relative;
}

.categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(168, 162, 158, 0.08);
  transition: all 0.3s ease;
}

.cat-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.cat-emoji {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.cat-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.cat-item .commission {
  font-size: 0.8rem;
  color: var(--success);
}

/* CLOSING */
.closing {
  padding: 140px 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 70%);
  border-radius: 50%;
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

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

.closing p {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

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

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

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .revenue-grid {
    grid-template-columns: 1fr;
  }
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    gap: 28px;
  }
  .hero {
    min-height: auto;
    padding: 100px 20px 80px;
  }
}

@media (max-width: 480px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .revenue-card {
    padding: 32px 24px;
  }
}

/* =====================
   NAVIGATION
   ===================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 162, 158, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
  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;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--fg);
  background: rgba(168, 162, 158, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--accent);
  color: #0C0A09;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--highlight);
  transform: translateY(-1px);
}

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

/* Landing page hero needs padding for fixed nav */
.hero { padding-top: 130px; }

/* Hero CTA button */
.hero-cta-group {
  margin-bottom: 40px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--accent);
  color: #0C0A09;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.25);
}

.btn-hero:hover {
  background: var(--highlight);
  transform: translateY(-2px);
  box-shadow: 0 4px 60px rgba(245, 158, 11, 0.4);
}

/* =====================
   SHOP SECTIONS
   ===================== */
.shop-hero {
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}

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

.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.shop-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin-top: 12px;
}

/* Category strip */
.cat-strip {
  padding: 0 24px 40px;
}

.cat-strip-inner {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(168, 162, 158, 0.15);
  color: var(--fg-muted);
  background: var(--bg-card);
  transition: all 0.2s;
}

.cat-pill:hover, .cat-pill.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

/* Shop sections */
.shop-section {
  padding: 60px 24px 80px;
}

.shop-section--warm {
  background: var(--bg-warm);
  position: relative;
}

.shop-section--warm::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.section-link:hover { opacity: 0.75; }

.results-count {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* =====================
   PRODUCT CARDS
   ===================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(168, 162, 158, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a1816;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.04);
}

.product-img-fallback {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product-img-fallback--lg { font-size: 6rem; }

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  background: var(--accent);
  color: #0C0A09;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
}

.product-badge--lg {
  position: static;
  display: inline-block;
  margin-top: 16px;
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-category {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.product-subtitle {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stars {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: -1px;
}

.stars--lg { font-size: 1.2rem; }

.rating-val {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.review-count {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

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

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

/* =====================
   CATEGORY BROWSE GRID
   ===================== */
.cat-browse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cat-browse-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(168, 162, 158, 0.08);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.25s;
}

.cat-browse-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cat-browse-emoji { font-size: 2.4rem; display: block; margin-bottom: 4px; }

.cat-browse-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.cat-browse-commission {
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 500;
}

.cat-browse-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-top: 4px;
}

.cat-browse-link {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
}

/* =====================
   CATEGORY HERO
   ===================== */
.cat-hero {
  padding: 110px 24px 60px;
  position: relative;
}

.breadcrumb {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}

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

.cat-hero-emoji {
  display: block;
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.cat-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cat-hero-desc {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 20px;
}

.cat-commission-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: var(--success);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* =====================
   PRODUCT DETAIL
   ===================== */
.product-breadcrumb {
  padding: 90px 24px 0;
}

.product-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-breadcrumb a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.product-breadcrumb span {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

.breadcrumb-current {
  color: var(--fg);
  font-size: 0.85rem;
}

.product-detail {
  padding: 40px 24px 80px;
}

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

.product-detail-img-wrap {
  position: sticky;
  top: 80px;
}

.product-detail-img {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(168, 162, 158, 0.1);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
}

.product-category-tag {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.product-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

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

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.rating-val-lg {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.review-count-lg {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

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

.price-current-lg {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fg);
}

.price-original-lg {
  font-size: 1rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}

.price-save {
  font-size: 0.9rem;
  color: var(--success);
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(52, 211, 153, 0.1);
  border-radius: 100px;
}

.product-detail-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--accent);
  color: #0C0A09;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.2);
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

.btn-buy:hover {
  background: var(--highlight);
  transform: translateY(-2px);
  box-shadow: 0 4px 50px rgba(245, 158, 11, 0.4);
}

.affiliate-notice {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
}

/* =====================
   SHOP FOOTER
   ===================== */
.shop-footer {
  padding: 60px 24px 40px;
  border-top: 1px solid rgba(168, 162, 158, 0.1);
  background: var(--bg-warm);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(168, 162, 158, 0.5);
  border-top: 1px solid rgba(168, 162, 158, 0.08);
  padding-top: 24px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: var(--accent);
  color: #0C0A09;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--highlight); }

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

.empty-state span { font-size: 3rem; display: block; margin-bottom: 16px; }
.empty-state p { margin-bottom: 24px; }

/* Error page */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 24px;
}

.error-page .container {
  text-align: center;
}

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

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

.error-page p {
  color: var(--fg-muted);
  margin-bottom: 28px;
}

/* =====================
   STAR RATING
   ===================== */
.star.filled { color: var(--accent); }
.star { color: rgba(168,162,158,0.3); }

/* =====================
   RESPONSIVE - SHOP
   ===================== */
@media (max-width: 1024px) {
  .product-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cat-browse-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cat-browse-grid { grid-template-columns: 1fr 1fr; }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-detail-img-wrap { position: static; }

  .footer-inner { flex-direction: column; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .cat-browse-grid { grid-template-columns: 1fr; }
  .cat-strip-inner { gap: 6px; }
}