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

:root {
  --charcoal: #121212;
  --charcoal-light: #1a1a1a;
  --lemon: #F7EB00;
  --lemon-dim: #ded300;
  --outline-gray: #333333;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --white: #ffffff;
  --font-main: 'Archivo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--charcoal);
  color: var(--white);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;

}

::selection { background-color: var(--lemon); color: var(--charcoal); }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
ul { list-style: none; }

.text-lemon { color: var(--lemon); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 50;
  background: var(--charcoal);
  border-bottom: 2px solid var(--outline-gray);
  transition: transform 0.3s ease;
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1440px; margin: 0 auto;
  padding: 1rem 1.5rem; width: 100%;
}
.nav-brand { display: flex; align-items: center; gap: 1rem; }
.nav-logo {
  height: 2.5rem; width: 2.5rem; object-fit: cover;
  border-radius: 50%; border: 2px solid var(--lemon);
}
.nav-brand-text {
  font-size: 1.25rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.05em;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--lemon); }
.nav-cta {
  display: flex; align-items: center; gap: 1rem;
  border-left: 2px solid var(--outline-gray);
  padding-left: 2rem; padding-top: 0.5rem; padding-bottom: 0.5rem;
}
.nav-cart-icon { color: var(--lemon); font-size: 1.5rem; }
.nav-cta-text { font-size: 10px; font-weight: 900; text-transform: uppercase; }
.mobile-menu-btn {
  display: none; background: none; color: var(--white);
  font-size: 1.5rem; padding: 0.25rem;
}

/* ===== MAIN CONTENT ===== */
.main-content { padding-top: 4.5rem; }
.section-container {
  max-width: 1440px; margin: 0 auto;
  border-left: 2px solid var(--outline-gray);
  border-right: 2px solid var(--outline-gray);
}

/* ===== HERO ===== */
.hero-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  border: 4px solid var(--outline-gray);
}
.hero-text-col {
  padding: 3rem;
  border-right: 2px solid var(--outline-gray);
  background: var(--charcoal-light);
}
.batch-label {
  display: block; font-size: 10px; font-weight: 900;
  color: var(--lemon); letter-spacing: 0.4em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 9rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.85; letter-spacing: -0.05em;
  margin-bottom: 2rem;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--outline-gray);
  margin-top: 3rem;
}
.meta-label {
  display: block; font-size: 10px; text-transform: uppercase;
  font-weight: 700; color: var(--gray-500); margin-bottom: 0.25rem;
}
.meta-value {
  display: block; font-size: 0.875rem;
  font-weight: 900; text-transform: uppercase;
}
.hero-image-col {
  background: var(--lemon);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 2rem;
}
.hero-image {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.5s ease;
}
.hero-image:hover { transform: scale(1.05); }

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--lemon);
  padding: 1rem 0; overflow: hidden;
  border-bottom: 2px solid var(--outline-gray);
  border-top: 2px solid var(--outline-gray);
}
.marquee-track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: 0.8rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--charcoal); padding: 0 1.5rem;
}
.marquee-dot {
  color: var(--charcoal); font-size: 0.5rem;
  opacity: 0.4;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TRUST BANNER ===== */
.trust-banner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 2px solid var(--outline-gray);
  background: var(--charcoal-light);
}
.trust-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 2rem;
  border-right: 2px solid var(--outline-gray);
  transition: background 0.3s ease;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--charcoal); }
.trust-icon { color: var(--lemon); font-size: 2rem; flex-shrink: 0; }
.trust-title {
  display: block; font-size: 0.75rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.trust-sub {
  display: block; font-size: 9px; font-weight: 700;
  color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.1em;
}

/* ===== PRODUCT ===== */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; }
.product-image-col {
  border-bottom: 2px solid var(--outline-gray);
  border-right: 2px solid var(--outline-gray);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.product-image { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-lemi {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.25rem; padding: 3rem 2rem;
  background: var(--charcoal);
  min-height: 180px; position: relative;
  overflow: hidden;
}
.product-lemi::before {
  content: ''; position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(247, 235, 0, 0.15);
  animation: lemiPulseRing 3s ease-in-out infinite;
}
.product-lemi::after {
  content: '✦'; position: absolute;
  top: 20%; right: 25%;
  font-size: 1rem; color: var(--lemon);
  opacity: 0;
  animation: lemiSparkle 2.5s ease-in-out infinite 0.5s;
}
@keyframes lemiPulseRing {
  0%, 100% { transform: scale(0.8); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.6; }
}
@keyframes lemiSparkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}
.product-lemi-img {
  width: 150px; height: 150px;
  object-fit: contain; position: relative; z-index: 1;
  filter: drop-shadow(0 6px 20px rgba(247, 235, 0, 0.25));
  animation: lemiBounce 2.5s ease-in-out infinite;
}
@keyframes lemiBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(4deg); }
  75% { transform: translateY(-5px) rotate(-3deg); }
}
.product-lemi-label {
  font-size: 0.85rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gray-400); position: relative; z-index: 1;
  text-align: center;
}
.product-lemi-label strong {
  color: var(--lemon); font-size: 1rem;
}
.product-details-col {
  padding: 3rem;
  border-bottom: 2px solid var(--outline-gray);
  background: var(--charcoal);
  display: flex; flex-direction: column; justify-content: center;
}
.product-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.05em; margin-bottom: 1rem;
}
.price-row { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; }
.price-current {
  font-size: 2.5rem; font-weight: 900;
  color: var(--lemon); letter-spacing: -0.05em;
}
.price-original {
  color: var(--gray-700); font-weight: 700;
  font-size: 0.875rem; text-decoration: line-through;
}
.spec-list {
  border-top: 1px solid var(--outline-gray);
  padding-top: 2rem; margin-bottom: 2rem;
}
.spec-item {
  display: flex; justify-content: space-between;
  font-size: 8px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(51,51,51,0.3);
  padding-bottom: 1rem; margin-bottom: 1rem;
}
.spec-item-last { border-bottom: none; }
.spec-label { color: var(--gray-500); }
.btn-primary {
  width: 100%; background: var(--lemon); color: var(--charcoal);
  padding: 2.5rem 1rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.3em;
  font-size: 1.125rem;
  display: flex; justify-content: center; align-items: center; gap: 1rem;
  transition: all 0.2s ease; margin-bottom: 1rem;
}
.btn-primary:hover { background: var(--white); }
.btn-primary:active { transform: scale(0.98); }
.btn-icon { font-size: 1.5rem; }
.qty-section {
  margin-bottom: 1.5rem;
  border: 2px solid var(--outline-gray);
  padding: 1.5rem;
  background: var(--charcoal-light);
}
.qty-row {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 1rem;
}
.qty-label {
  font-size: 10px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gray-400);
}
.qty-picker {
  display: flex; align-items: center; gap: 0;
}
.qty-btn {
  width: 3rem; height: 3rem;
  background: var(--charcoal); border: 2px solid var(--outline-gray);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; font-size: 1.25rem;
}
.qty-btn:hover { border-color: var(--lemon); color: var(--lemon); }
.qty-btn:active { background: var(--lemon); color: var(--charcoal); }
.qty-value {
  width: 3.5rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 900;
  border-top: 2px solid var(--outline-gray);
  border-bottom: 2px solid var(--outline-gray);
  background: var(--charcoal);
}
.qty-total-row {
  display: flex; justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid var(--outline-gray);
}
.qty-total-label {
  font-size: 10px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gray-400);
}
.qty-total-price {
  font-size: 1.75rem; font-weight: 900;
  color: var(--lemon); letter-spacing: -0.03em;
}
.qty-shipping-info {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--lemon); margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(247, 235, 0, 0.08);
  border-left: 3px solid var(--lemon);
}
.qty-shipping-info.free {
  color: #4ade80; border-color: #4ade80;
  background: rgba(74, 222, 128, 0.08);
}
.qty-limit-note {
  font-size: 8px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gray-600); text-align: right;
  margin-top: 0.5rem;
}
.gift-banner {
  margin-bottom: 1.5rem;
  border: 2px solid var(--lemon);
  background: linear-gradient(135deg, rgba(247,235,0,0.06) 0%, rgba(247,235,0,0.02) 100%);
  position: relative; overflow: hidden;
  padding: 1.25rem;
}
.gift-banner::before {
  content: ''; position: absolute; top: -1px; left: -1px;
  width: 50px; height: 50px;
  background: var(--lemon); clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.15;
}
.gift-header {
  text-align: center; margin-bottom: 1rem;
}
.gift-badge {
  font-size: 9px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--lemon);
}
.gift-showcase {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem; margin-bottom: 0.75rem;
}
.gift-card {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border: 1px solid var(--outline-gray);
  background: var(--charcoal);
  transition: all 0.3s ease;
}
.gift-card:hover {
  border-color: var(--lemon);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(247, 235, 0, 0.1);
}
.gift-card-star {
  border-color: var(--lemon);
  background: linear-gradient(180deg, rgba(247,235,0,0.08) 0%, var(--charcoal) 100%);
  position: relative;
}
.gift-card-star::after {
  content: '★';
  position: absolute; top: -6px; right: -6px;
  background: var(--lemon); color: var(--charcoal);
  width: 18px; height: 18px;
  font-size: 10px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.gift-card-img-wrap {
  width: 55px; height: 55px;
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--outline-gray);
  flex-shrink: 0;
}
.gift-card-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gift-lemi-wrap {
  border: none; border-radius: 0;
  width: 60px; height: 60px;
  background: transparent;
  animation: lemiFloat 3s ease-in-out infinite;
}
.gift-lemi-img {
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(247, 235, 0, 0.3));
}
@keyframes lemiFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.gift-card-label {
  font-size: 8px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-400); text-align: center;
}
.gift-card-star .gift-card-label {
  color: var(--lemon);
}
.gift-footer {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--white); text-align: center;
  padding: 0.75rem 1rem;
  background: rgba(247, 235, 0, 0.08);
  border: 1px solid rgba(247, 235, 0, 0.25);
  line-height: 1.8;
}
.purchase-note {
  text-align: center; margin-top: 1rem;
  font-size: 9px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gray-500);
}

/* ===== TECH BREAKDOWN ===== */
.tech-section {
  padding: 3rem; background: var(--charcoal);
  border-bottom: 2px solid var(--outline-gray);
}
.tech-title {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 900; text-transform: uppercase;
  margin-bottom: 4rem; letter-spacing: -0.05em;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.tech-card {
  padding: 1.5rem;
  border: 2px solid var(--outline-gray);
  background: var(--charcoal-light);
  display: flex; flex-direction: column;
  transition: border-color 0.3s ease;
}
.tech-card:hover { border-color: var(--lemon); }
.tech-number {
  color: var(--lemon); font-size: 2.5rem;
  font-weight: 900; margin-bottom: 1.5rem;
}
.tech-card-title {
  font-size: 0.75rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.tech-card-desc {
  font-size: 11px; color: var(--gray-400);
  text-transform: uppercase; line-height: 1.6; font-weight: 600;
}

/* ===== HERITAGE ===== */
.heritage-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--outline-gray);
}
.heritage-text-col {
  padding: 3rem 6rem;
  border-right: 2px solid var(--outline-gray);
  display: flex; flex-direction: column; justify-content: center;
}
.heritage-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.05em; margin-bottom: 2rem;
}
.heritage-desc {
  font-size: 0.875rem; color: var(--gray-400);
  line-height: 1.6; text-transform: uppercase;
  font-weight: 700; margin-bottom: 3rem;
}
.heritage-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid var(--lemon);
  color: var(--lemon);
  font-size: 10px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.heritage-image-col {
  background: var(--charcoal-light);
  display: flex; align-items: center; justify-content: center;
}
.heritage-image { width: 100%; height: 100%; object-fit: cover; }

/* ===== PAIRINGS ===== */
.pairings-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid var(--outline-gray);
}
.pairing-card {
  border-right: 2px solid var(--outline-gray);
  overflow: hidden; position: relative;
}
.pairing-card-last { border-right: none; }
.pairing-image {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform 0.5s ease;
}
.pairing-card:hover .pairing-image { transform: scale(1.05); }
.pairing-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(18,18,18,0.8); padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.pairing-card:hover .pairing-overlay { transform: translateY(0); }
.pairing-name {
  font-size: 10px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--lemon);
}

/* ===== MEET LEMI ===== */
.lemi-strip {
  display: grid; grid-template-columns: 1fr 2fr;
  border-bottom: 2px solid var(--outline-gray);
  min-height: 280px;
}
.lemi-strip-img-col {
  background: var(--lemon);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; position: relative;
  overflow: hidden;
}
.lemi-strip-img-col::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 70%);
}
.lemi-strip-img {
  width: 160px; height: 160px;
  object-fit: contain; position: relative; z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
  animation: lemiBounce 2.5s ease-in-out infinite;
}
@keyframes lemiBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(3deg); }
  75% { transform: translateY(-4px) rotate(-2deg); }
}
.lemi-strip-text-col {
  padding: 3rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--charcoal-light);
  border-left: 2px solid var(--outline-gray);
}
.lemi-strip-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.05em; margin-bottom: 1rem;
  line-height: 1;
}
.lemi-strip-desc {
  font-size: 0.875rem; color: var(--gray-400);
  text-transform: uppercase; font-weight: 700;
  line-height: 1.7; margin-bottom: 1.5rem;
  max-width: 28rem;
}
.lemi-strip-tags {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}
.lemi-tag {
  padding: 0.4rem 1rem;
  border: 2px solid var(--lemon);
  font-size: 9px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--lemon);
  transition: all 0.2s ease;
}
.lemi-tag:hover {
  background: var(--lemon); color: var(--charcoal);
}

/* ===== TAMIL TRADITION BANNER ===== */
.tamil-banner-section {
  border-top: 1px solid var(--outline-gray);
  border-bottom: 1px solid var(--outline-gray);
}
.tamil-banner-inner {
  max-width: 800px; margin: 0 auto;
  text-align: center;
}
.tamil-script {
  font-size: 1rem; font-weight: 600;
  color: var(--lemon);
  letter-spacing: 0.15em;
  display: block; margin-bottom: 0.75rem;
}
.tamil-banner-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}
.tamil-banner-line {
  width: 80px; height: 4px;
  background: var(--lemon);
  margin: 1.5rem auto;
}
.tamil-banner-desc {
  font-family: var(--font-main);
  font-size: 1rem; font-weight: 600;
  color: var(--gray-400);
  line-height: 1.7;
  text-transform: uppercase;
  max-width: 600px; margin: 0 auto;
}
.tamil-banner-tags {
  display: flex; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
  margin-top: 2rem;
}
.tamil-tag {
  font-family: var(--font-main);
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--outline-gray);
  color: var(--white);
  transition: border-color 0.2s;
}
.tamil-tag:hover { border-color: var(--lemon); }

/* ===== FLAVOR PATHWAY ===== */
.flavor-section {
  background: var(--lemon) !important;
  color: var(--charcoal);
}
.flavor-inner {
  padding: 3rem 6rem;
  border-bottom: 2px solid var(--outline-gray);
}
.flavor-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.05em; margin-bottom: 4rem;
}
.flavor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.flavor-step {
  border-left: 4px solid var(--charcoal);
  padding-left: 1.5rem;
}
.flavor-step-num {
  font-size: 1.875rem; font-weight: 900;
  display: block; margin-bottom: 0.5rem;
}
.flavor-step-desc {
  font-size: 0.75rem; text-transform: uppercase;
  font-weight: 700; line-height: 1.6;
}

/* ===== PREORDER ===== */
.preorder-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--outline-gray);
}
.preorder-left {
  padding: 3rem 6rem;
  border-right: 2px solid var(--outline-gray);
  background: var(--charcoal-light);
  display: flex; flex-direction: column; justify-content: center;
}
.preorder-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; letter-spacing: -0.05em;
  margin-bottom: 2rem; margin-top: 1rem;
}
.countdown {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; max-width: 24rem; margin-bottom: 2rem;
}
.countdown-item {
  border: 2px solid var(--outline-gray);
  padding: 1rem; text-align: center;
}
.countdown-item-active { border-color: var(--lemon); }
.countdown-num { display: block; font-size: 1.5rem; font-weight: 900; }
.countdown-label {
  font-size: 8px; font-weight: 700;
  color: var(--gray-500); text-transform: uppercase;
}
.preorder-note {
  font-size: 10px; font-weight: 700;
  color: var(--gray-500); text-transform: uppercase;
  line-height: 1.6; letter-spacing: 0.1em;
}
.preorder-right {
  padding: 3rem 6rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--charcoal);
}
.preorder-slot {
  border-left: 4px solid var(--lemon);
  padding-left: 2rem; margin-bottom: 3rem;
}
.slot-title {
  font-size: 1.875rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.05em;
  margin-bottom: 1rem;
}
.slot-desc {
  font-size: 0.875rem; color: var(--gray-400);
  font-weight: 700; text-transform: uppercase;
  line-height: 1.6;
}
.btn-preorder { font-size: 1.25rem; }
.preorder-limit {
  text-align: center; margin-top: 1.5rem;
  font-size: 9px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: rgba(247, 235, 0, 0.5);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 3rem 5rem;
  border-bottom: 2px solid var(--outline-gray);
}
.testimonials-header {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 4rem;
  flex-wrap: wrap; gap: 1rem;
}
.testimonials-title {
  font-size: 1.875rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.05em;
}
.testimonials-badge {
  font-size: 10px; font-weight: 900;
  color: var(--lemon); letter-spacing: 0.4em;
  text-transform: uppercase;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.testimonial-card { display: flex; flex-direction: column; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.author-avatar {
  width: 2.5rem; height: 2.5rem;
  border: 2px solid var(--lemon);
  border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name {
  display: block; font-size: 0.75rem;
  font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.1em;
}
.author-loc {
  display: block; font-size: 9px;
  font-weight: 700; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.testimonial-text {
  font-size: 1.125rem; font-weight: 900;
  text-transform: none; letter-spacing: -0.02em;
  line-height: 1.3; font-style: italic;
  border-left: 2px solid var(--outline-gray);
  padding-left: 1rem;
}
.system-note {
  margin-top: 5rem; display: flex;
  justify-content: center;
}
.system-note {
  padding: 1.5rem; border: 2px solid var(--outline-gray);
  background: var(--charcoal-light);
  display: flex; align-items: center; gap: 1.5rem;
  max-width: 36rem; margin: 5rem auto 0;
}
.system-note-icon { color: var(--lemon); font-size: 1.875rem; }
.system-note-text {
  font-size: 10px; font-weight: 700;
  color: var(--gray-400); text-transform: uppercase;
  line-height: 1.6; letter-spacing: 0.1em;
}

/* ===== FINAL CTA ===== */
.final-cta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--outline-gray);
}
.final-cta-image-col {
  border-right: 2px solid var(--outline-gray);
  overflow: hidden;
}
.final-cta-image { width: 100%; height: 100%; object-fit: cover; }
.final-cta-text-col {
  padding: 3rem 6rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--charcoal-light);
}
.final-cta-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.9; letter-spacing: -0.05em;
  margin-bottom: 2rem;
}
.final-cta-desc {
  font-size: 0.875rem; color: var(--gray-400);
  text-transform: uppercase; font-weight: 700;
  line-height: 1.6; margin-bottom: 3rem; max-width: 28rem;
}
.btn-buy-now {
  font-size: 1.5rem; letter-spacing: 0.4em;
}
.final-cta-meta {
  display: flex; justify-content: space-between;
  align-items: center; padding: 0 0.5rem;
  margin-top: 0.5rem;
}
.final-cta-stock {
  font-size: 10px; font-weight: 700;
  color: var(--gray-500); text-transform: uppercase;
  letter-spacing: 0.1em;
}
.final-cta-batch {
  font-size: 10px; font-weight: 900;
  color: var(--lemon); text-transform: uppercase;
  letter-spacing: 0.1em;
}
.final-cta-freebies {
  margin-top: 1.5rem; padding: 0.75rem 1rem;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--white); text-align: center;
  background: rgba(247, 235, 0, 0.08);
  border: 1px solid rgba(247, 235, 0, 0.25);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  border-top: 4px solid var(--outline-gray);
}
.footer-inner { max-width: 1440px; margin: 0 auto; padding: 6rem 3rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.footer-brand {
  font-size: 2.5rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.05em;
  margin-bottom: 2rem;
}
.footer-desc {
  font-size: 10px; color: var(--gray-500);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; line-height: 1.6; max-width: 24rem;
}
.footer-links-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.footer-link-col {
  display: flex; flex-direction: column; gap: 1rem;
}
.footer-link-heading {
  font-size: 10px; font-weight: 900;
  color: var(--lemon); text-transform: uppercase;
  letter-spacing: 0.3em;
}
.footer-link {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--lemon); }
.footer-bottom {
  margin-top: 6rem; padding-top: 2rem;
  border-top: 1px solid var(--outline-gray);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 2rem;
}
.footer-copyright {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5em;
  color: var(--gray-600);
}
.footer-socials { display: flex; gap: 2rem; }
.footer-social-icon {
  color: var(--gray-600); cursor: pointer;
  transition: color 0.2s ease;
}
.footer-social-icon:hover { color: var(--lemon); }

/* ===== MODAL & ORDER FLOW ===== */
.hidden { display: none !important; }
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  justify-content: center; align-items: flex-start;
  padding: 2rem; overflow-y: auto;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--charcoal-light); border: 2px solid var(--outline-gray);
  max-width: 600px; width: 100%; position: relative;
  padding: 3rem; margin-top: 4rem;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; color: var(--gray-400);
  transition: color 0.2s; font-size: 1.5rem;
}
.modal-close:hover { color: var(--white); }
.modal-title {
  font-size: 2rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.modal-subtitle {
  font-size: 9px; font-weight: 700; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.3em;
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 9px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gray-400); margin-bottom: 0.5rem;
}
.form-input {
  width: 100%; padding: 0.875rem 1rem;
  background: var(--charcoal); border: 2px solid var(--outline-gray);
  color: var(--white); font-family: var(--font-main);
  font-size: 0.875rem; font-weight: 600;
  transition: border-color 0.2s;
}
.form-input:focus { outline: none; border-color: var(--lemon); }
select.form-input { appearance: none; cursor: pointer; }
.order-summary {
  border-top: 2px solid var(--outline-gray);
  padding-top: 1.5rem; margin: 1.5rem 0;
}
.summary-row {
  display: flex; justify-content: space-between;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.5rem 0; color: var(--gray-400);
}
.summary-total {
  border-top: 1px solid var(--outline-gray);
  padding-top: 1rem; margin-top: 0.5rem;
  color: var(--white); font-size: 0.875rem; font-weight: 900;
}
.btn-pay { padding: 1.5rem 1rem; font-size: 0.875rem; letter-spacing: 0.2em; }
.btn-secondary {
  width: 100%; padding: 1.25rem 1rem;
  background: transparent; border: 2px solid var(--outline-gray);
  color: var(--white); font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.75rem; font-family: var(--font-main);
  display: flex; justify-content: center; align-items: center; gap: 0.75rem;
  transition: all 0.2s; margin-top: 1rem; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--lemon); color: var(--lemon); }
.btn-gpay { text-align: center; padding: 1.5rem; font-size: 0.875rem; letter-spacing: 0.2em; }
.qr-container {
  display: flex; justify-content: center;
  padding: 2rem; background: var(--white); margin: 1.5rem 0;
}
.qr-container canvas { max-width: 200px !important; max-height: 200px !important; }
.upi-id-display, .pay-amount {
  text-align: center; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-400); margin-bottom: 0.5rem;
}
.pay-amount { color: var(--lemon); font-size: 1.25rem; margin-bottom: 1.5rem; }
.confirm-icon {
  text-align: center; margin-bottom: 1.5rem;
}
.confirm-icon .material-symbols-outlined {
  font-size: 4rem; color: var(--lemon);
  animation: bounce 0.6s ease;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.confirm-text {
  font-size: 0.875rem; color: var(--gray-400);
  text-align: center; line-height: 1.6;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 1.5rem;
}
.confirm-order-id {
  text-align: center; font-size: 10px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--lemon); margin-bottom: 2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1; transform: translateY(0);
}

/* ===== STORY MODAL ===== */
.story-modal {
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 0;
}
.story-modal::-webkit-scrollbar { width: 4px; }
.story-modal::-webkit-scrollbar-track { background: var(--charcoal-light); }
.story-modal::-webkit-scrollbar-thumb { background: var(--lemon); border-radius: 2px; }
.story-content { padding: 3rem; }
.story-label {
  display: block;
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--lemon); margin-bottom: 0.75rem;
}
.story-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.03em; line-height: 0.95;
  margin-bottom: 2rem;
}
.story-lead {
  font-size: 1.125rem; color: #e0e0e0;
  font-weight: 700; line-height: 1.7;
  margin-bottom: 1.25rem;
}
.story-paragraph {
  font-size: 0.9rem; line-height: 1.85;
  color: var(--gray-400); font-weight: 500;
  margin-bottom: 1.25rem;
}
.story-divider {
  width: 50px; height: 3px;
  background: var(--lemon);
  margin: 2rem 0;
}
.story-subheading {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}
.story-quote {
  border-left: 3px solid var(--lemon);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
}
.story-quote p {
  font-size: 0.95rem; line-height: 1.75;
  color: #d4d4d4; font-weight: 600;
  font-style: italic;
}
.story-emphasis {
  color: #e0e0e0; font-weight: 800;
  font-style: italic;
}
.story-highlight {
  font-size: 1rem; color: #e0e0e0;
  font-weight: 700; line-height: 1.7;
  margin-bottom: 1.25rem;
}
.story-cta-line {
  margin-top: 0.75rem;
  color: var(--lemon) !important;
  font-weight: 800 !important;
  font-style: normal;
}
.story-signature {
  text-align: right;
  font-size: 1rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--lemon);
  padding-top: 1.25rem;
  border-top: 2px solid var(--outline-gray);
  margin-top: 2rem;
}

/* ===== PRIVACY POLICY MODAL ===== */
.privacy-meta {
  font-size: 11px; font-weight: 700;
  color: var(--gray-500); text-transform: uppercase;
  letter-spacing: 0.15em; margin-bottom: 0.5rem;
}
.privacy-section-title {
  font-size: 1rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 0.75rem;
  margin-top: 1.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--outline-gray);
}
.privacy-sub-label {
  font-size: 0.8rem; font-weight: 800;
  color: var(--lemon); text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem; margin-top: 0.75rem;
}
.privacy-list {
  list-style: none; padding: 0; margin: 0 0 1rem 0;
}
.privacy-list li {
  font-size: 0.85rem; color: var(--gray-400);
  font-weight: 500; line-height: 1.7;
  padding-left: 1.25rem; position: relative;
}
.privacy-list li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--lemon); font-weight: 900;
  font-size: 1rem;
}
.privacy-contact-box {
  border: 2px solid var(--outline-gray);
  background: var(--charcoal);
  padding: 1.25rem 1.5rem;
  margin-top: 0.75rem;
}
.privacy-contact-box p {
  font-size: 0.85rem; color: var(--gray-400);
  font-weight: 600; line-height: 1.8;
}

/* ===== REFUND POLICY EXTRAS ===== */
.refund-list-yes li::before {
  content: '\2713';
  color: #4ade80;
}
.refund-list-no li::before {
  content: '\2717';
  color: #f87171;
}
.refund-step {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1.25rem; margin-bottom: 0.5rem;
}
.refund-step-num {
  font-size: 10px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--charcoal); background: var(--lemon);
  padding: 0.3rem 0.75rem;
  flex-shrink: 0;
}
.refund-step-label {
  font-size: 0.875rem; font-weight: 700;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 0.03em;
}
.refund-highlight-box {
  border: 2px solid var(--lemon);
  background: rgba(247, 235, 0, 0.06);
  padding: 1rem 1.5rem; text-align: center;
  margin-top: 0.75rem;
}
.refund-highlight-box p {
  font-size: 1rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--white);
}
.disclaimer-ack-box {
  border: 2px solid var(--lemon);
  background: rgba(247, 235, 0, 0.04);
  padding: 1.5rem;
  margin-top: 0.5rem;
}
.disclaimer-ack-title {
  font-size: 0.875rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--lemon); margin-bottom: 0.75rem;
}
.disclaimer-ack-box p {
  font-size: 0.85rem; color: var(--gray-400);
  font-weight: 600; line-height: 1.7;
}

/* ===== SHIPPING COST CARDS ===== */
.shipping-cost-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin: 0.75rem 0 1.25rem;
}
.shipping-cost-card {
  border: 2px solid var(--outline-gray);
  background: var(--charcoal);
  padding: 1.25rem; text-align: center;
}
.shipping-cost-card.shipping-cost-free {
  border-color: var(--lemon);
  background: rgba(247, 235, 0, 0.04);
}
.shipping-cost-label {
  display: block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-500); margin-bottom: 0.5rem;
}
.shipping-cost-value {
  display: block; font-size: 1.5rem; font-weight: 900;
  color: var(--white);
}

/* ===== PRE-ORDER FORM ===== */
.preorder-modal { max-width: 640px; }
.preorder-section-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 10px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--lemon); margin: 1.75rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--outline-gray);
}
.preorder-section-label .material-symbols-outlined { font-size: 16px; }
.form-error {
  display: block; font-size: 11px; font-weight: 700;
  color: #f87171; margin-top: 0.35rem;
  min-height: 0;
}
.form-input.input-error { border-color: #f87171; }
.form-textarea {
  resize: vertical; min-height: 60px;
  font-family: var(--font-main);
}
.qty-stepper {
  display: flex; align-items: stretch;
}
.qty-stepper-btn {
  width: 44px; background: var(--charcoal);
  border: 2px solid var(--outline-gray); color: var(--white);
  font-size: 1.25rem; font-weight: 900; cursor: pointer;
  transition: all 0.2s; font-family: var(--font-main);
}
.qty-stepper-btn:first-child { border-right: none; }
.qty-stepper-btn:last-child { border-left: none; }
.qty-stepper-btn:hover { background: var(--lemon); color: var(--charcoal); }
.qty-stepper-input {
  width: 60px; text-align: center;
  -moz-appearance: textfield;
  border-left: none; border-right: none;
}
.qty-stepper-input::-webkit-outer-spin-button,
.qty-stepper-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 0.75rem;
  cursor: pointer; margin-bottom: 0.5rem;
  position: relative;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  accent-color: var(--lemon);
  margin-top: 2px; cursor: pointer;
}
.checkbox-text {
  font-size: 0.8rem; color: var(--gray-400);
  font-weight: 600; line-height: 1.5;
}
/* Pre-order success styles */
.preorder-summary-box {
  border: 2px solid var(--outline-gray);
  background: var(--charcoal);
  padding: 1.25rem; margin: 1.5rem 0;
}
.preorder-summary-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 0.5rem 0;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-400);
  border-bottom: 1px solid var(--outline-gray);
}
.preorder-summary-row:last-child { border-bottom: none; }
.preorder-summary-row strong { color: var(--white); font-size: 0.8rem; text-align: right; }
.preorder-next-steps {
  border: 2px solid var(--lemon);
  background: rgba(247, 235, 0, 0.04);
  padding: 1.5rem; margin: 1.5rem 0;
}
.preorder-next-title {
  font-size: 10px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--lemon); margin-bottom: 1rem;
}
.preorder-step-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem; color: var(--gray-400);
  font-weight: 600; line-height: 1.5;
}
.preorder-step-item:last-child { margin-bottom: 0; }
.preorder-step-num-circle {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--lemon); color: var(--charcoal);
  font-size: 11px; font-weight: 900;
  border-radius: 50%;
}

/* ===== WHAT'S INSIDE + COMPARISON ===== */
.inside-box-section {
  border-top: 1px solid var(--outline-gray);
  border-bottom: 1px solid var(--outline-gray);
}
.inside-box-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0; max-width: 1200px; margin: 0 auto;
}
.inside-box-left {
  padding: 0 3rem 0 0;
  border-right: 2px solid var(--outline-gray);
}
.inside-box-right {
  padding: 0 0 0 3rem;
}
.section-heading {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.section-sub {
  font-family: var(--font-main);
  font-size: 0.8rem; font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
/* Left: item list */
.inside-box-list { display: flex; flex-direction: column; gap: 1.25rem; }
.inside-box-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; border: 1px solid var(--outline-gray);
  background: var(--charcoal-light);
  transition: border-color 0.2s;
}
.inside-box-item:hover { border-color: var(--lemon); }
.inside-box-item-icon {
  font-size: 24px; color: var(--lemon);
  flex-shrink: 0; margin-top: 2px;
}
.inside-box-item-title {
  font-family: var(--font-main);
  font-size: 0.8rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--white); margin-bottom: 0.25rem;
}
.inside-box-item-desc {
  font-family: var(--font-main);
  font-size: 0.75rem; font-weight: 600;
  color: var(--gray-400); line-height: 1.5;
  text-transform: uppercase;
}
/* Right: comparison table */
.compare-table { display: flex; flex-direction: column; }
.compare-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: 0;
}
.compare-header-bad, .compare-header-good {
  font-family: var(--font-main);
  font-size: 9px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.2em;
  padding: 0.75rem 1rem;
}
.compare-header-bad {
  background: rgba(248, 113, 113, 0.08);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-right: none;
}
.compare-header-good {
  background: rgba(74, 222, 128, 0.08);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.compare-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.compare-cell {
  font-family: var(--font-main);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--outline-gray);
  display: flex; align-items: flex-start; gap: 0.4rem;
  line-height: 1.4;
}
.compare-bad {
  color: var(--gray-500);
  background: rgba(248, 113, 113, 0.03);
  border-left: 1px solid var(--outline-gray);
}
.compare-good {
  color: var(--gray-400);
  background: rgba(74, 222, 128, 0.03);
  border-right: 1px solid var(--outline-gray);
  border-left: 1px solid var(--outline-gray);
}
.compare-x { color: #f87171; font-weight: 900; flex-shrink: 0; }
.compare-check { color: #4ade80; font-weight: 900; flex-shrink: 0; }
.compare-neutral {
  color: var(--gray-500);
  border-left: 1px solid var(--outline-gray);
}
.compare-highlight {
  color: var(--lemon); font-weight: 900;
  background: rgba(247, 235, 0, 0.04);
  border-right: 1px solid var(--outline-gray);
  border-left: 1px solid var(--outline-gray);
}
.compare-coin, .compare-leaf { flex-shrink: 0; }
.compare-row-last .compare-cell { border-bottom: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--charcoal);
    border-bottom: 2px solid var(--outline-gray);
    padding: 1.5rem; gap: 1rem;
  }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-text-col { border-right: none; border-bottom: 2px solid var(--outline-gray); }
  .hero-image-col { min-height: 300px; }

  .product-grid { grid-template-columns: 1fr; }
  .product-image-col { border-right: none; }

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

  .heritage-grid { grid-template-columns: 1fr; }
  .heritage-text-col {
    border-right: none;
    border-bottom: 2px solid var(--outline-gray);
    padding: 3rem;
  }
  .heritage-image-col { min-height: 300px; }

  .pairings-grid { grid-template-columns: 1fr; }
  .pairing-card { border-right: none; border-bottom: 2px solid var(--outline-gray); }
  .pairing-card-last { border-bottom: none; }

  .flavor-inner { padding: 3rem; }
  .flavor-grid { grid-template-columns: 1fr; }

  .inside-box-split {
    grid-template-columns: 1fr;
  }
  .inside-box-left {
    border-right: none;
    border-bottom: 2px solid var(--outline-gray);
    padding: 0 0 2rem 0;
    margin-bottom: 2rem;
  }
  .inside-box-right { padding: 0; }

  .preorder-grid { grid-template-columns: 1fr; }
  .preorder-left {
    border-right: none;
    border-bottom: 2px solid var(--outline-gray);
    padding: 3rem;
  }
  .preorder-right { padding: 3rem; }

  .testimonials-section { padding: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .final-cta-grid { grid-template-columns: 1fr; }
  .final-cta-image-col {
    border-right: none;
    border-bottom: 2px solid var(--outline-gray);
    min-height: 300px;
  }
  .final-cta-text-col { padding: 3rem; }

  .trust-banner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .modal { padding: 2rem; margin-top: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }

  .lemi-strip { grid-template-columns: 1fr; }
  .lemi-strip-img-col { min-height: 200px; border-bottom: 2px solid var(--outline-gray); }
  .lemi-strip-text-col { border-left: none; padding: 2rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .tech-grid { grid-template-columns: 1fr; }
  .countdown { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
  .preorder-title { font-size: 2rem; }
}
