body.enhanced-theme {
  --primary-red: #e31e24;
  --primary-blue: #00a3e0;
  --dark-bg: #0a0a0a;
  --dark-soft: #1a1a1a;
  --dark-lighter: #2a2a2a;
  --carbon: #0f0f0f;
  --gray: #9ca3af;
  --light: #f5f5f5;
  --white: #ffffff;
  --accent-orange: #ff6b35;
  font-family: "Rajdhani", "Sora", ui-sans-serif, system-ui, sans-serif;
  background: var(--dark-bg);
  color: var(--light);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.enhanced-theme[data-theme="light"] {
  --dark-bg: #ffffff;
  --dark-soft: #f7f7f8;
  --dark-lighter: #e2e5ea;
  --carbon: #ffffff;
  --gray: #4b5563;
  --light: #111827;
  --white: #111827;
  background: var(--dark-bg);
  color: var(--light);
}

body.enhanced-theme h1,
body.enhanced-theme h2,
body.enhanced-theme h3,
body.enhanced-theme h4,
body.enhanced-theme h5,
body.enhanced-theme h6 {
  font-family: "Oxanium", "Sora", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.02em;
}

body.enhanced-theme .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 2px solid var(--primary-red);
  backdrop-filter: blur(24px) saturate(150%);
}

body.enhanced-theme .site-body {
  flex: 1;
}

body.enhanced-theme footer {
  margin-top: auto;
}

body.enhanced-theme[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.92);
}

body.enhanced-theme .nav-link {
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

body.enhanced-theme .nav-link:hover {
  color: var(--light);
}

body.enhanced-theme[data-theme="light"] .nav-link:hover {
  color: #111827;
}

body.enhanced-theme .logo-img {
  height: 44px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  object-position: left center;
}

body.enhanced-theme .nav-inner {
  max-width: 1800px;
  padding: 0.8rem 3rem;
  gap: 2rem;
}

body.enhanced-theme main {
  padding-top: 88px;
}

@media (max-width: 768px) {
  body.enhanced-theme .logo-img {
    height: 36px;
    width: auto;
    max-width: 190px;
  }

  body.enhanced-theme .nav-inner {
    padding: 0.7rem 1.25rem;
  }

  body.enhanced-theme main {
    padding-top: 80px;
  }
}

body.enhanced-theme .theme-toggle {
  background: transparent;
  border: 2px solid var(--dark-lighter);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

body.enhanced-theme .theme-toggle:hover {
  border-color: var(--primary-blue);
  background: var(--primary-blue);
}

body.enhanced-theme .theme-toggle--drawer {
  width: 100%;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
}

body.enhanced-theme .btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c41e3a 100%);
  color: var(--white);
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

body.enhanced-theme .btn-secondary {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--primary-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

body.enhanced-theme[data-theme="light"] .btn-secondary {
  color: #0f172a;
}

body.enhanced-theme .btn-outline {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--dark-lighter);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

body.enhanced-theme .btn-danger {
  border-color: var(--primary-red);
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

body.enhanced-theme .glass-card {
  background: var(--carbon);
  border-color: var(--dark-lighter);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

body.enhanced-theme[data-theme="light"] .glass-card {
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

body.enhanced-theme .section-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

body.enhanced-theme .input,
body.enhanced-theme .cta-input {
  background: var(--carbon);
  border-color: var(--dark-lighter);
  color: var(--light);
}

body.enhanced-theme .product-card,
body.enhanced-theme .trust-card,
body.enhanced-theme .proof-card,
body.enhanced-theme .step-card {
  border-color: var(--dark-lighter);
}

body.enhanced-theme .footer {
  background: var(--carbon);
  border-top: 3px solid var(--primary-red);
}

body.enhanced-theme[data-theme="light"] .footer {
  background: #ffffff;
}

body.enhanced-theme .footer-inner {
  color: var(--gray);
}

body.enhanced-theme .footer .nav-link {
  color: var(--gray);
}

body.enhanced-theme .footer .nav-link:hover {
  color: var(--light);
}

body.enhanced-theme .products-hero-card {
  position: relative;
  height: clamp(280px, 38vw, 520px);
  border-bottom: 3px solid var(--primary-red);
  overflow: hidden;
  background: #000;
}

body.enhanced-theme[data-theme="light"] .products-hero-card {
  background: #e5e7eb;
}

body.enhanced-theme .products-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

body.enhanced-theme .products-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(227, 30, 36, 0.35), transparent 55%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.75) 10%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

body.enhanced-theme[data-theme="light"] .products-hero-overlay {
  background: transparent;
}

body.enhanced-theme .products-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  color: var(--light);
  align-items: center;
  text-align: center;
}

body.enhanced-theme[data-theme="light"] .products-hero-content {
  display: none;
}

body.enhanced-theme .products-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

body.enhanced-theme .products-hero-content p {
  max-width: 560px;
  color: #e2e8f0;
  font-size: 1.05rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-left: auto;
  margin-right: auto;
}

body.enhanced-theme[data-theme="light"] .products-hero-content p {
  color: #111827;
  text-shadow: none;
}

body.enhanced-theme[data-theme="light"] .products-hero-content h1,
body.enhanced-theme[data-theme="light"] .products-hero-kicker,
body.enhanced-theme[data-theme="light"] .products-section-title,
body.enhanced-theme[data-theme="light"] .products-section-subtitle,
body.enhanced-theme[data-theme="light"] .product-card__title,
body.enhanced-theme[data-theme="light"] .product-card__desc,
body.enhanced-theme[data-theme="light"] .product-card__list,
body.enhanced-theme[data-theme="light"] .product-card__price {
  color: #0f172a;
}

body.enhanced-theme[data-theme="light"] .text-slate-100,
body.enhanced-theme[data-theme="light"] .text-slate-200,
body.enhanced-theme[data-theme="light"] .text-slate-300,
body.enhanced-theme[data-theme="light"] .text-slate-400 {
  color: #334155;
}

body.enhanced-theme[data-theme="light"] .text-white {
  color: #0f172a;
}

body.enhanced-theme .products-hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  align-self: center;
  background: rgba(227, 30, 36, 0.22);
  border: 1px solid rgba(227, 30, 36, 0.6);
}

body.enhanced-theme .products-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

body.enhanced-theme .products-hero-content .btn-primary {
  box-shadow: 0 18px 40px rgba(227, 30, 36, 0.35);
}

body.enhanced-theme .products-section-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

body.enhanced-theme .products-section-subtitle {
  margin-top: 0.5rem;
  color: var(--gray);
  font-size: 1.2rem;
}

body.enhanced-theme .product-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(140deg, rgba(12, 12, 16, 0.95), rgba(6, 8, 14, 0.85));
}

body.enhanced-theme[data-theme="light"] .product-card {
  border-color: rgba(15, 23, 42, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

body.enhanced-theme .product-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 20px 60px rgba(227, 30, 36, 0.2);
  transform: translateY(-4px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.enhanced-theme .product-card__media img {
  object-position: center;
}

@media (max-width: 768px) {
  body.enhanced-theme .products-hero-card {
    height: auto;
    min-height: 0;
    padding: 2.5rem 0;
  }

  body.enhanced-theme .products-hero-content {
    align-items: flex-start;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  body.enhanced-theme .products-hero-card img,
  body.enhanced-theme .products-hero-overlay {
    display: none;
  }

  body.enhanced-theme .products-hero-content {
    position: relative;
  }
}

body.enhanced-theme .mobile-drawer {
  position: relative;
  display: flex;
}

body.enhanced-theme .drawer-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

body.enhanced-theme .drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  display: none;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

body.enhanced-theme .drawer-panel {
  position: fixed;
  top: 0;
  right: -320px;
  height: 100vh;
  width: min(320px, 85vw);
  background: rgba(10, 12, 20, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.35);
  padding: calc(1rem + env(safe-area-inset-top)) 1rem calc(1.5rem + env(safe-area-inset-bottom));
  display: none;
  flex-direction: column;
  gap: 1rem;
  transition: right 0.22s ease;
  z-index: 50;
  overflow-y: auto;
}

body.enhanced-theme[data-theme="light"] .drawer-panel {
  background: rgba(255, 255, 255, 0.98);
  border-left-color: rgba(15, 23, 42, 0.1);
}

body.enhanced-theme .drawer-toggle:checked ~ .drawer-backdrop {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

body.enhanced-theme .drawer-toggle:checked ~ .drawer-panel {
  display: flex;
  right: 0;
}

body.enhanced-theme .drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

body.enhanced-theme .drawer-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
}

body.enhanced-theme .drawer-close {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  cursor: pointer;
}

body.enhanced-theme .drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

body.enhanced-theme .drawer-link {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
  color: #e2e8f0;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: normal;
  word-break: break-word;
}

body.enhanced-theme[data-theme="light"] .drawer-link {
  color: #1f2937;
}

body.enhanced-theme .drawer-link:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

body.enhanced-theme[data-theme="light"] .drawer-link:hover {
  background-color: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

body.enhanced-theme[data-theme="light"] .product-hero,
body.enhanced-theme[data-theme="light"] .product-section,
body.enhanced-theme[data-theme="light"] .product-gallery__main,
body.enhanced-theme[data-theme="light"] .product-thumb,
body.enhanced-theme[data-theme="light"] .product-step,
body.enhanced-theme[data-theme="light"] .product-faq-item {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

body.enhanced-theme[data-theme="light"] .product-section-title,
body.enhanced-theme[data-theme="light"] .product-card__title,
body.enhanced-theme[data-theme="light"] .product-spec-row span,
body.enhanced-theme[data-theme="light"] .product-faq-item summary {
  color: #0f172a;
}

body.enhanced-theme[data-theme="light"] .product-faq-item p,
body.enhanced-theme[data-theme="light"] .product-bullets,
body.enhanced-theme[data-theme="light"] .product-section p {
  color: #334155;
}

body.enhanced-theme .product-hero p,
body.enhanced-theme .product-section p,
body.enhanced-theme .product-section li,
body.enhanced-theme .product-bullets,
body.enhanced-theme .product-card__desc,
body.enhanced-theme .product-card__list {
  font-size: 1.1rem;
  line-height: 1.7;
}

body.enhanced-theme .product-stock,
body.enhanced-theme .text-xs {
  font-size: 0.9rem;
}

body.enhanced-theme[data-theme="light"] .product-section li,
body.enhanced-theme[data-theme="light"] .product-bullets li {
  color: #0f172a;
}

body.enhanced-theme[data-theme="light"] .product-badge {
  background: rgba(227, 30, 36, 0.15);
  border-color: rgba(227, 30, 36, 0.4);
  color: #0f172a;
}

body.enhanced-theme[data-theme="light"] .product-stock {
  color: #0f172a;
}

body.enhanced-theme[data-theme="light"] .product-sticky-cta {
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

body.enhanced-theme[data-theme="light"] .text-slate-200,
body.enhanced-theme[data-theme="light"] .text-slate-300,
body.enhanced-theme[data-theme="light"] .text-slate-400,
body.enhanced-theme[data-theme="light"] .text-white {
  color: #0f172a !important;
}

body.enhanced-theme .site-body {
  font-size: 1.4rem;
  line-height: 1.7;
}

body.enhanced-theme .site-body p,
body.enhanced-theme .site-body li,
body.enhanced-theme .site-body .text-sm,
body.enhanced-theme .site-body .text-xs {
  font-size: 1.2rem;
  line-height: 1.7;
}

body.enhanced-theme .activate-page {
  min-height: calc(100vh - 200px);
}

body.enhanced-theme .site-body h1,
body.enhanced-theme .site-body h2,
body.enhanced-theme .site-body h3,
body.enhanced-theme .site-body h4 {
  letter-spacing: 0.03em;
}
