/* ========================================
   ORBIT TRACKERS - CSS DESIGN SYSTEM
   ======================================== */

/* CSS Variables */
:root {
  /* Colors */
  --background: oklch(0.978 0.012 85);
  --foreground: oklch(0.18 0.03 260);
  --card: oklch(0.995 0.006 85);
  --card-foreground: oklch(0.18 0.03 260);
  --muted: oklch(0.94 0.012 85);
  --muted-foreground: oklch(0.45 0.02 260);
  --border: oklch(0.88 0.015 85);
  --ember: oklch(0.65 0.19 35);
  --ember-foreground: oklch(0.98 0 0);
  --teal: oklch(0.62 0.09 200);
  --violet: oklch(0.58 0.18 295);
  --ivory: oklch(0.978 0.012 85);
  --graphite: oklch(0.18 0.03 260);

  /* Typography */
  --font-sans: "Inter", system-ui, sans-serif;

  /* Spacing & Radius */
  --radius: 0.625rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);

  /* Shadows */
  --shadow-card: 0 1px 2px oklch(0.18 0.03 260 / 0.04), 0 4px 16px -8px oklch(0.18 0.03 260 / 0.08);
  --shadow-elevated: 0 10px 40px -12px oklch(0.18 0.03 260 / 0.18);

  /* Gradients */
  --gradient-topo: linear-gradient(120deg, oklch(0.65 0.19 35) 0%, oklch(0.58 0.18 295) 50%, oklch(0.62 0.09 200) 100%);
}

/* Dark Mode */
.dark {
  --background: oklch(0.16 0.025 260);
  --foreground: oklch(0.96 0.008 85);
  --card: oklch(0.20 0.028 260);
  --card-foreground: oklch(0.96 0.008 85);
  --muted: oklch(0.24 0.028 260);
  --muted-foreground: oklch(0.70 0.02 85);
  --border: oklch(0.30 0.03 260);
  --shadow-card: 0 1px 2px oklch(0 0 0 / 0.4), 0 6px 20px -6px oklch(0 0 0 / 0.4);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Container */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
  background: var(--graphite);
  color: var(--ivory);
  font-size: 0.75rem;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  opacity: 0.8;
  color: inherit;
  transition: opacity 0.2s;
}

.lang-btn:hover {
  opacity: 1;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: oklch(0.978 0.012 85 / 0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, background 0.3s;
}

.header.scrolled {
  background: oklch(0.978 0.012 85 / 0.85);
  box-shadow: var(--shadow-card);
}

.dark .header {
  background: oklch(0.16 0.025 260 / 0.6);
}

.dark .header.scrolled {
  background: oklch(0.16 0.025 260 / 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
}

.logo-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--graphite);
  color: var(--ivory);
  border-radius: var(--radius-sm);
}

.logo-sheen {
  position: absolute;
  inset: 1px;
  border-radius: 3px;
  background: var(--gradient-topo);
  opacity: 0.8;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    gap: 0.25rem;
  }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  color: var(--muted-foreground);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
  background: var(--muted);
}

.nav-link.active {
  color: var(--ember);
  font-weight: 500;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.signal-mode-toggle {
  display: none;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: var(--card);
}

@media (min-width: 1024px) {
  .signal-mode-toggle {
    display: flex;
  }
}

.signal-btn {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 9999px;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.signal-btn:hover {
  color: var(--foreground);
}

.signal-btn.active {
  background: var(--graphite);
  color: var(--ivory);
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  color: var(--muted-foreground);
  transition: background 0.2s, color 0.2s;
}

.icon-btn:hover {
  background: var(--muted);
  color: var(--foreground);
}

.icon-moon { display: none; }
.dark .icon-sun { display: none; }
.dark .icon-moon { display: block; }

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  color: var(--muted-foreground);
  transition: background 0.2s, color 0.2s;
}

.cart-btn:hover {
  background: var(--muted);
  color: var(--foreground);
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9999px;
  background: var(--ember);
  color: var(--ember-foreground);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count.visible { display: flex !important; }

.cart-bump {
  animation: cart-bump 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cart-bump {
  0%, 100% { transform: scale(1); }
  30% { transform: scale(1.25); }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  color: var(--muted-foreground);
  transition: background 0.2s;
}

.mobile-menu-btn:hover {
  background: var(--muted);
}

.icon-close { display: none; }
.mobile-menu-btn.active .icon-menu { display: none; }
.mobile-menu-btn.active .icon-close { display: block; }

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 0.75rem 1rem;
}

.mobile-menu.open {
  display: block;
}

.dark .mobile-menu {
  background: var(--card);
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.mobile-signal-btns {
  display: flex;
  gap: 0.25rem;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.mobile-signal-btns .signal-btn {
  flex: 1;
  padding: 0.375rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
}

.mobile-signal-btns .signal-btn.active {
  background: var(--graphite);
  border-color: var(--graphite);
  color: var(--ivory);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-primary {
  background: var(--ember);
  color: var(--ember-foreground);
}

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

.btn-outline {
  border: 1px solid var(--border);
  background: transparent;
}

.btn-outline:hover {
  background: var(--muted);
}

.btn-block {
  width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, oklch(0.18 0.03 260 / 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(0.18 0.03 260 / 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.dark .hero-bg-pattern {
  background-image:
    linear-gradient(to right, oklch(1 0 0 / 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(1 0 0 / 0.04) 1px, transparent 1px);
}

.hero-bg-glow {
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  border-radius: 9999px;
  background: var(--gradient-topo);
  opacity: 0.2;
  filter: blur(64px);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  padding: 5rem 1rem;
  position: relative;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 7rem 1rem;
  }
}

.hero-content {
  max-width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: var(--card);
  color: var(--muted-foreground);
}

.eyebrow-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
}

.eyebrow-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--ember);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.65 0.19 35 / 0.4); }
  100% { box-shadow: 0 0 0 8px oklch(0.65 0.19 35 / 0); }
}

.hero-content h1 {
  font-size: 2.25rem;
  margin-top: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.75rem;
  }
}

.gradient-text {
  background: var(--gradient-topo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 36rem;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.125rem;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 16rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 600;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elevated);
}

.hero-card-glow {
  position: absolute;
  inset: -1.5rem;
  border-radius: 1.5rem;
  background: var(--gradient-topo);
  opacity: 0.2;
  filter: blur(32px);
  z-index: -1;
}

.hero-card img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
}

.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  background: oklch(0.18 0.03 260 / 0.9);
  color: var(--ivory);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.hero-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.hero-stat-value {
  font-weight: 500;
}

.signal-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-card);
  font-size: 0.75rem;
  display: none;
}

@media (min-width: 768px) {
  .signal-badge {
    display: block;
  }
}

.signal-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-right: 0.25rem;
}

.signal-detail {
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* Animations */
.fade-up {
  animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: oklch(0.995 0.006 85 / 0.5);
}

.section-muted {
  background: oklch(0.94 0.012 85 / 0.4);
}

.dark .section-alt {
  background: oklch(0.20 0.028 260 / 0.5);
}

.dark .section-muted {
  background: oklch(0.22 0.035 260 / 0.4);
}

.section-header {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-header .eyebrow {
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 1.875rem;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

.section-desc {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

/* ========================================
   CATEGORIES
   ======================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  position: relative;
  aspect-ratio: 5 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
}

.category-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.18 0.03 260 / 0.9) 0%, oklch(0.18 0.03 260 / 0.3) 50%, transparent 100%);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}

.category-name {
  color: var(--ivory);
  font-size: 1.125rem;
  font-weight: 600;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: oklch(0.978 0.012 85 / 0.7);
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.products-spotlight-grid,
.products-grid {
  display: grid;
  gap: 1.5rem;
}

.products-spotlight-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .products-spotlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.products-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}

.product-card:hover {
  box-shadow: var(--shadow-elevated);
}

.product-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  z-index: 2;
}

.badge {
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

.badge-ember {
  background: var(--ember);
  color: var(--ember-foreground);
}

.badge-teal {
  background: var(--teal);
  color: oklch(0.98 0 0);
}

.badge-violet {
  background: var(--violet);
  color: oklch(0.98 0 0);
}

.product-image {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.product-info {
  padding: 1rem;
}

.product-signal {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.signal-gps {
  background: oklch(0.62 0.09 200 / 0.1);
  color: var(--teal);
}

.signal-cell {
  background: oklch(0.65 0.19 35 / 0.1);
  color: var(--ember);
}

.signal-bt {
  background: oklch(0.58 0.18 295 / 0.1);
  color: var(--violet);
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-name a:hover {
  color: var(--ember);
}

.product-short {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--muted);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.spec {
  text-align: center;
}

.spec-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.spec-value {
  font-size: 0.75rem;
  font-weight: 500;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
}

/* ========================================
   COMPARE SECTION
   ======================================== */
.compare-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .compare-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.compare-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}

.compare-card:hover {
  box-shadow: var(--shadow-elevated);
}

.compare-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.icon-ember {
  background: oklch(0.65 0.19 35 / 0.1);
  color: var(--ember);
}

.icon-teal {
  background: oklch(0.62 0.09 200 / 0.1);
  color: var(--teal);
}

.icon-violet {
  background: oklch(0.58 0.18 295 / 0.1);
  color: var(--violet);
}

.compare-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.compare-card > p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.compare-list {
  list-style: none;
}

.compare-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--foreground);
}

.info-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
}

.info-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.info-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========================================
   GUIDES
   ======================================== */
.guides-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .guides-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.guide-card {
  display: block;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  transition: box-shadow 0.3s;
}

.guide-card:hover {
  box-shadow: var(--shadow-elevated);
}

.guide-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.guide-tag svg {
  color: var(--ember);
}

.guide-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.guide-card > p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ember);
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.quote-icon {
  color: var(--ember);
}

.review-card > p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 1rem;
  color: var(--ember);
}

.reviewer {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter {
  position: relative;
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  background: var(--graphite);
  color: var(--ivory);
  overflow: hidden;
}

@media (min-width: 768px) {
  .newsletter {
    padding: 3.5rem;
  }
}

.newsletter-glow {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: var(--gradient-topo);
  opacity: 0.3;
  filter: blur(48px);
}

.newsletter-content {
  display: grid;
  gap: 1.5rem;
  position: relative;
  align-items: center;
}

@media (min-width: 768px) {
  .newsletter-content {
    grid-template-columns: 1fr 1fr;
  }
}

.newsletter h3 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .newsletter h3 {
    font-size: 1.875rem;
  }
}

.newsletter > .container > .newsletter > p {
  margin-top: 0.5rem;
  color: oklch(0.978 0.012 85 / 0.7);
  max-width: 28rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid oklch(0.978 0.012 85 / 0.2);
  border-radius: var(--radius-sm);
  background: oklch(0.978 0.012 85 / 0.1);
  color: var(--ivory);
  font-size: 0.875rem;
}

.newsletter-input::placeholder {
  color: oklch(0.978 0.012 85 / 0.4);
}

.newsletter-form .btn-primary {
  height: 2.75rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  margin-top: 6rem;
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 3rem 0;
}

.footer-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-badges {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-badge {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-bottom: 0.25rem;
}

.badge-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted-foreground);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

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

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 16rem;
}

.footer-address {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

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

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

.footer-col a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--foreground);
}

.footer-form {
  display: flex;
  gap: 0.5rem;
}

.footer-form input {
  flex: 1;
  height: 2.25rem;
  padding: 0 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--background);
  font-size: 0.875rem;
}

.footer-form button {
  height: 2.25rem;
  padding: 0 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--graphite);
  color: var(--ivory);
  font-size: 0.875rem;
  transition: opacity 0.2s;
}

.footer-form button:hover {
  opacity: 0.9;
}

.footer-form-sub {
  margin-top: 0.5rem;
  font-size: 11px;
  color: var(--muted-foreground);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: inherit;
  transition: color 0.2s;
}

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

/* ========================================
   CART DRAWER
   ======================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: oklch(0 0 0 / 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 50;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 24rem;
  height: 100%;
  background: var(--card);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-elevated);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 51;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-size: 1.125rem;
}

.cart-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  color: var(--muted-foreground);
  transition: background 0.2s;
}

.cart-close:hover {
  background: var(--muted);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--muted-foreground);
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 0.875rem;
  font-weight: 500;
}

.cart-item-price {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.cart-item-remove {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: var(--ember);
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: var(--card);
  border-top: 1px solid var(--border);
  display: none;
  z-index: 40;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cookie-banner p {
  font-size: 0.875rem;
}

.cookie-banner a {
  color: var(--ember);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--graphite);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 30;
  box-shadow: var(--shadow-elevated);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  opacity: 0.9;
}

/* ========================================
   PRODUCTS PAGE
   ======================================== */
.page-header {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.page-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ember);
  margin-bottom: 0.5rem;
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
}

.page-desc {
  color: var(--muted-foreground);
  max-width: 32rem;
}

.filters-section {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.filter-group {
  min-width: 160px;
}

.filter-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 0.375rem;
}

.filter-group select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--background);
  font-size: 0.875rem;
  cursor: pointer;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--ember);
}

.products-section {
  padding-top: 2rem;
}

.products-grid-full {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid-full {
    grid-template-columns: repeat(3, 1fr);
  }
}

.no-results {
  text-align: center;
  padding: 4rem 0;
  color: var(--muted-foreground);
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
