/**
 * Sexitreffit - Barbie Pink Theme CSS
 * Custom styles for the dating platform
 */

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --barbie-50: #fef2f2;
  --barbie-100: #fde8e8;
  --barbie-200: #fcc5c5;
  --barbie-300: #f87171;
  --barbie-400: #ef4444;
  --barbie-500: #dc2626;
  --barbie-600: #b91c1c;
  --barbie-700: #991b1b;
  --barbie-800: #7f1d1d;
  --barbie-900: #1a1a2e;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gradient-barbie: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #b91c1c 100%);
  --gradient-barbie-soft: linear-gradient(135deg, #fef2f2 0%, #fde8e8 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --shadow-barbie: 0 4px 20px rgba(220, 38, 38, 0.25);
  --shadow-barbie-lg: 0 8px 40px rgba(220, 38, 38, 0.3);
  --rose-bg: #fef2f2;
  --barbie-pastel: #fde8e8;
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(220, 38, 38, 0.12);
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ============================================================
   Base & Typography
   ============================================================ */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--barbie-900);
  background: var(--barbie-50);
  overflow-x: hidden;
  padding-top: 96px; /* topbar (36px) + navbar (~60px) */
}

@media (max-width: 768px) {
  body { padding-top: 60px; } /* no topbar on mobile, just navbar */
}

.font-display { font-family: 'Playfair Display', serif; }
.font-body { font-family: 'Poppins', sans-serif; }

.bg-rose-alt {
  background: linear-gradient(180deg, var(--barbie-50) 0%, #fef5f5 100%);
}

/* ============================================================
   Glass Card
   ============================================================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.08);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-barbie {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gradient-barbie);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: var(--shadow-barbie);
}

.btn-barbie:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-barbie-lg);
  color: white;
}

.btn-barbie-lg {
  padding: 14px 36px;
  font-size: 1.05rem;
}

.btn-barbie-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-barbie-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--barbie-500);
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid var(--barbie-500);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-barbie-outline:hover {
  background: var(--barbie-500);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-barbie);
}

/* ============================================================
   Topbar
   ============================================================ */
.topbar-datez {
  background: var(--gradient-dark);
  color: white;
  padding: 8px 0;
  font-size: 0.8rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.35s ease;
}

.topbar-datez .pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  margin-right: 4px;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar-datez {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  transition: all 0.35s ease;
}

.navbar-datez.scrolled {
  top: 0;
  box-shadow: 0 2px 20px rgba(220, 38, 38, 0.1);
}

body.navbar-scrolled {
  padding-top: 60px; /* navbar stays, topbar hides */
}

.navbar-brand-datez {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-barbie);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-link-datez {
  color: var(--barbie-900);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-link-datez:hover {
  color: var(--barbie-500);
  background: rgba(220, 38, 38, 0.05);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-datez {
  padding: 160px 0 60px;
  background: var(--gradient-barbie-soft);
  position: relative;
  overflow: hidden;
}

.hero-datez::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-title-datez {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--barbie-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.hero-subtitle-datez {
  font-size: 1.05rem;
  color: var(--barbie-900);
  opacity: 0.75;
  line-height: 1.7;
}

/* ============================================================
   Quiz
   ============================================================ */
.datez-quiz {
  background: white;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-barbie);
  border: 1px solid var(--glass-border);
}

.quiz-progress {
  height: 4px;
  background: var(--barbie-100);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--gradient-barbie);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.quiz-progress-steps {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.quiz-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--barbie-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--barbie-300);
  transition: all 0.3s;
}

.quiz-step-dot.active {
  border-color: var(--barbie-500);
  color: var(--barbie-500);
}

.quiz-step-dot.completed {
  background: var(--barbie-500);
  border-color: var(--barbie-500);
  color: white;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.quiz-question {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--barbie-900);
}

.quiz-question i {
  color: var(--barbie-500);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--barbie-50);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  color: var(--barbie-900);
  transition: all 0.25s;
  font-size: 0.95rem;
}

.quiz-option:hover {
  border-color: var(--barbie-300);
  background: var(--barbie-100);
}

.quiz-option.selected {
  border-color: var(--barbie-500);
  background: rgba(220, 38, 38, 0.1);
}

.quiz-option i {
  font-size: 1.2rem;
  color: var(--barbie-500);
}

/* Quiz Result */
.quiz-result-content { text-align: center; }
.quiz-result-icon { font-size: 3rem; color: #22c55e; margin-bottom: 8px; }
.quiz-result-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--barbie-900); }
.quiz-result-text { color: var(--barbie-900); opacity: 0.8; margin: 8px 0; }
.quiz-result-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 16px 0;
}
.quiz-result-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -10px;
  object-fit: cover;
}
.quiz-result-avatars img:first-child { margin-left: 0; }
.quiz-result-more {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--barbie-500);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: -10px;
  border: 3px solid white;
}
.quiz-result-note {
  font-size: 0.8rem;
  color: var(--barbie-900);
  opacity: 0.6;
  margin-top: 8px;
}

/* ============================================================
   Hero Profile Cards
   ============================================================ */
.hero-profile-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.3s;
}

.hero-profile-card:hover { transform: scale(1.05); }

.hero-profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-profile-card .online-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid white;
}

.hero-profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.hero-profile-info .name {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================================
   Section Titles
   ============================================================ */
.section-title-datez {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title-datez h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--barbie-900);
  margin-bottom: 0.5rem;
}

.section-title-datez p {
  color: var(--barbie-900);
  opacity: 0.65;
  font-size: 1rem;
}

/* ============================================================
   Photo Gallery Grid
   ============================================================ */
.photo-annonces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

@media (max-width: 640px) {
  .photo-annonces-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.photo-annonce-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  transition: transform 0.3s;
}

.photo-annonce-item:hover { transform: scale(1.03); }

.photo-annonce-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-annonce-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.photo-annonce-name { color: white; font-weight: 600; font-size: 0.9rem; }
.photo-annonce-tag { color: var(--barbie-300); font-size: 0.75rem; }
.photo-annonce-city { color: rgba(255,255,255,0.7); font-size: 0.75rem; }

.photo-annonce-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #22c55e;
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* ============================================================
   Stats Section
   ============================================================ */
.stat-item-datez { text-align: center; padding: 16px; }

.stat-number-datez {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  background: var(--gradient-barbie);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label-datez {
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* ============================================================
   Bento Categories Grid
   ============================================================ */
.bento-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .bento-categories { grid-template-columns: 1fr; }
}

.bento-cat {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform 0.3s;
}

.bento-cat:hover { transform: translateY(-4px); }

.bento-cat--lg { grid-column: span 2; min-height: 240px; }

@media (max-width: 768px) {
  .bento-cat--lg { grid-column: span 1; }
}

.bento-cat-bg {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.bento-cat-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  color: white;
  width: 100%;
}

.bento-cat-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.bento-cat-content p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 12px;
}

.bento-cat-icon { font-size: 2rem; margin-bottom: 8px; display: block; }

.bento-cat-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.bento-cat-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bento-cat-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

.bento-cat-arrow {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.bento-cat:hover .bento-cat-arrow { background: rgba(255,255,255,0.4); }

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

/* ============================================================
   Feature Boxes (How It Works)
   ============================================================ */
.feature-box-datez {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: all 0.3s;
}

.feature-box-datez:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-barbie);
}

.feature-box-datez .icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-barbie);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: white;
}

.feature-box-datez h4 {
  font-weight: 700;
  color: var(--barbie-900);
  margin-bottom: 8px;
}

.feature-box-datez p {
  color: var(--barbie-900);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-card-datez {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--glass-border);
  position: relative;
  transition: all 0.3s;
}

.testimonial-card-datez:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-barbie);
}

.testimonial-card-enhanced { overflow: hidden; }

.testimonial-city-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--barbie-50);
  color: var(--barbie-500);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.testimonial-stars-datez {
  color: var(--gold-400);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testimonial-text-datez {
  color: var(--barbie-900);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--barbie-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--barbie-500);
  font-size: 1.5rem;
}

.testimonial-name-datez { font-weight: 600; font-size: 0.9rem; display: block; }
.testimonial-location-datez { font-size: 0.8rem; color: var(--barbie-500); }

.testimonial-trust-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--barbie-900);
}

.trust-item i { color: var(--barbie-500); }

/* ============================================================
   City Atmosphere Grid
   ============================================================ */
.city-atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .city-atmosphere-grid { grid-template-columns: repeat(2, 1fr); }
}

.city-atmo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  background: var(--gradient-barbie);
  transition: transform 0.3s;
}

.city-atmo-card:hover { transform: translateY(-4px); }

.city-atmo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(45, 15, 30, 0.8));
}

.city-atmo-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: white;
}

.city-atmo-content i { font-size: 1.2rem; color: var(--barbie-300); }
.city-atmo-content h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; }
.city-atmo-content p { font-size: 0.8rem; opacity: 0.8; margin: 4px 0 8px; }

.city-atmo-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* City-specific gradient backgrounds */
.city-atmo-helsinki { background: linear-gradient(135deg, #667eea, #764ba2); }
.city-atmo-tampere { background: linear-gradient(135deg, #f093fb, #f5576c); }
.city-atmo-turku { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.city-atmo-oulu { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.city-atmo-espoo { background: linear-gradient(135deg, #fa709a, #fee140); }
.city-atmo-jyvaskyla { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }

/* ============================================================
   Finland Map
   ============================================================ */
.finland-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 16px;
  align-items: start;
}

@media (max-width: 768px) {
  .finland-map-wrapper { grid-template-columns: 1fr; }
}

.finland-map-container {
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.finland-map-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.annonces-filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--barbie-200);
  background: white;
  color: var(--barbie-900);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}

.annonces-filter-btn.active,
.annonces-filter-btn:hover {
  background: var(--barbie-500);
  border-color: var(--barbie-500);
  color: white;
}

.finland-map-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-stat-item {
  background: white;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--barbie-900);
}

.map-stat-item i { color: var(--barbie-500); margin-right: 6px; }
.map-stat-item strong { color: var(--barbie-500); }

.finland-map-quicklinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.map-quicklink {
  padding: 6px 16px;
  background: white;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  color: var(--barbie-900);
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s;
}

.map-quicklink:hover {
  background: var(--barbie-500);
  color: white;
  border-color: var(--barbie-500);
}

/* ============================================================
   Content Blocks
   ============================================================ */
.content-block-datez {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--glass-border);
}

.content-block-datez h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--barbie-900);
  margin-bottom: 12px;
}

.content-block-datez p {
  color: var(--barbie-900);
  opacity: 0.75;
  line-height: 1.7;
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section-datez {
  padding: 60px 20px;
  background: var(--gradient-barbie);
  color: white;
}

.cta-section-datez h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-section-datez p {
  opacity: 0.9;
  margin-bottom: 24px;
}

.cta-section-datez .btn-barbie {
  background: white;
  color: var(--barbie-500);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cta-section-datez .btn-barbie:hover {
  background: var(--barbie-50);
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-item-datez {
  background: white;
  border-radius: 12px;
  margin-bottom: 8px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.faq-btn-datez {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  color: var(--barbie-900);
  cursor: pointer;
  font-size: 0.95rem;
  transition: color 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-btn-datez::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--barbie-500);
  transition: transform 0.3s;
}

.faq-btn-datez.active::after {
  content: '−';
}

.faq-btn-datez.active { color: var(--barbie-500); }

.faq-content-datez {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-content-datez.open {
  max-height: 300px;
}

.faq-body {
  padding: 0 20px 16px;
  color: var(--barbie-900);
  opacity: 0.75;
  line-height: 1.7;
  font-size: 0.9rem;
}

/* ============================================================
   Member Counter & Countdown
   ============================================================ */
.member-counter-datez {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--barbie-900);
}

.member-counter-datez i { color: var(--barbie-500); font-size: 1.1rem; }

.countdown-datez {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--barbie-900);
  opacity: 0.8;
}

.countdown-datez i { color: var(--barbie-500); }

/* ============================================================
   Layout: Sidebar + Main
   ============================================================ */
.datez-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

@media (max-width: 1024px) {
  .datez-layout { grid-template-columns: 1fr; }
}

.datez-sidebar {
  padding: 20px;
  background: white;
  border-right: 1px solid var(--glass-border);
}

@media (max-width: 1024px) {
  .datez-sidebar { display: none !important; }
}

.datez-sidebar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--barbie-900);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--barbie-100);
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--barbie-900);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.sidebar-link:hover {
  background: var(--barbie-50);
  color: var(--barbie-500);
}

.sidebar-link i { color: var(--barbie-500); font-size: 0.9rem; }

.sidebar-count {
  margin-left: auto;
  background: var(--barbie-50);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  color: var(--barbie-500);
  font-weight: 600;
}

.datez-main {
  min-width: 0;
}

/* ============================================================
   Footer
   ============================================================ */
.footer-datez {
  background: var(--gradient-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-datez h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--barbie-300);
}

.footer-datez a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-datez a:hover { color: var(--barbie-300); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   Mega Menu
   ============================================================ */
/* Mega Menu Grid (actual component class) */
.mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mega-overlay.show { opacity: 1; visibility: visible; }

.mega-menu-grid {
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  z-index: 998;
  padding: 28px 0;
  display: none;
  animation: fadeInDown 0.3s ease;
}
.mega-menu-grid.show { display: block; }

.mega-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.mega-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--barbie-900);
  font-weight: 700;
}
.mega-title i { color: var(--barbie-500); }
.mega-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--barbie-50);
  color: var(--barbie-900);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .mega-grid-layout { grid-template-columns: 1fr; gap: 20px; }
}
.mega-col-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--barbie-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.mega-col-title i { margin-right: 4px; }

.mega-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mega-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 12px;
  background: var(--barbie-50);
  text-decoration: none;
  transition: all 0.25s;
}
.mega-icon-card:hover {
  background: var(--barbie-100);
  transform: translateY(-2px);
}
.mega-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}
.mega-icon-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--barbie-900);
  text-align: center;
}
.mega-icon-count {
  font-size: 0.7rem;
  color: var(--barbie-500);
  font-weight: 600;
}

.mega-city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mega-city-tag {
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--barbie-50);
  color: var(--barbie-900);
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}
.mega-city-tag:hover {
  background: var(--barbie-500);
  color: white;
}
.mega-city-tag i { color: var(--barbie-400); font-size: 0.75rem; }
.mega-city-tag:hover i { color: white; }

.mega-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--barbie-500);
  text-decoration: none;
}
.mega-all-link:hover { text-decoration: underline; }

.mega-promo-card {
  background: var(--gradient-barbie-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mega-promo-sparkle {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--gold-400);
  font-size: 1.5rem;
  animation: pulse-dot 2s infinite;
}
.mega-promo-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--barbie-900);
  margin-bottom: 6px;
}
.mega-promo-card h5 i { color: var(--barbie-500); }
.mega-promo-card p {
  font-size: 0.8rem;
  color: var(--barbie-900);
  opacity: 0.7;
  margin-bottom: 12px;
}
.mega-promo-profiles {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.mega-promo-profiles img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
}
.mega-promo-profiles img:first-child { margin-left: 0; }
.mega-promo-more {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--barbie-500);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  border: 2px solid white;
}
.mega-promo-cta { font-size: 0.8rem !important; }

.mega-live-stats {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.mega-stat {
  flex: 1;
  background: white;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--barbie-900);
  border: 1px solid var(--glass-border);
}
.mega-stat i { color: var(--barbie-500); }
.mega-stat strong { color: var(--barbie-500); }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Mobile Menu
   ============================================================ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-menu-overlay.show { opacity: 1; visibility: visible; }

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: white;
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

.mobile-menu-panel.show { transform: translateX(0); }

/* ============================================================
   Prelander Modal
   ============================================================ */
.prelander-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.prelander-modal.show { opacity: 1; visibility: visible; }

/* ancien prelander-modal styles supprimés — voir bloc ligne ~1914 */

.prelander-content {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-barbie-lg);
}

.prelander-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--barbie-50);
  color: var(--barbie-900);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Steps visibility gérée par inline style dans le HTML + JS */

.prelander-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.prelander-option {
  padding: 14px 18px;
  background: var(--barbie-50);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  transition: all 0.25s;
}

.prelander-option:hover { border-color: var(--barbie-300); }
.prelander-option.selected { border-color: var(--barbie-500); background: rgba(220,38,38,0.1); }

/* ============================================================
   Exit Intent Popup
   ============================================================ */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.exit-popup.show { opacity: 1; visibility: visible; }

.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.exit-popup-content {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-barbie-lg);
}

.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--barbie-50);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   Social Proof Toast
   ============================================================ */
.social-proof-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border: 1px solid var(--glass-border);
  z-index: 1500;
  transform: translateX(-120%);
  transition: transform 0.5s ease;
  max-width: 320px;
}

.social-proof-toast.show { transform: translateX(0); }

.social-proof-name { font-weight: 600; font-size: 0.85rem; color: var(--barbie-900); }
.social-proof-action { font-size: 0.8rem; color: var(--barbie-500); }
.social-proof-time { font-size: 0.75rem; color: var(--barbie-900); opacity: 0.5; display: block; margin-top: 2px; }

/* ============================================================
   Floating Hearts
   ============================================================ */
.floating-hearts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-hearts .heart {
  position: absolute;
  bottom: -20px;
  color: var(--barbie-200);
  opacity: 0.3;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { opacity: 0.15; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb-datez {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  padding: 12px 0;
}

.breadcrumb-datez a {
  color: var(--barbie-500);
  text-decoration: none;
}

.breadcrumb-datez a:hover { text-decoration: underline; }

.breadcrumb-datez span { color: var(--barbie-900); opacity: 0.5; }

/* ============================================================
   Pillar / Category Page Specific
   ============================================================ */
.pillar-hero, .category-hero, .city-hero {
  padding: 140px 0 40px;
  background: var(--gradient-barbie-soft);
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.subcategory-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--glass-border);
  text-decoration: none;
  color: var(--barbie-900);
  transition: all 0.3s;
  display: block;
}

.subcategory-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-barbie);
  color: var(--barbie-900);
}

.subcategory-card h3 { font-weight: 600; margin-bottom: 4px; }
.subcategory-card p { font-size: 0.85rem; opacity: 0.7; }

/* ============================================================
   City Links Grid
   ============================================================ */
.city-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}

.city-link-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  color: var(--barbie-900);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.city-link-chip:hover {
  background: var(--barbie-500);
  color: white;
  border-color: var(--barbie-500);
}

.city-link-chip i { color: var(--barbie-500); }
.city-link-chip:hover i { color: white; }

/* ============================================================
   Responsive Utilities
   ============================================================ */
@media (max-width: 640px) {
  .hero-datez { padding: 140px 0 40px; }
  .section-title-datez h2 { font-size: 1.5rem; }
  .stat-number-datez { font-size: 1.8rem; }
  .city-atmosphere-grid { grid-template-columns: 1fr; }
  .finland-map-container { height: 300px; }
}

/* ============================================================
   Navbar Brand (actual component classes)
   ============================================================ */
.brand-datez-new {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-barbie);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-barbie);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav Pills */
.nav-pill-datez {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--barbie-900);
  text-decoration: none;
  transition: all 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-pill-datez:hover, .nav-pill-datez.active {
  background: var(--barbie-50);
  color: var(--barbie-500);
}
.nav-pill-datez i { font-size: 0.9rem; }
.mega-chevron {
  font-size: 0.65rem;
  transition: transform 0.3s;
}

/* Online badge */
.online-badge-datez {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--barbie-900);
}

/* Glow button */
.btn-glow {
  animation: btnGlow 2s ease-in-out infinite;
}
@keyframes btnGlow {
  0%, 100% { box-shadow: var(--shadow-barbie); }
  50% { box-shadow: 0 4px 30px rgba(220, 38, 38, 0.5); }
}

/* ============================================================
   Topbar (actual component classes)
   ============================================================ */
.topbar-marquee {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.topbar-sep { opacity: 0.4; margin: 0 4px; }
.topbar-live {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

/* ============================================================
   Sidebar (actual component classes)
   ============================================================ */
.sidebar-section { margin-bottom: 16px; }
.sidebar-section-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--barbie-900);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--barbie-100);
}
.sidebar-section-title i { color: var(--barbie-500); margin-right: 4px; }
.sidebar-link-text {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-link-text i { color: var(--barbie-500); font-size: 0.85rem; }
.sidebar-divider {
  height: 1px;
  background: var(--barbie-100);
  margin: 16px 0;
}
.sidebar-cta {
  background: var(--gradient-barbie-soft);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.sidebar-cta p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--barbie-900);
  margin-bottom: 10px;
}
.sidebar-cta a {
  display: block;
  padding: 10px;
  background: var(--gradient-barbie);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.sidebar-cta a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-barbie);
}

/* ============================================================
   Footer (actual component classes)
   ============================================================ */
.footer-datez h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--barbie-300);
}
.footer-datez ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-datez ul li { margin-bottom: 4px; }
.footer-datez .social-links {
  display: flex;
  gap: 12px;
}
.footer-datez .social-links a {
  font-size: 1.2rem;
  opacity: 0.7;
}
.footer-datez .social-links a:hover { opacity: 1; color: var(--barbie-300); }
.footer-bottom-datez {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   Prelander (actual component classes)
   ============================================================ */
.prelander-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prelander-container {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 500px;
  width: 92%;
  box-shadow: var(--shadow-barbie-lg);
}
.prelander-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--barbie-50);
  color: var(--barbie-900);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.prelander-close:hover { background: var(--barbie-100); }
.prelander-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.prelander-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--barbie-200);
  transition: all 0.3s;
}
.prelander-step-dot.active { background: var(--barbie-500); transform: scale(1.2); }
.prelander-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--barbie-900);
  text-align: center;
  margin-bottom: 16px;
}
.prelander-gender-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.prelander-btn-gender {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  background: var(--barbie-50);
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 500;
  color: var(--barbie-900);
  transition: all 0.25s;
  min-width: 80px;
  font-size: 0.9rem;
}
.prelander-btn-gender i { font-size: 1.5rem; color: var(--barbie-500); }
.prelander-btn-gender:hover { border-color: var(--barbie-300); background: var(--barbie-100); }
.prelander-btn-gender.selected { border-color: var(--barbie-500); background: rgba(220,38,38,0.1); }
.prelander-age-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.prelander-btn-age {
  padding: 14px;
  background: var(--barbie-50);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--barbie-900);
  transition: all 0.25s;
  text-align: center;
}
.prelander-btn-age:hover { border-color: var(--barbie-300); }
.prelander-btn-age.selected { border-color: var(--barbie-500); background: rgba(220,38,38,0.1); }
.prelander-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--barbie-100);
  border-top-color: var(--barbie-500);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.prelander-loading-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--barbie-900);
  text-align: center;
}
.prelander-loading-sub {
  font-size: 0.85rem;
  color: var(--barbie-900);
  opacity: 0.5;
  text-align: center;
}
.prelander-results-icon { text-align: center; font-size: 3rem; color: #22c55e; margin-bottom: 8px; }
.prelander-results-count {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  text-align: center;
  color: var(--barbie-900);
}
.prelander-results-sub { text-align: center; font-size: 0.85rem; opacity: 0.6; margin-bottom: 16px; }
.prelander-final-cta { width: 100%; justify-content: center; }
.prelander-results-free {
  text-align: center;
  font-size: 0.8rem;
  color: var(--barbie-900);
  opacity: 0.6;
  margin-top: 10px;
}

/* Prelander Email Capture Step */
.prelander-email-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.prelander-email-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-family: var(--font-body);
  text-align: center;
  outline: none;
  transition: border-color 0.3s;
}
.prelander-email-input:focus {
  border-color: var(--barbie-500);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}
.prelander-email-submit {
  width: 100%;
}
.prelander-email-status {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 8px;
}
.prelander-email-success {
  color: #16a34a;
}
.prelander-email-error {
  color: #dc2626;
}
.prelander-skip-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--barbie-500);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.prelander-skip-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ============================================================
   Exit Popup (actual component classes)
   ============================================================ */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-popup-container {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-barbie-lg);
}
.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--barbie-50);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-popup-icon {
  font-size: 3rem;
  color: var(--barbie-500);
  margin-bottom: 12px;
}
.exit-popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--barbie-900);
  margin-bottom: 6px;
}
.exit-popup-sub {
  font-size: 0.9rem;
  color: var(--barbie-900);
  opacity: 0.7;
  margin-bottom: 16px;
}
.exit-popup-cta { width: 100%; }
.exit-popup-dismiss a { color: var(--barbie-900); }

/* ============================================================
   Social Proof Toast (actual component classes)
   ============================================================ */
.social-proof-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border: 1px solid var(--glass-border);
  z-index: 1500;
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.toast-avatar {
  position: relative;
  flex-shrink: 0;
}
.toast-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--barbie-100);
}
.toast-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid white;
}
.toast-content { flex: 1; min-width: 0; }
.toast-name { font-weight: 600; font-size: 0.85rem; color: var(--barbie-900); margin: 0; }
.toast-action { font-size: 0.8rem; color: var(--barbie-500); margin: 0; }
.toast-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--barbie-900);
  opacity: 0.4;
  cursor: pointer;
  flex-shrink: 0;
}

/* ============================================================
   Mobile Menu (actual component classes)
   ============================================================ */
.mobile-nav-section {
  margin-bottom: 16px;
}
.mobile-nav-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--barbie-500);
  margin-bottom: 8px;
}
.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--barbie-900);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.mobile-nav-item:hover, .mobile-nav-item.active {
  background: var(--barbie-50);
  color: var(--barbie-500);
}
.mobile-nav-item i { color: var(--barbie-500); font-size: 1rem; }

/* ============================================================
   Placeholder for missing images
   ============================================================ */
img[src*="profils"] {
  background: linear-gradient(135deg, var(--barbie-100), var(--barbie-200));
  min-height: 100px;
}

/* ============================================================
   Bottom Navigation Bar (Mobile)
   ============================================================ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: white;
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 6px 0;
  padding-bottom: max(6px, env(safe-area-inset-bottom));
}

@media (max-width: 1024px) {
  .bottom-nav { display: flex; }
  body { padding-bottom: 70px; }
  .social-proof-toast { bottom: 80px; }
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 4px;
  color: var(--barbie-900);
  opacity: 0.5;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 600;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item i { font-size: 1.3rem; }

.bottom-nav-item.active,
.bottom-nav-item:active {
  opacity: 1;
  color: var(--barbie-500);
}

.bottom-nav-cta {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  -webkit-tap-highlight-color: transparent;
}

.bottom-nav-cta-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-barbie);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  box-shadow: var(--shadow-barbie);
  margin-top: -18px;
}

.bottom-nav-cta span {
  color: var(--barbie-500);
  font-weight: 700;
}

/* ============================================================
   Mobile Optimizations
   ============================================================ */
@media (max-width: 768px) {
  /* Bigger touch targets */
  .quiz-option { padding: 16px 20px; font-size: 1rem; min-height: 52px; }
  .quiz-options-grid { grid-template-columns: 1fr; }
  .btn-barbie { padding: 14px 24px; font-size: 1rem; width: 100%; justify-content: center; }
  .btn-barbie-outline { padding: 14px 24px; font-size: 1rem; }
  .btn-barbie-lg { padding: 16px 28px; font-size: 1.1rem; }

  /* Better spacing */
  section { padding-top: 2rem; padding-bottom: 2rem; }
  .section-title-datez { margin-bottom: 1.5rem; }
  .section-title-datez h2 { font-size: 1.4rem; }

  /* Full-width cards on mobile */
  .glass-card { border-radius: 12px; }
  .hero-profile-card { border-radius: 10px; }

  /* Mobile menu panel wider */
  .mobile-menu-panel { width: 85%; max-width: 360px; }
  .mobile-nav-item { padding: 14px 16px; font-size: 1rem; min-height: 48px; }

  /* CTA sections more compact */
  .cta-section-datez { padding: 40px 16px; }
  .cta-section-datez h2 { font-size: 1.5rem; }

  /* Footer optimized */
  .footer-datez { padding: 40px 0 20px; }

  /* FAQ touch-friendly */
  .faq-btn-datez { padding: 18px 20px; font-size: 1rem; min-height: 56px; }

  /* Prelander mobile */
  .prelander-container { padding: 24px 20px; width: 95%; }
  .prelander-btn-gender { padding: 18px 16px; min-width: 90px; }
  .prelander-btn-age { padding: 16px; font-size: 1.1rem; }

  /* Hide desktop sidebar */
  .datez-sidebar { display: none; }

  /* Hide topbar on mobile - bottom nav is enough */
  .topbar-datez { display: none; }
  .navbar-datez { top: 0; }

  /* Map compact */
  .finland-map-container { height: 260px; }
  .finland-map-wrapper { grid-template-columns: 1fr; }

  /* Photo grid smaller gaps */
  .photo-annonces-grid { gap: 6px; }

  /* Stats compact */
  .stat-number-datez { font-size: 1.6rem; }

  /* Bento full-width */
  .bento-categories { grid-template-columns: 1fr; gap: 12px; }
  .bento-cat--lg { grid-column: span 1; }

  /* City grid */
  .city-atmosphere-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Smooth scrolling for anchor links */
html { scroll-behavior: smooth; }

/* Prevent horizontal overflow on all screens */
html, body { overflow-x: hidden; max-width: 100vw; }

/* Improve tap feedback on mobile */
@media (hover: none) {
  .btn-barbie:active { transform: scale(0.97); }
  .btn-barbie-outline:active { transform: scale(0.97); }
  .glass-card:active { transform: scale(0.99); }
  .quiz-option:active { transform: scale(0.98); }
}

/* ═══════════════════════════════════════════════════════════════
   CHATBOT BUBBLE
   ═══════════════════════════════════════════════════════════════ */

.chat-bubble-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  font-family: var(--font-body);
}

.chat-bubble-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-barbie);
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(220,38,38,0.4);
  transition: all 0.3s;
  position: relative;
  animation: chatPulse 2s infinite;
}

.chat-bubble-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(220,38,38,0.6);
}

.chat-bubble-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #22c55e;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  animation: badgeBounce 1s ease infinite;
}

@keyframes chatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(220,38,38,0.4); }
  50% { box-shadow: 0 4px 30px rgba(220,38,38,0.7); }
}

@keyframes badgeBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Chat Window */
.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  max-height: 520px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: chatSlideUp 0.3s ease;
}

@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Header */
.chat-header {
  background: var(--gradient-barbie);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.chat-header-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar-wrap {
  position: relative;
}

.chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.5);
}

.chat-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid white;
}

.chat-profile-name {
  display: block;
  font-size: 0.95rem;
}

.chat-online-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

.chat-close-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.chat-close-btn:hover {
  background: rgba(255,255,255,0.3);
}

/* Messages */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  max-height: 300px;
  background: #faf5f5;
}

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.4;
  animation: msgFadeIn 0.3s ease;
}

@keyframes msgFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg-bot {
  background: white;
  color: var(--barbie-900);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.chat-msg-user {
  background: var(--barbie-500);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-affiliate-link {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--barbie-500), #ff6b6b);
  color: white !important;
  border-radius: 16px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-affiliate-link:hover {
  transform: scale(1.04);
  box-shadow: 0 3px 12px rgba(220, 38, 38, 0.35);
}

/* Typing indicator */
.chat-typing {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #faf5f5;
}

.chat-typing-dots {
  display: flex;
  gap: 4px;
}

.chat-typing-dots span {
  width: 7px;
  height: 7px;
  background: var(--barbie-300);
  border-radius: 50%;
  animation: typingDot 1.4s infinite;
}

.chat-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.chat-typing-text {
  font-size: 0.75rem;
  color: var(--barbie-400);
}

/* Input area */
.chat-input-area {
  padding: 12px;
  border-top: 1px solid rgba(220,38,38,0.1);
  background: white;
}

.chat-input-area form {
  display: flex;
  gap: 8px;
}

.chat-input {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid var(--barbie-100);
  border-radius: 24px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-body);
}

.chat-input:focus {
  border-color: var(--barbie-300);
}

.chat-send-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--barbie-500);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.chat-send-btn:hover {
  background: var(--barbie-600);
  transform: scale(1.05);
}

/* Registration Wall */
.chat-wall {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 60px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: wallFadeIn 0.4s ease;
}

@keyframes wallFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.chat-wall-content {
  text-align: center;
  width: 100%;
}

.chat-wall-icon {
  font-size: 2.5rem;
  color: var(--barbie-500);
  margin-bottom: 8px;
}

.chat-wall-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--barbie-900);
  margin-bottom: 4px;
}

.chat-wall-text {
  font-size: 0.85rem;
  color: var(--barbie-900);
  opacity: 0.7;
  margin-bottom: 16px;
}

.chat-register-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-reg-input {
  padding: 10px 14px;
  border: 2px solid var(--barbie-100);
  border-radius: 12px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-body);
  width: 100%;
  box-sizing: border-box;
}

.chat-reg-input:focus {
  border-color: var(--barbie-400);
}

.chat-reg-btn {
  padding: 12px;
  background: var(--gradient-barbie);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.chat-reg-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(220,38,38,0.3);
}

.chat-reg-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.chat-reg-error {
  color: #ef4444;
  font-size: 0.8rem;
  text-align: center;
}

.chat-reg-privacy {
  font-size: 0.75rem;
  color: var(--barbie-400);
  margin-top: 4px;
}

.chat-wall-subtext {
  font-size: 0.75rem;
  color: var(--barbie-400);
  margin-top: 8px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .chat-bubble-container {
    bottom: 80px;
    right: 12px;
  }

  .chat-bubble-btn {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .chat-window {
    width: calc(100vw - 24px);
    right: -12px;
    bottom: 72px;
    max-height: 70vh;
  }
}
