/* ═══════════════════════════════════════════
   PRODUCT PAGES — Pure CSS (no Tailwind, no JS)
   Uses the same CSS variable system as index.css
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Russo+One&family=Space+Grotesk:wght@300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Root tokens (portal default) ── */
:root {
  --background: 220 15% 96%;
  --foreground: 225 25% 15%;
  --card: 220 10% 100%;
  --card-foreground: 225 25% 15%;
  --primary: 228 52% 38%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 15% 90%;
  --secondary-foreground: 225 25% 15%;
  --muted: 220 12% 91%;
  --muted-foreground: 220 10% 45%;
  --accent: 48 76% 74%;
  --accent-foreground: 225 25% 15%;
  --destructive: 0 84% 60%;
  --border: 220 15% 88%;
  --radius: 0.75rem;
  --font-heading: 'LT Glockenspiel', 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── Theme: Ink ── */
.theme-ink {
  --background: 220 20% 97%;
  --foreground: 225 25% 15%;
  --card: 220 15% 100%;
  --card-foreground: 225 25% 15%;
  --primary: 228 52% 40%;
  --primary-foreground: 220 20% 98%;
  --secondary: 48 76% 94%;
  --secondary-foreground: 225 25% 15%;
  --muted: 220 12% 93%;
  --muted-foreground: 220 10% 45%;
  --accent: 48 76% 74%;
  --accent-foreground: 225 25% 15%;
  --border: 220 15% 88%;
  --font-heading: 'LT Glockenspiel', 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── Theme: Rock ── */
.theme-rock {
  --background: 100 30% 91%;
  --foreground: 228 52% 30%;
  --card: 100 25% 96%;
  --card-foreground: 228 52% 30%;
  --primary: 228 52% 38%;
  --primary-foreground: 100 30% 97%;
  --secondary: 100 35% 73%;
  --secondary-foreground: 228 52% 25%;
  --muted: 100 20% 86%;
  --muted-foreground: 228 30% 45%;
  --accent: 40 56% 34%;
  --accent-foreground: 100 30% 96%;
  --border: 100 20% 82%;
  --font-heading: 'Russo One', 'LT Glockenspiel', 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── Theme: Daily ── */
.theme-daily {
  --background: 160 25% 90%;
  --foreground: 235 48% 30%;
  --card: 160 20% 95%;
  --card-foreground: 235 48% 30%;
  --primary: 235 48% 30%;
  --primary-foreground: 160 30% 95%;
  --secondary: 155 30% 70%;
  --secondary-foreground: 235 48% 25%;
  --muted: 160 18% 86%;
  --muted-foreground: 230 20% 45%;
  --accent: 218 40% 60%;
  --accent-foreground: 0 0% 100%;
  --border: 165 20% 82%;
  --font-heading: 'Russo One', 'LT Glockenspiel', 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── Theme: Eco ── */
.theme-eco {
  --background: 140 20% 94%;
  --foreground: 150 40% 18%;
  --card: 140 15% 97%;
  --card-foreground: 150 40% 18%;
  --primary: 150 45% 28%;
  --primary-foreground: 140 20% 96%;
  --secondary: 80 30% 78%;
  --secondary-foreground: 150 40% 18%;
  --muted: 140 15% 88%;
  --muted-foreground: 150 20% 42%;
  --accent: 45 60% 55%;
  --accent-foreground: 150 40% 18%;
  --border: 140 15% 82%;
  --font-heading: 'Fraunces', 'LT Glockenspiel', serif;
  --font-body: 'DM Sans', sans-serif;
}

body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Layout utilities ── */
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.text-center { text-align: center; }

/* ── Trust Bar ── */
.trust-bar {
  border-top: 1px solid hsl(var(--border) / 0.6);
  border-bottom: 1px solid hsl(var(--border) / 0.6);
  background: hsl(var(--muted) / 0.4);
  padding: 0.75rem 1rem;
}
.trust-bar-inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
}
.trust-item svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); }

/* ── Yuka Badge ── */
.yuka-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: hsl(var(--secondary) / 0.4);
  border-bottom: 1px solid hsl(var(--border));
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  letter-spacing: 0.025em;
}
.yuka-badge img { height: 1.5rem; width: 1.5rem; }
.yuka-badge .highlight { color: hsl(var(--primary)); font-weight: 700; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid hsl(var(--accent));
  background: hsl(var(--accent));
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
.nav-logo { height: 3rem; width: auto; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: var(--font-body);
  text-decoration: none;
}
.btn:hover { transform: scale(1.02); }
.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground)) !important;
}
.blog-article .btn {
  text-decoration: none;
}
.btn-lg { font-size: 1rem; padding: 0.75rem 1.75rem; }
.btn-sm { font-size: 0.8rem; padding: 0.5rem 1rem; }
.btn-outline {
  background: transparent;
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
}
.btn-outline:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn-full { width: 100%; }

/* ── Cards ── */
.card {
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 2.5rem;
}
.card-accent {
  border-color: hsl(var(--accent));
  background: hsl(var(--secondary));
}

/* ── Grid ── */
.grid { display: grid; gap: 2.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Hero section ── */
.hero-h1 {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .hero-h1 { font-size: 1.125rem; } }

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

/* ── Image Gallery (CSS-only with radio buttons) ── */
.gallery-main {
  position: relative;
  aspect-ratio: 1;
  max-width: 32rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  box-shadow: 0 20px 40px -12px hsl(var(--foreground) / 0.1);
}
.gallery-main picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: block;
}
.gallery-main picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-main picture:first-of-type {
  opacity: 1;
}
.gallery-radio { display: none; }
.gallery-radio:nth-of-type(1):checked ~ .gallery-main picture:nth-of-type(1),
.gallery-radio:nth-of-type(2):checked ~ .gallery-main picture:nth-of-type(2),
.gallery-radio:nth-of-type(3):checked ~ .gallery-main picture:nth-of-type(3),
.gallery-radio:nth-of-type(4):checked ~ .gallery-main picture:nth-of-type(4),
.gallery-radio:nth-of-type(5):checked ~ .gallery-main picture:nth-of-type(5) {
  opacity: 1;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}
.gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 2px solid hsl(var(--border));
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s;
}
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-radio:nth-of-type(1):checked ~ .gallery-thumbs label:nth-of-type(1),
.gallery-radio:nth-of-type(2):checked ~ .gallery-thumbs label:nth-of-type(2),
.gallery-radio:nth-of-type(3):checked ~ .gallery-thumbs label:nth-of-type(3),
.gallery-radio:nth-of-type(4):checked ~ .gallery-thumbs label:nth-of-type(4),
.gallery-radio:nth-of-type(5):checked ~ .gallery-thumbs label:nth-of-type(5) {
  opacity: 1;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.3);
}

/* ── Slogan / Marketing text ── */
.slogan {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  color: hsl(var(--primary));
  letter-spacing: 0.08em;
}
@media (min-width: 768px) { .slogan { font-size: 3rem; } }
.slogan-lg {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
  color: hsl(var(--primary));
  letter-spacing: 0.08em;
}
@media (min-width: 768px) { .slogan-lg { font-size: 2.5rem; } }

.highlight-box {
  display: inline-block;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.stars { display: flex; align-items: center; gap: 0.25rem; margin-bottom: 1rem; }
.star { width: 1rem; height: 1rem; fill: hsl(var(--accent)); color: hsl(var(--accent)); }
.stars-text { margin-left: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* ── Typography ── */
.text-fg { color: hsl(var(--foreground)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-accent-fg { color: hsl(var(--accent-foreground)); }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-relaxed { line-height: 1.75; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-14 { margin-top: 3.5rem; }

/* ── Guarantee badges ── */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card) / 0.6);
  padding: 0.75rem;
}
.guarantee-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  margin-top: 0.125rem;
}
.guarantee-icon svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); }
.guarantee-label { font-size: 0.75rem; font-weight: 600; color: hsl(var(--foreground)); }
.guarantee-sub { font-size: 0.6875rem; line-height: 1.3; color: hsl(var(--muted-foreground)); }

/* ── Shipping & trust badges inline ── */
.meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.meta-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.meta-badge svg { width: 0.875rem; height: 0.875rem; color: hsl(var(--primary)); }

/* ── Sections ── */
.bg-secondary { background: hsl(var(--secondary)); }
.bg-card { background: hsl(var(--card)); }
.bg-accent { background: hsl(var(--accent)); }
.bg-muted { background: hsl(var(--muted)); }

/* ── Benefit cards ── */
.benefit-icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
  margin-bottom: 1.25rem;
}

/* ── Image sections ── */
.img-rounded {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 10px 30px -10px hsl(var(--foreground) / 0.1);
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.min-h-400 { min-height: 400px; position: relative; }

/* ── Lifestyle break ── */
.lifestyle-break {
  position: relative;
  height: 50vh;
  overflow: hidden;
}
.lifestyle-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lifestyle-break .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background) / 0.6), transparent);
}

/* ── Ingredients ── */
.ingredients-bg {
  position: relative;
  overflow: hidden;
}
.ingredients-bg .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
}
.ingredients-bg .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--background)), hsl(var(--background) / 0.95), hsl(var(--background) / 0.8));
}
.ingredients-bg .content { position: relative; }

.ingredient-card {
  border-radius: 1rem;
  border: 1px solid hsl(var(--accent));
  background: hsl(var(--secondary));
  padding: 2rem;
}
.ingredient-emoji { font-size: 1.875rem; margin-bottom: 1rem; display: block; }

/* ── Steps ── */
.step-card {
  display: flex;
  gap: 1.25rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1.5rem;
}
.step-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-size: 0.875rem;
  font-weight: 700;
}
.step-img {
  max-width: 28rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 20px 40px -12px hsl(var(--foreground) / 0.1);
}

/* ── Testimonials ── */
.testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .testimonial-header { flex-direction: row; align-items: flex-start; justify-content: space-between; }
}
.rating-big { font-size: 3rem; font-weight: 700; color: hsl(var(--foreground)); line-height: 1; }
.review-summary-card {
  max-width: 40rem;
  margin: 0 auto 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 2rem;
}
.review-summary-score { width: 100%; text-align: center; }
.review-summary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
  padding: 0.35rem 0.8rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.review-stars-centered { justify-content: center; margin-top: 0.25rem; }
.review-stars-lg svg { width: 1.25rem; height: 1.25rem; }
.login-review-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}
.login-review-cta:hover { background: hsl(var(--primary) / 0.16); transform: translateY(-1px); }
.review-divider {
  display: none;
  width: 1px;
  height: 5rem;
  background: hsl(var(--border));
}
.review-summary-distribution {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.distribution-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.distribution-track {
  flex: 1;
  height: 0.375rem;
  background: hsl(var(--muted));
  border-radius: 1rem;
  overflow: hidden;
}
.distribution-fill {
  height: 100%;
  background: hsl(var(--accent));
  border-radius: 1rem;
}

.review-card {
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1.5rem;
}
.review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.review-stars { display: flex; gap: 0.125rem; margin-bottom: 0.75rem; }
.review-stars svg { width: 0.875rem; height: 0.875rem; fill: hsl(var(--accent)); color: hsl(var(--accent)); }
.review-name { font-weight: 700; font-size: 0.875rem; color: hsl(var(--foreground)); }
.review-role { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.review-text { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.7; margin: 0.75rem 0; }
.review-date { font-size: 0.6875rem; color: hsl(var(--muted-foreground)); }
.review-user-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 0.75rem;
}
.review-user { display: flex; align-items: center; gap: 0.5rem; }
.review-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-helpful {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.75rem;
}
.review-helpful svg { width: 0.875rem; height: 0.875rem; }
.review-verified { font-size: 0.625rem; color: hsl(var(--muted-foreground) / 0.7); margin-top: 0.5rem; }
.brand-reply {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.05);
  border-left: 3px solid hsl(var(--primary));
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}
.brand-reply strong { color: hsl(var(--primary)); }
.review-page-radio { display: none; }
.review-page { display: none; }
#review-page-1:checked ~ .reviews-pages .review-page-1,
#review-page-2:checked ~ .reviews-pages .review-page-2 { display: block; }
.review-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.review-pagination-btn {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
#review-page-1:checked ~ .review-pagination label[for="review-page-1"],
#review-page-2:checked ~ .review-pagination label[for="review-page-2"] {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}
.verified-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.verified-footer svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); }
@media (min-width: 768px) {
  .review-summary-score { width: auto; }
  .review-divider { display: block; }
}

/* ── Comparison table ── */
.compare-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .compare-grid { grid-template-columns: 1fr 1fr; } }

.compare-slide {
  position: relative;
  border-radius: 1rem;
  border: 2px solid hsl(var(--primary) / 0.2);
  background: hsl(var(--card));
  padding: 2rem 2.5rem;
  box-shadow: 0 8px 32px -12px hsl(var(--primary) / 0.15);
}
.compare-badge {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-badge svg { width: 0.75rem; height: 0.75rem; }
.compare-other {
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.3);
  padding: 2rem 2.5rem;
}
.compare-row { font-size: 0.875rem; margin-bottom: 1.25rem; }
.compare-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.125rem;
}
.compare-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}
.compare-value svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.compare-value.negative { color: hsl(var(--muted-foreground)); }
.compare-value.negative svg { color: hsl(var(--destructive) / 0.6); }

.banned-banner {
  margin-top: 2.5rem;
  overflow: hidden;
  background: hsl(var(--primary) / 0.1);
  padding: 0.75rem 0;
}
.banned-scroll {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}
.banned-item {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary));
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FAQ (native details/summary) ── */
.faq-item {
  border-bottom: 1px solid hsl(var(--border));
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: normal;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: hsl(var(--muted-foreground));
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 0 1.25rem 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
  animation: faq-open 0.25s ease;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Sticky buy bar ── */
.sticky-buy {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--accent));
  backdrop-filter: blur(12px);
}
.sticky-buy-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}
.sticky-buy-info p:first-child { font-size: 0.875rem; font-weight: 500; color: hsl(var(--accent-foreground)); }
.sticky-buy-info p:last-child { font-size: 0.75rem; color: hsl(var(--accent-foreground) / 0.7); }
.sticky-buy-info p[data-shipping]::before { content: '🇨🇭 '; }
.sticky-buy-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sticky-buy .btn {
  font-size: 0.78rem;
  padding: 0.5rem 1rem;
}
.sticky-buy-price { font-size: 0.7rem; font-weight: 400; color: hsl(var(--accent-foreground) / 0.55); }

/* ── CTA Final ── */
.cta-final {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid hsl(var(--accent));
  box-shadow: 0 10px 30px -10px hsl(var(--foreground) / 0.1);
}
.cta-final-inner {
  background: hsl(var(--accent));
  padding: 3rem;
  text-align: center;
}
@media (min-width: 768px) { .cta-final-inner { padding: 4rem; } }
.cta-final .slogan { color: hsl(var(--accent-foreground)); }
.cta-final .text-muted { color: hsl(var(--accent-foreground) / 0.8); }

/* ── Footer ── */
.footer {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--card) / 0.5);
  padding: 4rem 1.5rem;
}
.footer-groups {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-groups-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-groups-2 { grid-template-columns: repeat(2, 1fr); }
}
.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: hsl(var(--primary) / 0.8);
  transition: color 0.15s;
}
.footer-links a:hover { color: hsl(var(--primary)); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand img { height: 2.5rem; width: auto; }
.footer-brand p { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.footer-meta a, .footer-meta span {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: color 0.15s;
}
.footer-meta a:hover, .footer-meta span:hover { color: hsl(var(--primary)); }

/* ── Bonus box ── */
.bonus-box {
  border-radius: 1rem;
  border: 1px solid hsl(var(--accent));
  background: hsl(var(--secondary));
  padding: 2rem;
  text-align: center;
}

/* ── Scroll reveal (CSS-only) ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Use animation-timeline for modern browsers */
@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 0.6s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }
  @keyframes revealUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Fallback for browsers without animation-timeline */
@supports not (animation-timeline: view()) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── Obfuscated links ── */
.obf-link { cursor: pointer; }

/* ── SVG Icons inline ── */
.icon { display: inline-block; vertical-align: middle; }

/* ── Revendeur CTA ── */
.revendeur-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 2px solid hsl(var(--primary));
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
  transition: background 0.15s, color 0.15s;
}
.revendeur-cta:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* ── Pack / Bundle cards ── */
.pack-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}
.pack-card:hover { box-shadow: 0 10px 30px -10px hsl(var(--foreground) / 0.1); }
.pack-card.popular {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.05);
  box-shadow: 0 8px 24px -8px hsl(var(--primary) / 0.15);
}
.pack-badge {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.125rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.price-big { font-size: 1.5rem; font-weight: 700; color: hsl(var(--foreground)); }
.price-old { font-size: 0.875rem; color: hsl(var(--muted-foreground)); text-decoration: line-through; }
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* padding-bottom for sticky bar */
main { padding-bottom: 6rem; }
