/* ============================================
   Whatnot Guide France : style.css
   Mobile-first, editorial, elegant
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #FFFFFF;
  --text: #1A1A2E;
  --gold: #FFD700;
  --rose: #E8D5D0;
  --gold-dark: #FFC107;
  --white: #FFFFFF;
  --gray: #6B6B7B;
  --gray-light: #FFF8E1;
  --border: #E2DDD8;
  --shadow: 0 2px 16px rgba(26,26,46,0.08);
  --shadow-hover: 0 8px 32px rgba(26,26,46,0.14);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.22s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--text); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  line-height: 1.25;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--gray); }
strong { color: var(--text); font-weight: 600; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3.5rem 0; }
.section--alt { background: var(--gray-light); }
.section--dark { background: var(--text); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark p { color: var(--white); }
.section--rose { background: var(--rose); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.75rem; }
.mb-4 { margin-bottom: 2.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2.5rem; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1A1A2E;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 1px 8px rgba(26,26,46,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-right: 2rem;
  white-space: nowrap;
}
.logo span { color: var(--gold); }

.nav-links {
  display: none;
  list-style: none;
  gap: 1.25rem;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); text-decoration: none; }

.nav-cta {
  display: none;
  background: var(--gold);
  color: #1A1A2E !important;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); color: #1A1A2E !important; text-decoration: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #1A1A2E;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.25rem 1.5rem;
  gap: 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 0.5rem; text-align: center; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--gold);
  color: #1A1A2E;
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: #FFC300;
  border-color: #FFC300;
  color: #1A1A2E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,215,0,0.4);
  text-decoration: none;
}
.btn-secondary {
  background: #FFFFFF;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn-secondary:hover {
  background: var(--text);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #1A1A2E;
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.cta-group.center { justify-content: center; }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #FFF8E1 0%, var(--rose) 60%, #FFF8E1 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: #1A1A2E;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 { margin-bottom: 1rem; }
.hero .subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 1.75rem;
  font-weight: 300;
}
.hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hover); }

/* === VALUE PROPS === */
.value-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.value-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  display: block;
}
.value-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.value-card p { margin-bottom: 0; font-size: 0.92rem; }

/* === STATS SECTION === */
.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.8); font-weight: 400; }

/* === CARDS === */
.card-grid {
  display: grid;
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-body { padding: 1.5rem; }
.card-tag {
  display: inline-block;
  background: var(--rose);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; margin-bottom: 1rem; }

/* === BOUTIQUE SECTION === */
.boutique-section {
  background: linear-gradient(135deg, var(--text) 0%, #2D2D4A 100%);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: var(--white);
  text-align: center;
}
.boutique-section h2 { color: var(--gold); margin-bottom: 0.75rem; }
.boutique-section p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }

/* === STEPS === */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.step-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.step-content h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.step-content p { font-size: 0.9rem; margin-bottom: 0; }

/* === TIPS BOX === */
.tip-box {
  background: linear-gradient(135deg, #FFF8EC 0%, #FFF3E0 100%);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.tip-box-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tip-box ul { list-style: none; padding: 0; margin: 0; }
.tip-box ul li {
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
}
.tip-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* === COMPARISON TABLE === */
.comparison-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); box-shadow: var(--shadow); }
.comparison-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
}
.comparison-table th {
  background: var(--text);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
.comparison-table th:first-child { border-radius: var(--radius) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.comparison-table th.highlight { background: var(--gold); }
.comparison-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 400;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--gray-light); }
.comparison-table td.highlight { background: rgba(201,169,110,0.08); font-weight: 600; }
.check { color: #2E7D32; font-size: 1.1rem; }
.cross { color: #C62828; font-size: 1.1rem; }
.partial { color: var(--gold-dark); font-size: 1.1rem; }

/* === FAQ ACCORDION === */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-light); }
.faq-question.open { color: var(--gold-dark); background: rgba(201,169,110,0.06); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  transition: transform var(--transition), background var(--transition);
}
.faq-question.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
}
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* === SECTION HEADER === */
.section-header { margin-bottom: 2.5rem; }
.section-header.center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; }
.divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 0.75rem 0;
}
.divider.center { margin: 0.75rem auto; }

/* === PRODUCT FEATURES === */
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  margin-top: 0.1rem;
}
.feature-item h4 { margin-bottom: 0.2rem; }
.feature-item p { font-size: 0.9rem; margin-bottom: 0; }

/* === BLOG CARDS === */
.blog-grid { display: grid; gap: 1.5rem; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-img { position: relative; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; flex: 1; }
.blog-card p { font-size: 0.88rem; margin-bottom: 1rem; }
.blog-date { font-size: 0.78rem; color: var(--gray); font-weight: 400; margin-bottom: 0.5rem; }

/* === BREADCRUMB === */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.83rem;
  color: var(--gray);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* === FOOTER === */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.88rem; line-height: 1.6; margin-bottom: 0; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}
.footer-legal { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-disclaimer {
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

/* === RESPONSIVE : TABLET === */
@media (min-width: 640px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === RESPONSIVE : DESKTOP === */
@media (min-width: 960px) {
  .section { padding: 5rem 0; }
  .hamburger { display: none; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .hero { padding: 5.5rem 0 4rem; }
}

/* === HERO VIDEO === */
.hero-video {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-video iframe {
  border-radius: 12px;
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
}
@media (min-width: 640px) {
  .hero-video iframe {
    width: 315px;
    height: 560px;
    aspect-ratio: auto;
  }
}

/* === AFFILIATE DISCLOSURE === */
.affiliate-disclosure {
  background: #f0ede8;
  text-align: center;
  font-size: 12px;
  padding: 0.45rem 1rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.affiliate-disclosure a {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* === CALLOUT BOX === */
.callout-box {
  background: linear-gradient(135deg, #FFF8EC 0%, #FFF3E0 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin: 1rem 0 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-align: center;
}

/* === UTILITY === */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.gold-text { color: var(--gold); }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.tag {
  display: inline-block;
  background: var(--rose);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
}
.tag-gold { background: rgba(255,215,0,0.2); color: #1A1A2E; }

/* === STICKY CTA BAR === */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1A2E;
  color: #fff;
  padding: 12px 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}
.sticky-cta-bar.visible { display: block; }
.sticky-cta-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1rem;
}
.btn-sticky {
  background: #FFD700;
  color: #1A1A2E;
  padding: 8px 24px;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-sticky:hover { background: #FFC300; text-decoration: none; color: #1A1A2E; }
