@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-variable.woff2') format('woff2');
}

:root {
  --ivory: #fdf9f3;
  --ivory-soft: #fffdfa;
  --charcoal: #1f1b16;
  --charcoal-soft: rgba(31, 27, 22, 0.85);
  --sage: #9bd7c1;
  --sage-text: #274e3c;
  --accent: #ecbf81;
  --scroll-weight: 800;
  --font-base: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

/* --- BASIS LAYOUT & CONTAINERS --- */
main,
section,
.container {
  width: min(1200px, 92%);
  margin-left: auto;
  margin-right: auto;
}

/* Voorkom dat geneste containers dubbel krimpen */
main section,
main .container,
.container section,
.container .container {
  width: 100%;
}

.container-narrow {
  width: min(900px, 92%);
  margin-left: auto;
  margin-right: auto;
}

.global-header, .global-footer-expanded {
  width: 100%;
}

/* --- TYPOGRAFIE & PROGRESS BAR --- */
h1, h2, h3 {
  font-variation-settings: 'wght' var(--scroll-weight);
  transition: font-variation-settings 0.1s ease-out;
}

#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: var(--sage);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lead {
  max-width: 580px;
  margin: 0 auto 1.7rem;
  color: var(--charcoal-soft);
}

.eyebrow,
.section-header .eyebrow,
.product-section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: var(--sage-text);
  font-weight: 700;
}

/* ==========================================================================
   --- LONGREAD TYPOGRAFIE & LAYOUT --- (Bulletproof Flexbox Methode)
   ========================================================================== */

.longread-article {
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center; 
}

/* Tekstkolom is versmald naar 580px voor een 1rem lettergrootte */
.longread-article > * {
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Afbeeldingen en grids breken uit de smalle tekstkolom voor een wow-effect */
.longread-article .article-image,
.longread-article .image-grid {
  max-width: 1000px !important;
}

.longread-article p {
  font-size: 1rem; 
  line-height: 1.8;
  margin-bottom: 1.6rem;
  color: var(--charcoal);
}

.longread-article h2 {
  margin-top: 3.5rem;
  margin-bottom: 1.2rem;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
}

.longread-article blockquote {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  color: var(--sage-text);
  border-left: 4px solid var(--sage);
  padding-left: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.longread-article .article-image {
  height: auto;
  border-radius: 8px;
  margin: 3rem auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.longread-article .image-grid {
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.longread-article .image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* --- KNOPPEN --- */
.btn {
  border-radius: 999px;
  padding: 0.95rem 1.9rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--sage);
  color: var(--charcoal);
}

.btn-outline {
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
}

/* --- HOMEPAGE SPECIFIEK --- */
.hero {
  padding: 4px 0 4rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.9rem);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.section {
  padding: 4rem 0;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 0.4rem;
}

.mission-content {
  margin-top: 1.5rem;
}

.mission-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.8rem;
}

@media (min-width: 768px) {
  .mission-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mission-cards article,
.cards-grid article,
.newsletter-card,
.product-section {
  background: var(--ivory-soft);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .cards-grid.three { grid-template-columns: repeat(3, 1fr); }
  .cards-grid.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.cards-grid article h3 { margin: 0.4rem 0 0.5rem; }
.cards-grid article a { color: var(--sage-text); text-decoration: none; font-weight: 600; } 

.product-card {
  background: var(--ivory-soft);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 !important;
}

.product-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  border-radius: 0;
}

.product-card-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-content .eyebrow {
  margin-bottom: 0.5rem;
}

.product-card-content h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1.4rem;
  line-height: 1.3;
}

.product-card-content p:last-of-type {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

.blog-card {
  background: var(--ivory-soft);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.blog-card:hover { transform: translateY(-5px); }
.blog-thumb { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.blog-content { padding: 1.8rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-meta { font-size: 0.8rem; color: var(--sage-text); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 0.5rem; }
.blog-content h3 { margin: 0 0 0.8rem 0; font-size: 1.4rem; line-height: 1.3; }
.blog-content p { color: var(--charcoal-soft); font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; }
.blog-content a { color: var(--charcoal); text-decoration: underline; text-decoration-color: var(--sage); text-decoration-thickness: 2px; font-weight: 600; align-self: flex-start; }

/* --- PRODUCTPAGINA SPECIFIEK --- */
.emoji-sidebar {
  position: fixed;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem 0.5rem;
  background: rgba(255, 253, 250, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 99px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  z-index: 1001;
  border: 1px solid rgba(0,0,0,0.03);
}

.emoji-sidebar a { text-decoration: none; font-size: 1.2rem; transition: all 0.3s ease; filter: grayscale(1) opacity(0.4); }
.emoji-sidebar a.active, .emoji-sidebar a:hover { transform: scale(1.3); filter: grayscale(0) opacity(1); }

@media (max-width: 1150px) { .emoji-sidebar { display: none; } }

/* Geforceerd gecentreerde hero sectie */
.product-hero { 
  padding: 4.5rem 0 1rem; 
  display: flex; 
  flex-direction: column; 
  align-items: left; 
  justify-content: left; 
  text-align: left; 
}
.product-hero h1 { 
  font-size: clamp(2.2rem, 5vw, 3.2rem); 
  line-height: 1.1; 
  margin-bottom: 1.5rem; 
  max-width: 100%; 
  width: 100%; 
}
.product-hero .lead { 
  margin-bottom: 2.5rem; 
  max-width: 580px; 
  width: 100%; 
}

.editorial-disclaimer {
  max-width: 580px;
  margin: 0 auto 2.5rem;
  background: rgba(155, 215, 193, 0.15);
  border-left: 3px solid var(--sage);
  border-radius: 0 8px 8px 0;
  padding: 0.8rem 1.2rem;
}

.editorial-disclaimer p { margin: 0; font-size: 0.85rem; color: var(--charcoal-soft); line-height: 1.6; text-indent: 0; text-align: left; }
.editorial-disclaimer strong { color: var(--charcoal); font-weight: 700; }

.product-image-wrapper { position: relative; margin: 2.5rem auto; max-width: fit-content; text-align: center; }
.product-main-image { border-radius: 24px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); margin: 0 auto; display: block; }

.bifl-badge {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 125px;
  height: 125px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%239bd7c1' d='M50,2.4l5.4,5.4l7.6-1.5l3.2,7.1l7.6,1l1,7.7l6.8,3.6l-1.4,7.6l5.5,5.3l-3.6,6.8l3.6,6.8l-5.5,5.3l1.4,7.6l-6.8,3.6l-1,7.7l-7.6,1l-3.2,7.1l-7.6-1.5l-5.4,5.4l-5.4-5.4l-7.6,1.5l-3.2-7.1l-7.6-1l-1-7.7l-6.8-3.6l1.4-7.6l-5.5-5.3l3.6-6.8l-3.6-6.8l5.5-5.3l-1.4-7.6l6.8-3.6l1-7.7l7.6-1l3.2-7.1l7.6,1.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.15));
  transform: rotate(8deg); 
  animation: occasional-pulse 6s ease-in-out infinite; 
}

@keyframes occasional-pulse {
  0%, 85%, 100% { transform: scale(1) rotate(8deg); }
  90% { transform: scale(1.1) rotate(10deg); }
  95% { transform: scale(0.98) rotate(7deg); }
}

.bifl-badge-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.badge-icon { width: 24px; height: 24px; color: #ffffff; margin-bottom: 2px; }
.badge-title { color: var(--charcoal); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.5px; line-height: 1; }
.badge-subtitle { color: var(--charcoal); font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; font-weight: 700; margin-top: 3px; line-height: 1.2; }

@media (max-width: 600px) {
  .bifl-badge { width: 100px; height: 100px; top: -15px; right: -10px; }
  .badge-icon { width: 18px; height: 18px; }
  .badge-title { font-size: 0.85rem; }
  .badge-subtitle { font-size: 0.45rem; }
}

.article-figure { margin: 1.5rem 0; width: 100%; }
.article-figure img { border-radius: 8px; width: 100%; height: auto; display: block; filter: grayscale(0.2) sepia(0.2) contrast(1.1); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.article-figure figcaption { font-size: 0.85rem; color: var(--charcoal-soft); text-align: center; margin-top: 0.8rem; font-style: italic; line-height: 1.4; }

@media (min-width: 768px) {
  .article-figure { width: 40%; margin-top: 0.5rem; margin-bottom: 1rem; }
  .figure-right { float: right; margin-left: 1.5rem; }
  .figure-left { float: left; margin-right: 1.5rem; }
}

.product-section { position: relative; padding: 2.5rem; margin-bottom: 2rem; transition: all 0.3s ease; }
.product-section h2 { margin-top: 0; padding-right: 3.5rem; line-height: 1.3; }
.product-section p { text-align: justify; text-justify: inter-word; text-indent: 0; margin-bottom: 1rem; }
.product-section h2 + p, .product-section h3 + p { text-indent: 0; }

.toggle-collapse { position: absolute; top: 2.3rem; right: 2.5rem; background: var(--ivory); border: 1px solid var(--sage); color: var(--charcoal); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all 0.3s ease; z-index: 10; }
.toggle-collapse:hover { background: var(--sage); }
.product-section.collapsed .toggle-collapse { transform: rotate(-90deg); }
.product-section.collapsed > *:not(h2):not(.toggle-collapse) { display: none; }
.product-section.collapsed { padding-bottom: 2.5rem; }
.product-section.collapsed h2 { margin-bottom: 0; }

.author-bio { background: var(--ivory); border: 2px solid var(--sage); margin-top: 4rem; }
.author-flex { display: flex; align-items: center; gap: 1.5rem; }
.author-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; box-shadow: 0 4px 15px rgba(0,0,0,0.1); border: 4px solid white; }
.author-info h3 { margin-top: 0; margin-bottom: 0.5rem; color: var(--charcoal); }
.author-info p { margin: 0; text-indent: 0; text-align: left; font-size: 0.95rem; color: var(--charcoal-soft); }
.author-info a { color: var(--charcoal); font-weight: 600; text-decoration: underline; text-decoration-color: var(--sage); text-decoration-thickness: 2px; }

@media (max-width: 600px) {
  .author-flex { flex-direction: column; text-align: center; }
  .author-info p { text-align: center; }
}

.calculator-box { background: var(--ivory); border: 2px dashed var(--sage); border-radius: 16px; padding: 1.5rem; margin: 1.5rem 0; }
.calculator-box h3 { margin-top: 0; color: var(--charcoal); }
.calc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 1rem; }
.calc-grid label { display: flex; flex-direction: column; font-size: 0.9rem; font-weight: bold; }
.calc-grid input { margin-top: 0.5rem; padding: 0.5rem; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; font-family: var(--font-base); background: white; }
.calc-results { background: var(--sage); color: var(--charcoal); padding: 1rem; border-radius: 8px; }
.calc-results p { margin: 0 0 0.5rem 0 !important; text-indent: 0 !important; text-align: left !important; }
.calc-results p:last-child { margin-bottom: 0 !important; }

.specs-table-wrapper { overflow-x: auto; margin: 1.5rem 0; }
.full-specs-table { width: 100%; border-collapse: collapse; }
.full-specs-table th { padding: 1rem; border-bottom: 2px solid var(--sage); text-transform: uppercase; font-size: 0.8rem; text-align: left; }
.full-specs-table td { padding: 0.8rem 1rem; border-bottom: 1px solid rgba(0,0,0,0.05); }

.video-card { display: flex; gap: 2rem; align-items: flex-start; margin: 2rem 0; }
.video-thumb { position: relative; flex: 0 0 320px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.1); line-height: 0; display: block; }
.video-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.play-button-small { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: white; color: #FF0000; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.2); font-size: 1.4rem; padding-left: 4px; }
.video-info { flex: 1; }
.video-info p { text-indent: 0 !important; text-align: left !important; margin-bottom: 1.5rem; }
.yt-link { color: #FF0000; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 0.5rem; }

@media (max-width: 768px) {
  .container-narrow { width: 100%; }
  
  .video-card { flex-direction: column; padding: 1.5rem; }
  .video-thumb { flex: 0 0 auto; width: 100%; max-width: 100%; }
  
  .product-section { 
    padding: 1.8rem 1.25rem; 
    border-radius: 0;
    margin-bottom: 0.5rem;
  }
  .toggle-collapse { top: 1.3rem; right: 1.5rem; }
}

.cart-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 1.1rem 2.2rem;
  border-radius: 999px;
  background: var(--sage);
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  z-index: 1000;
  overflow: hidden; 
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-fab::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: shimmer 6s infinite; 
}

@keyframes shimmer { 0% { left: -100%; } 20% { left: 150%; } 100% { left: 150%; } }

@media (max-width: 480px) { .cart-fab { left: 1rem; right: 1rem; bottom: 1rem; text-align: center; padding: 1rem; } }
.cart-fab:hover { transform: scale(1.05) translateY(-3px); background: var(--accent); }

.verdict { background: var(--charcoal); color: white; }
.verdict .toggle-collapse { background: var(--charcoal); border-color: white; color: white; }
.verdict .toggle-collapse:hover { background: white; color: var(--charcoal); }

.back-link { text-decoration: none; color: var(--charcoal-soft); font-size: 0.9rem; display: block; margin-bottom: 1rem; }

/* --- GLOBAL HEADER & FOOTER --- */
.global-header { background: var(--ivory); }
.global-header-logo { font-weight: 800; font-size: 1.4rem; text-decoration: none; color: var(--charcoal); letter-spacing: -0.5px; }
.global-header-nav { display: flex; gap: 1.5rem; }
.global-header-nav a { text-decoration: none; color: var(--charcoal-soft); font-weight: 500; transition: color 0.2s ease; }
.global-header-nav a:hover { color: var(--sage); }

@media (max-width: 768px) { .global-header .container { flex-direction: column; gap: 1rem; } }

.global-footer-expanded { background: var(--charcoal); color: rgba(255, 255, 255, 0.7); padding: 4.5rem 0 2rem; font-family: var(--font-base); font-size: 0.85rem; line-height: 1.6; margin-top: 5rem; }
.global-footer-expanded a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.2s ease; }
.global-footer-expanded a:hover { color: var(--sage); }

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h4,
.footer-col h3 { color: var(--ivory); font-size: 1rem; margin-top: 0; margin-bottom: 1.2rem; font-weight: 600; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-logo-text { font-size: 1.5rem; font-weight: 800; color: var(--ivory); margin-bottom: 0.5rem; display: block; letter-spacing: -0.5px; }
.footer-disclaimer { font-size: 0.8rem; line-height: 1.5; opacity: 0.8; margin-top: 1rem; text-align: left; text-indent: 0; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-slogan { color: var(--sage-text); font-weight: 600; font-size: 0.9rem; margin: 0; } 

/* --- LEAD MAGNET POP-UP --- */
.lead-popup { position: fixed; bottom: 1.5rem; left: 1.5rem; width: min(340px, calc(100% - 3rem)); background: var(--charcoal); color: var(--ivory); padding: 1.8rem; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.25); z-index: 1000; opacity: 0; transform: translateY(30px); pointer-events: none; transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.lead-popup.show-popup { opacity: 1; transform: translateY(0); pointer-events: auto; }
.close-popup { position: absolute; top: 10px; right: 15px; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.5rem; cursor: pointer; transition: color 0.2s ease; padding: 0; }
.close-popup:hover { color: var(--ivory); }
.popup-submit-btn { position: relative; padding: 0.8rem 1rem; border-radius: 8px; border: none; background: var(--sage); color: var(--charcoal); font-weight: 700; cursor: pointer; font-family: inherit; font-size: 0.95rem; overflow: hidden; transition: transform 0.2s ease, background 0.2s ease; width: 100%; box-sizing: border-box; }
.popup-submit-btn:hover { transform: translateY(-2px); background: var(--accent); }
.popup-submit-btn::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); transform: skewX(-20deg); animation: shimmer 6s infinite; }

@media (max-width: 768px) { .lead-popup { bottom: 1rem; left: 1rem; width: calc(100% - 2rem); padding: 1.5rem; } }

/* --- RESPONSIVE REVIEW TABLE ALTERNATIVES (SM58 PAGE) --- */
.product-page--review .mobile-only { display: none; }
.product-page--review .desktop-only { display: block; }

.product-page--review .mobile-panel-grid,
.product-page--review .judgement-stack,
.product-page--review .comparison-stack,
.product-page--review .checkpoint-cards,
.product-page--review .alt-card-grid,
.product-page--review .spec-list {
  margin-top: 1.5rem;
}

.product-page--review .mobile-panel-grid {
  display: grid;
  gap: 1rem;
}

.product-page--review .mobile-panel-card,
.product-page--review .judgement-card,
.product-page--review .comparison-block,
.product-page--review .checkpoint-card,
.product-page--review .alt-card,
.product-page--review .spec-item {
  background: linear-gradient(180deg, #fffdf9 0%, #fbf6ee 100%);
  border: 1px solid rgba(39, 78, 60, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.product-page--review .mobile-panel-card {
  padding: 1.1rem 1.15rem;
}

.product-page--review .mobile-panel-card h3,
.product-page--review .comparison-block h3,
.product-page--review .checkpoint-card h3,
.product-page--review .alt-card h3 {
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.product-page--review .panel-icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
}

.product-page--review .mobile-panel-card--positive .panel-icon {
  background: rgba(39, 78, 60, 0.12);
  color: #274e3c;
}

.product-page--review .mobile-panel-card--negative .panel-icon {
  background: rgba(180, 107, 84, 0.12);
  color: #8f4b3d;
}

.product-page--review .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.product-page--review .feature-list li {
  position: relative;
  padding-left: 1.7rem;
  line-height: 1.5;
}

.product-page--review .feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-page--review .feature-list--positive li::before {
  content: '✓';
  background: rgba(39, 78, 60, 0.12);
  color: #274e3c;
}

.product-page--review .feature-list--negative li::before {
  content: '–';
  background: rgba(180, 107, 84, 0.12);
  color: #8f4b3d;
}

.product-page--review .judgement-stack {
  display: grid;
  gap: 0.9rem;
}

.product-page--review .judgement-card {
  padding: 1rem 1.05rem;
}

.product-page--review .judgement-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 0.55rem;
}

.product-page--review .judgement-head h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.product-page--review .judgement-card p,
.product-page--review .comparison-block p,
.product-page--review .checkpoint-row p,
.product-page--review .alt-summary {
  margin: 0;
  text-indent: 0 !important;
  text-align: left !important;
}

.product-page--review .fit-badge,
.product-page--review .alt-chip,
.product-page--review .checkpoint-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.65rem;
  white-space: nowrap;
}

.product-page--review .fit-badge--good,
.product-page--review .alt-chip--featured,
.product-page--review .checkpoint-row--real .checkpoint-badge,
.product-page--review .comparison-item--primary {
  background: rgba(39, 78, 60, 0.12);
  color: #274e3c;
}

.product-page--review .fit-badge--warn,
.product-page--review .alt-chip {
  background: rgba(236, 191, 129, 0.24);
  color: #6e5324;
}

.product-page--review .fit-badge--bad,
.product-page--review .checkpoint-row--fake .checkpoint-badge {
  background: rgba(180, 107, 84, 0.12);
  color: #8f4b3d;
}

.product-page--review .comparison-stack,
.product-page--review .checkpoint-cards,
.product-page--review .alt-card-grid {
  display: grid;
  gap: 1rem;
}

.product-page--review .comparison-block {
  padding: 1rem 1.05rem;
}

.product-page--review .comparison-values {
  display: grid;
  gap: 0.8rem;
}

.product-page--review .comparison-item {
  border-radius: 16px;
  background: rgba(31, 27, 22, 0.04);
  padding: 0.8rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-page--review .comparison-item span,
.product-page--review .alt-meta strong,
.product-page--review .spec-item dt {
  color: rgba(31, 27, 22, 0.72);
}

.product-page--review .comparison-item strong,
.product-page--review .alt-price,
.product-page--review .spec-item dd {
  font-size: 1.02rem;
}

.product-page--review .checkpoint-card {
  padding: 1rem 1.05rem;
}

.product-page--review .checkpoint-card h3 {
  margin-bottom: 0.85rem;
}

.product-page--review .checkpoint-row {
  border-radius: 16px;
  padding: 0.85rem 0.9rem;
}

.product-page--review .checkpoint-row + .checkpoint-row {
  margin-top: 0.75rem;
}

.product-page--review .checkpoint-row--real {
  background: rgba(39, 78, 60, 0.06);
}

.product-page--review .checkpoint-row--fake {
  background: rgba(180, 107, 84, 0.06);
}

.product-page--review .checkpoint-badge {
  margin-bottom: 0.55rem;
}

.product-page--review .alt-card {
  padding: 1rem 1.05rem;
}

.product-page--review .alt-card--featured {
  border-color: rgba(39, 78, 60, 0.22);
  box-shadow: 0 14px 34px rgba(39, 78, 60, 0.09);
}

.product-page--review .alt-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 0.65rem;
}

.product-page--review .alt-price {
  font-weight: 800;
  color: var(--charcoal);
}

.product-page--review .alt-chip {
  margin-bottom: 0.8rem;
}

.product-page--review .alt-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 0.85rem;
  display: grid;
  gap: 0.55rem;
}

.product-page--review .alt-meta li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-page--review .alt-meta li span {
  text-align: right;
}

.product-page--review .spec-list {
  display: grid;
  gap: 0.8rem;
  margin-left: 0;
}

.product-page--review .spec-item {
  padding: 0.95rem 1rem;
}

.product-page--review .spec-item dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.product-page--review .spec-item dd {
  margin: 0;
  color: var(--charcoal);
  font-weight: 600;
}

@media (max-width: 768px) {
  .product-page--review .mobile-only { display: block; }
  .product-page--review .desktop-only { display: none !important; }

  .product-page--review .product-section h3 + .mobile-only,
  .product-page--review .product-section h3 + .specs-table-wrapper + .mobile-only {
    margin-top: 1rem;
  }

  .product-page--review .alt-meta li,
  .product-page--review .comparison-item,
  .product-page--review .judgement-head,
  .product-page--review .alt-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-page--review .alt-meta li span,
  .product-page--review .comparison-item strong {
    text-align: left;
  }
}

/* Rechter kaart onderaan: tipformulier */
.tip-form-card {
  background: linear-gradient(180deg, #fffdf9 0%, #fbf6ee 100%);
  border: 1px solid rgba(39, 78, 60, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: left;
  justify-content: flex-start;
  align-items: stretch;
}

.tip-form-card .eyebrow {
  text-align: center;
  margin-bottom: 1rem;
}

.tip-form-card h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.tip-form-card > p {
  text-align: center;
  color: var(--charcoal-soft);
  max-width: 34ch;
  margin: 0 auto 1.75rem auto;
  flex-grow: 0;
}

.compact-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.compact-contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.compact-contact-form label {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.95rem;
  text-align: left;
}

.compact-contact-form input,
.compact-contact-form textarea {
  width: 100%;
  padding: 1rem 1rem;
  border: 1px solid rgba(39, 78, 60, 0.14);
  border-radius: 14px;
  font-family: var(--font-base);
  font-size: 1rem;
  background: #ffffff;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
  box-sizing: border-box;
}

.compact-contact-form input:focus,
.compact-contact-form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(155, 215, 193, 0.18);
}

.compact-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.tip-form-card .submit-btn {
  align-self: flex-start;
  background: var(--sage);
  color: var(--charcoal);
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.tip-form-card .submit-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.tip-form-card .submit-btn:active {
  transform: translateY(0);
}

#success-message-home {
  display: none;
  background: rgba(155, 215, 193, 0.18);
  border-left: 4px solid var(--sage);
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  border-radius: 0 14px 14px 0;
  margin-top: 1rem;
}

#success-message-home h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

#success-message-home p {
  margin-bottom: 0;
  text-indent: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .tip-form-card {
    padding: 1.5rem;
  }

  .tip-form-card h2,
  .tip-form-card > p,
  .tip-form-card .eyebrow {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .tip-form-card .submit-btn {
    width: 100%;
    align-self: stretch;
  }
}