/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a2e;
  background: #fafafa;
  line-height: 1.6;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.header { 
  background: rgba(255,255,255,0.9); 
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f0f0f0;
  position: sticky; top: 0; z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1100px; margin: 0 auto; }
.logo { font-size: 1.2rem; font-weight: 800; text-decoration: none; color: #1a1a2e; letter-spacing: -0.5px; }
.nav { display: flex; gap: 24px; }
.nav-link { text-decoration: none; color: #666; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-link:hover { color: #1a1a2e; }

/* ===== Hero ===== */
.hero { padding: 64px 0 80px; background: linear-gradient(135deg, #faf5ff 0%, #fef3c7 50%, #fef2f2 100%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-content { max-width: 540px; }
.badge-group { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3px;
}
.badge-amazon { background: #fef3c7; color: #92400e; }
.badge-prime { background: #dbeafe; color: #1e40af; }
.badge-limited { background: #fce7f3; color: #9d174d; }
.hero-title { font-size: 2.8rem; font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 12px; }
.hero-subtitle { font-size: 1.4rem; font-weight: 400; color: #666; }
.hero-desc { font-size: 1.05rem; color: #555; margin-bottom: 24px; max-width: 480px; }
.hero-pricing { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.current-price { font-size: 2.2rem; font-weight: 800; color: #1a1a2e; }
.old-price { font-size: 1.2rem; color: #999; text-decoration: line-through; }
.discount-badge {
  display: inline-flex; padding: 3px 10px; border-radius: 999px;
  background: #d1fae5; color: #065f46; font-size: 0.8rem; font-weight: 700;
}
.hero-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.rating-text { font-size: 0.95rem; color: #333; font-weight: 600; }
.rating-muted { font-weight: 400; color: #999; }

/* ===== Buttons ===== */
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
  border-radius: 12px; font-size: 1rem; font-weight: 700; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #ea580c); color: white;
  box-shadow: 0 4px 14px rgba(234,88,12,0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(234,88,12,0.4); }
.btn-secondary { background: white; color: #333; border: 1px solid #e5e7eb; }
.btn-secondary:hover { background: #f9fafb; border-color: #d1d5db; }
.btn-deal {
  background: linear-gradient(135deg, #7c3aed, #6366f1); color: white;
  box-shadow: 0 4px 14px rgba(124,58,237,0.3);
}
.btn-deal:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,58,237,0.4); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-icon { width: 20px; height: 20px; }
.affiliate-disclosure { font-size: 0.75rem; color: #999; margin-top: 8px; }

/* ===== Hero Image ===== */
.hero-image { display: flex; align-items: center; justify-content: center; }
.product-circle {
  width: 320px; height: 320px; border-radius: 50%;
  background: linear-gradient(135deg, #fef3c7, #fde68a, #fef9c3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(251,191,36,0.15);
  position: relative;
}
.product-circle::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px dashed rgba(251,191,36,0.3);
}
.product-icon { width: 80px; height: 80px; color: #d97706; margin-bottom: 8px; }
.bottle-icon { width: 100%; height: 100%; }
.color-label { font-size: 1rem; font-weight: 700; color: #92400e; margin-bottom: 8px; }
.color-swatch { display: flex; gap: 6px; }
.swatch { display: block; width: 24px; height: 24px; border-radius: 50%; border: 2px solid white; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }

/* ===== Sections ===== */
.section-title {
  font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 40px;
  letter-spacing: -0.5px;
}

/* ===== Features ===== */
.features { padding: 80px 0; background: white; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature-card {
  padding: 28px; border-radius: 16px; border: 1px solid #f0f0f0;
  transition: all 0.2s;
}
.feature-card:hover { border-color: #e5e7eb; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.feature-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon svg { width: 22px; height: 22px; }
.feature-icon-rose { background: #fef2f2; color: #e11d48; }
.feature-icon-blue { background: #eff6ff; color: #2563eb; }
.feature-icon-emerald { background: #ecfdf5; color: #059669; }
.feature-icon-amber { background: #fffbeb; color: #d97706; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: #666; line-height: 1.6; }

/* ===== Specs ===== */
.specs { padding: 80px 0; background: #fafafa; }
.specs-grid { 
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px;
  max-width: 800px; margin: 0 auto;
}
.spec-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; background: white; border-radius: 12px;
  border: 1px solid #f0f0f0;
}
.spec-label { font-size: 0.85rem; color: #888; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.spec-value { font-size: 0.95rem; color: #1a1a2e; font-weight: 600; text-align: right; }

/* ===== More Deals ===== */
.more-deals { padding: 80px 0; background: white; }
.offer-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* ===== Work.ink Offer Card Inline ===== */
.workink-offer-inline { margin-top: 12px; }

/* ===== CTA ===== */
.cta { padding: 80px 0; background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%); }
.cta-inner { text-align: center; }
.cta-title { font-size: 2rem; font-weight: 800; color: white; margin-bottom: 12px; }
.cta-desc { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-inner .btn-primary {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 4px 14px rgba(234,88,12,0.4);
}
.cta-inner .btn-primary:hover { box-shadow: 0 8px 24px rgba(234,88,12,0.5); }
.cta-disclosure { margin-top: 16px; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ===== KEY GATE OVERLAY ===== */
.key-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  padding: 24px;
}
.key-gate-content {
  background: white; border-radius: 24px; padding: 40px 32px 32px;
  max-width: 420px; width: 100%; text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: keyFadeIn 0.3s ease;
}
@keyframes keyFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.key-gate-icon { font-size: 3rem; margin-bottom: 12px; }
.key-gate-title { font-size: 1.5rem; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
.key-gate-desc { font-size: 0.9rem; color: #666; margin-bottom: 24px; }
.key-gate-close {
  background: none; border: none; color: #999; font-size: 0.8rem;
  cursor: pointer; margin-top: 16px; text-decoration: underline;
  transition: color 0.2s;
}
.key-gate-close:hover { color: #666; }
.key-fallback { padding: 16px; background: #f5f3ff; border-radius: 16px; }
.key-fallback-text { font-size: 0.9rem; color: #555; }

/* ===== FLOATING MONETIZATION BAR ===== */
.floating-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  animation: barSlideUp 0.4s ease;
}
@keyframes barSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.floating-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 12px 24px;
  max-width: 1100px; margin: 0 auto;
}
.floating-bar-text {
  color: rgba(255,255,255,0.85); font-size: 0.85rem;
}
.floating-bar-text strong { color: #fbbf24; }
.floating-bar-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: white; padding: 8px 20px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.floating-bar-cta:hover { transform: scale(1.03); box-shadow: 0 4px 12px rgba(234,88,12,0.4); }
.floating-bar-arrow { width: 14px; height: 14px; }
.floating-bar-close {
  background: rgba(255,255,255,0.1); border: none; color: rgba(255,255,255,0.5);
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.floating-bar-close svg { width: 14px; height: 14px; }
.floating-bar-close:hover { background: rgba(255,255,255,0.2); color: white; }

/* ===== Footer ===== */
.footer { padding: 24px 0; background: #1a1a2e; border-top: 1px solid rgba(255,255,255,0.05); padding-bottom: 76px; }
.footer-inner { text-align: center; }
.footer-text { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 40px 0 56px; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-content { max-width: 100%; }
  .product-circle { width: 240px; height: 240px; }
  .product-icon { width: 60px; height: 60px; }
  .nav { display: none; }
  .section-title { font-size: 1.4rem; }
  .specs-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .floating-bar-inner { flex-wrap: wrap; gap: 8px; padding: 10px 16px; }
  .floating-bar-text { font-size: 0.75rem; text-align: center; }
  .floating-bar-cta { font-size: 0.75rem; padding: 6px 16px; }
  .footer { padding-bottom: 70px; }
}
