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

:root {
  --pink: #e8829a;
  --pink-light: #f4b8c8;
  --pink-dark: #c4596e;
  --gold: #d4af8a;
  --gold-dark: #b8915f;
  --dark: #1a1015;
  --dark2: #2d1e25;
  --mid: #5c3d48;
  --light: #fdf6f8;
  --white: #ffffff;
  --gray: #8c7880;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(228,130,154,0.15);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(26,16,21,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(228,130,154,0.1);
  transition: all 0.3s;
}
.navbar.scrolled { padding: 12px 40px; background: rgba(26,16,21,0.97); }

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem; font-weight: 600;
  background: linear-gradient(135deg, var(--pink-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 4px;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(253,246,248,0.7); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--pink-light); }

.cart-icon {
  position: relative; cursor: pointer;
  color: var(--light); transition: color 0.3s;
}
.cart-icon:hover { color: var(--pink-light); }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--pink); color: white;
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 420px; height: 100%;
  background: var(--dark2); z-index: 201;
  display: flex; flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid rgba(228,130,154,0.15);
}
.cart-sidebar.open { right: 0; }

.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px; border-bottom: 1px solid rgba(228,130,154,0.1);
}
.cart-header h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--pink-light); }
.cart-header button { background: none; border: none; color: var(--light); font-size: 1.2rem; cursor: pointer; }

.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; padding: 60px 0; color: var(--gray); font-size: 0.9rem; }

.cart-item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-item-emoji { font-size: 2rem; width: 48px; text-align: center; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; }
.cart-item-price { font-size: 0.8rem; color: var(--pink); }
.cart-item-qty {
  display: flex; align-items: center; gap: 8px; margin-top: 6px;
}
.qty-btn {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(228,130,154,0.15); border: none;
  color: var(--light); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--pink); }

.cart-footer { padding: 20px; border-top: 1px solid rgba(228,130,154,0.1); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 16px; font-weight: 600; }
.btn-checkout {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border: none; border-radius: 30px; color: white;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  letter-spacing: 0.5px; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(228,130,154,0.4); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; padding: 14px 32px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border: none; border-radius: 30px; color: white;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  text-decoration: none; letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(228,130,154,0.4); }

.btn-ghost {
  display: inline-block; padding: 14px 32px;
  border: 1.5px solid rgba(253,246,248,0.3); border-radius: 30px;
  color: var(--light); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--pink-light); color: var(--pink-light); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 120px 80px 80px;
  position: relative; overflow: hidden;
  gap: 40px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(228,130,154,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(212,175,138,0.08) 0%, transparent 50%);
}

.hero-particles {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(228,130,154,0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: particleDrift 20s linear infinite;
}
@keyframes particleDrift { 0%{transform:translate(0,0)} 100%{transform:translate(-40px,-40px)} }

.hero-content { position: relative; z-index: 1; }

.hero-tag {
  display: inline-block; padding: 6px 16px;
  background: rgba(228,130,154,0.15);
  border: 1px solid rgba(228,130,154,0.3);
  border-radius: 20px; font-size: 0.75rem;
  color: var(--pink-light); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--pink-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub { font-size: 1rem; color: rgba(253,246,248,0.65); line-height: 1.7; margin-bottom: 36px; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; }

.hero-product-card {
  width: 300px; height: 400px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(228,130,154,0.15);
  border-radius: 30px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-product-card::before {
  content: ''; position: absolute; inset: -50%;
  background: radial-gradient(circle, rgba(228,130,154,0.1) 0%, transparent 60%);
  animation: rotate 10s linear infinite;
}
@keyframes rotate { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }

.rotating-product { position: relative; animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

.product-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle, rgba(228,130,154,0.3) 0%, transparent 60%);
  filter: blur(20px);
}

.product-bottle { width: 160px; height: auto; }

.hero-stats {
  grid-column: 1 / -1;
  display: flex; gap: 40px; justify-content: center;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06);
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.8rem; font-family: var(--font-serif); color: var(--pink-light); }
.stat span { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

/* ===== CATEGORIES ===== */
.categories { padding: 40px 0; background: rgba(255,255,255,0.02); }
.cat-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cat-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 20px 28px; cursor: pointer;
  border: 1px solid rgba(228,130,154,0.1);
  border-radius: var(--radius); min-width: 110px;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
}
.cat-item:hover, .cat-item.active {
  border-color: var(--pink); background: rgba(228,130,154,0.08);
  transform: translateY(-4px);
}
.cat-icon { font-size: 2rem; }
.cat-item span { font-size: 0.8rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ===== PRODUCTS ===== */
.products-section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400; color: var(--light); margin-bottom: 8px;
}
.section-sub { color: var(--gray); font-size: 0.95rem; }

.products-filter {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 20px;
  background: none; border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray); font-size: 0.8rem; cursor: pointer;
  font-family: var(--font-sans); letter-spacing: 0.5px;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(228,130,154,0.15);
  border-color: var(--pink); color: var(--pink-light);
}

.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s; cursor: pointer;
}
.product-card:hover {
  border-color: rgba(228,130,154,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 12px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px;
}
.badge-new { background: var(--pink); color: white; }
.badge-sale { background: #e8a030; color: white; }
.badge-hot { background: #e05050; color: white; }

.product-info { padding: 16px; }
.product-category { font-size: 0.7rem; color: var(--pink); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
.product-name { font-size: 0.95rem; font-weight: 500; margin-bottom: 6px; }
.product-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.5; margin-bottom: 12px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1rem; font-weight: 700; color: var(--pink-light); }
.product-price-old { font-size: 0.78rem; color: var(--gray); text-decoration: line-through; margin-left: 6px; }
.add-cart-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(228,130,154,0.15);
  border: 1px solid rgba(228,130,154,0.3);
  color: var(--pink); font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.add-cart-btn:hover { background: var(--pink); color: white; transform: scale(1.1); }

/* ===== AI SECTION ===== */
.ai-section {
  padding: 80px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(45,30,37,0.8) 0%, rgba(26,16,21,1) 100%);
}
.ai-bg-shape {
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(228,130,154,0.1) 0%, transparent 70%);
  filter: blur(40px);
}

.ai-wrapper {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.badge-ai, .badge-ar {
  display: inline-block; padding: 5px 14px;
  border-radius: 20px; font-size: 0.7rem;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 600;
}
.badge-ai { background: rgba(168,130,228,0.2); border: 1px solid rgba(168,130,228,0.4); color: #c8a8f4; }
.badge-ar { background: rgba(130,200,228,0.2); border: 1px solid rgba(130,200,228,0.4); color: #a8d8f4; }

.ai-info h2 {
  font-family: var(--font-serif); font-size: 2.5rem;
  font-weight: 400; margin-bottom: 16px;
}
.ai-info p { color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.ai-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ai-features li { font-size: 0.85rem; color: rgba(253,246,248,0.7); }

.ai-quiz-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(228,130,154,0.15);
  border-radius: 24px; padding: 32px;
  min-height: 360px;
}

/* Quiz styles */
.quiz-progress { margin-bottom: 24px; }
.quiz-progress-bar {
  height: 3px; background: rgba(255,255,255,0.08);
  border-radius: 3px; overflow: hidden; margin-bottom: 8px;
}
.quiz-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--pink), var(--pink-light));
  border-radius: 3px; transition: width 0.5s;
}
.quiz-step { font-size: 0.75rem; color: var(--gray); }

.quiz-question {
  font-family: var(--font-serif); font-size: 1.4rem;
  font-weight: 400; margin-bottom: 24px; line-height: 1.4;
}
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  padding: 12px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--light); font-size: 0.85rem; cursor: pointer;
  text-align: left; font-family: var(--font-sans);
  transition: all 0.2s;
}
.quiz-option:hover { border-color: var(--pink); background: rgba(228,130,154,0.1); color: var(--pink-light); }
.quiz-option.selected { border-color: var(--pink); background: rgba(228,130,154,0.15); color: var(--pink-light); }

.quiz-result { text-align: center; }
.quiz-result-emoji { font-size: 4rem; margin-bottom: 16px; }
.quiz-result-type {
  font-family: var(--font-serif); font-size: 1.8rem;
  color: var(--pink-light); margin-bottom: 8px;
}
.quiz-result-desc { color: var(--gray); font-size: 0.85rem; line-height: 1.6; margin-bottom: 24px; }
.quiz-result-products h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-bottom: 12px; }
.quiz-product-recs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.quiz-rec-chip {
  padding: 6px 14px; border-radius: 20px;
  background: rgba(228,130,154,0.15); border: 1px solid rgba(228,130,154,0.3);
  font-size: 0.78rem; color: var(--pink-light); cursor: pointer;
}
.quiz-rec-chip:hover { background: rgba(228,130,154,0.3); }
.quiz-restart {
  margin-top: 20px; padding: 10px 24px;
  background: none; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px; color: var(--gray);
  font-size: 0.8rem; cursor: pointer; transition: all 0.3s;
}
.quiz-restart:hover { border-color: var(--pink); color: var(--pink-light); }

/* ===== AR SECTION ===== */
.ar-section { padding: 80px 0; }

.ar-wrapper { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }

.ar-controls {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px; padding: 24px;
}
.ar-controls h3 {
  font-family: var(--font-serif); font-size: 1.2rem;
  margin-bottom: 16px; color: var(--pink-light);
}

.ar-product-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.ar-product-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer; transition: all 0.2s;
}
.ar-product-item:hover, .ar-product-item.active {
  border-color: var(--pink); background: rgba(228,130,154,0.1);
}
.ar-product-emoji { font-size: 1.5rem; }
.ar-product-name { font-size: 0.82rem; font-weight: 500; }
.ar-product-tag { font-size: 0.7rem; color: var(--gray); }

.ar-intensity { margin-bottom: 20px; }
.ar-intensity label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); display: block; margin-bottom: 8px; }
.ar-intensity input[type=range] { width: 100%; accent-color: var(--pink); }
.ar-intensity span { font-size: 0.78rem; color: var(--pink); }

.ar-color-picker {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.color-dot {
  width: 28px; height: 28px; border-radius: 50%;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s;
}
.color-dot:hover, .color-dot.active { border-color: white; transform: scale(1.15); }

.ar-camera-frame {
  position: relative; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px; overflow: hidden;
  min-height: 480px; display: flex;
  align-items: center; justify-content: center;
}

.ar-placeholder { text-align: center; padding: 40px; }
.ar-placeholder-icon { font-size: 4rem; margin-bottom: 16px; }
.ar-placeholder p { color: var(--gray); margin-bottom: 24px; line-height: 1.6; }

#arVideo, #arCanvas {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: 24px;
}
#arCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.ar-overlay-ui {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 12px;
}
.ar-btn-stop, .ar-btn-snap {
  padding: 10px 20px; border-radius: 24px;
  border: none; font-size: 0.85rem; cursor: pointer;
  font-weight: 600; transition: all 0.2s;
}
.ar-btn-stop { background: rgba(228,80,80,0.8); color: white; }
.ar-btn-snap { background: rgba(255,255,255,0.9); color: var(--dark); }
.ar-btn-stop:hover, .ar-btn-snap:hover { transform: scale(1.05); }

.ar-status {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; background: rgba(0,0,0,0.6);
  border-radius: 20px; font-size: 0.75rem; color: var(--pink-light);
}

.ar-snaps { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.ar-snap-img {
  width: 80px; height: 80px; border-radius: 10px;
  object-fit: cover; border: 2px solid rgba(228,130,154,0.3);
  cursor: pointer; transition: transform 0.2s;
}
.ar-snap-img:hover { transform: scale(1.05); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 28px;
  transition: all 0.3s;
}
.testi-card:hover { border-color: rgba(228,130,154,0.2); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testi-card p { font-size: 0.9rem; line-height: 1.7; color: rgba(253,246,248,0.75); margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; gap: 12px; align-items: center; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: white;
}
.testi-author strong { display: block; font-size: 0.85rem; }
.testi-author span { font-size: 0.75rem; color: var(--gray); }

/* ===== PROMO BANNER ===== */
.promo-banner {
  padding: 60px 0; text-align: center;
  background: linear-gradient(135deg, rgba(228,130,154,0.12), rgba(212,175,138,0.08));
  border-top: 1px solid rgba(228,130,154,0.1);
  border-bottom: 1px solid rgba(228,130,154,0.1);
}
.promo-banner h2 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 8px; }
.promo-banner p { color: var(--gray); margin-bottom: 24px; }
.promo-banner strong { color: var(--pink-light); }

/* ===== FOOTER ===== */
.footer { padding: 64px 0 0; background: var(--dark2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 600;
  background: linear-gradient(135deg, var(--pink-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 4px; margin-bottom: 16px;
}
.footer-brand p { color: var(--gray); font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); text-decoration: none; font-size: 0.8rem; font-weight: 600;
  transition: all 0.3s;
}
.social-links a:hover { background: var(--pink); color: white; }

.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--light); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--gray); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--pink-light); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray); }
.footer-bottom strong { color: var(--pink-light); }
.payment-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.payment-icons span { font-size: 0.75rem; color: var(--gray); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: rgba(45,30,37,0.95); border: 1px solid rgba(228,130,154,0.3);
  padding: 12px 24px; border-radius: 30px; font-size: 0.85rem;
  color: var(--light); z-index: 300; white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== SECTION REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; text-align: center; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { gap: 24px; }
  .ai-wrapper, .ar-wrapper { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .navbar { padding: 16px 20px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
}
