/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red-50: #fff5f5;
  --red-100: #fed7d7;
  --red-400: #fc8181;
  --red-500: #f56565;
  --red-600: #e53e3e;
  --red-700: #c53030;
  --red-800: #9b2c2c;
  --navy-50: #eef2ff;
  --navy-100: #e0e7ff;
  --navy-600: #1e3a5f;
  --navy-700: #162d4a;
  --navy-800: #0f1f35;
  --navy-900: #0a1628;
  --gold-400: #f6c90e;
  --gold-500: #d69e2e;
  --blue-500: #3182ce;
  --blue-600: #2b6cb0;
  --green-500: #38a169;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TOPBAR ===== */
.topbar {
  background: linear-gradient(90deg, var(--navy-800), var(--red-700), var(--navy-800));
  color: white;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ===== HEADER ===== */
.header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 3px solid var(--red-600);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--red-600), var(--red-800));
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(229,62,62,0.3);
}

.logo-text {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}

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

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--red-600);
}

.nav-cta {
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(229,62,62,0.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(229,62,62,0.4);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 40%, #1a2a4a 70%, #2d1b1b 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--red-600);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: #3182ce;
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--gold-400);
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(229,62,62,0.15);
  border: 1px solid rgba(229,62,62,0.4);
  color: var(--red-400);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--red-400);
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 600;
}

.check {
  color: #68d391;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: white;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(229,62,62,0.4);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(229,62,62,0.5);
}

.btn-primary.mt {
  margin-top: 1.5rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

.hero-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* Product Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2rem;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.product-glow {
  position: absolute;
  inset: -2px;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(229,62,62,0.3), rgba(49,130,206,0.2), rgba(229,62,62,0.1));
  z-index: -1;
  filter: blur(8px);
}

.product-img-wrap {
  margin-bottom: 1.5rem;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  max-width: 220px;
  max-height: 220px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.product-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 200px;
}

.product-icon-large {
  font-size: 5rem;
  filter: drop-shadow(0 0 20px rgba(229,62,62,0.5));
}

.product-name-large {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.product-info {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.product-label {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.product-sublabel {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red-400);
}

.product-price-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.product-stars {
  color: var(--gold-400);
  font-size: 0.9rem;
  font-weight: 700;
}

.product-stars span {
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* Floating badges */
.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  z-index: 3;
}

.fb-1 { top: 10%; left: -5%; }
.fb-2 { bottom: 20%; right: -5%; }
.fb-3 { top: 60%; left: -8%; }

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: white;
  border-bottom: 1px solid var(--gray-100);
  padding: 2rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 0.5rem 3rem;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red-600);
  font-family: 'Merriweather', serif;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 3rem;
  background: var(--gray-200);
}

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

.section-light {
  background: var(--gray-50);
}

.section-dark {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
}

.section-cta {
  background: linear-gradient(135deg, var(--navy-800), #1a2a4a, #2d1b1b);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background: var(--red-50);
  color: var(--red-600);
  border: 1px solid var(--red-100);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-tag.light {
  background: rgba(229,62,62,0.15);
  color: var(--red-400);
  border-color: rgba(229,62,62,0.3);
}

.section-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title.light {
  color: white;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.bc-red::before { background: linear-gradient(90deg, var(--red-600), var(--red-400)); }
.bc-blue::before { background: linear-gradient(90deg, var(--blue-600), var(--blue-500)); }
.bc-gold::before { background: linear-gradient(90deg, var(--gold-500), var(--gold-400)); }
.bc-purple::before { background: linear-gradient(90deg, #6b46c1, #9f7aea); }

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.bc-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.pd-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.pd-img-wrap {
  background: linear-gradient(135deg, rgba(229,62,62,0.1), rgba(49,130,206,0.1));
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pd-product-icon {
  font-size: 6rem;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 30px rgba(229,62,62,0.4));
}

.pd-product-name {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.pd-product-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.pd-price-box {
  padding: 2rem;
  text-align: center;
}

.pd-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--red-400);
  font-family: 'Merriweather', serif;
  margin-bottom: 0.25rem;
}

.pd-price-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.pd-badge-row {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pd-badge {
  background: rgba(229,62,62,0.15);
  border: 1px solid rgba(229,62,62,0.3);
  color: var(--red-400);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.pd-text {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.pd-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin: 1.5rem 0 1rem;
}

.pd-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pd-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.pd-check {
  color: #68d391;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ===== INGREDIENTS ===== */
.ingredients-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.ing-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}

.ing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.ing-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.ing-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.ing-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
}

.ing-sub {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-style: italic;
}

.ing-desc {
  padding: 0 1.5rem 1rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.ing-benefits {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ing-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--gray-50);
  border-radius: 0.75rem;
  padding: 0.75rem;
}

.ing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.ib-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-900);
  margin-bottom: 0.15rem;
}

.ib-desc {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-100);
  position: relative;
  transition: all 0.3s;
}

.testi-card.featured {
  border-color: var(--red-200);
  box-shadow: 0 8px 30px rgba(229,62,62,0.1);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.testi-quote {
  font-size: 5rem;
  line-height: 0.5;
  color: var(--red-100);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testi-stars {
  color: var(--gold-400);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testi-text {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.95rem;
}

.testi-role {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ===== ORDER SECTION ===== */
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.order-text {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.order-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.od-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  transition: all 0.2s;
}

.od-item:hover {
  background: rgba(255,255,255,0.08);
}

.od-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.od-title {
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.od-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

/* Order Form */
.order-form-wrap {
  background: white;
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.price-highlight {
  background: linear-gradient(135deg, var(--red-50), #fff5f5);
  border: 2px solid var(--red-100);
  border-radius: 1.25rem;
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}

.ph-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.ph-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--red-600);
  font-family: 'Merriweather', serif;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.ph-note {
  font-size: 0.85rem;
  color: var(--green-500);
  font-weight: 700;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s;
  color: var(--gray-900);
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(229,62,62,0.3);
  font-family: inherit;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229,62,62,0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-900);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}

.footer-logo-icon {
  width: 2.2rem;
  height: 2.2rem;
  background: linear-gradient(135deg, var(--red-600), var(--red-800));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-badge {
  display: inline-block;
  background: rgba(229,62,62,0.15);
  border: 1px solid rgba(229,62,62,0.3);
  color: var(--red-400);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.footer-col ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--red-400);
}

.footer-disclaimer {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.disclaimer-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-disclaimer strong {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer-disclaimer p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-bottom {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pd-visual {
    max-width: 400px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-features {
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-subtitle {
    margin: 0 auto 1.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .floating-badge {
    display: none;
  }

  .stats-inner {
    gap: 0;
  }

  .stat {
    padding: 0.5rem 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: center;
  }

  .order-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 5rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .product-card {
    padding: 1.5rem;
  }

  .order-form-wrap {
    padding: 1.5rem;
  }
}