﻿  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  :root {
    --green-900: #16291F;
    --green-800: #1E3C2D;
    --green-700: #274E3A;
    --green-600: #316349;
    --green-500: #3E7C5E;
    --green-400: #5E9A7C;
    --green-300: #8FBCA4;
    --green-50: #EEF5F0;
    --clay-600: #95462B;
    --clay-500: #B65937;
    --clay-400: #C9714E;
    --clay-100: #F4DDCE;
    --lemon-400: #DDBE2A;
    --brand-ink: #15201A;
    --text-strong: #15201A;
    --text-body: #36443B;
    --text-muted: #6A786E;
    --paper-50: #FBF9F4;
    --paper-0: #FFFFFF;
    --border-subtle: #E9ECE7;
    --border-default: #D5DAD4;
  }
  
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--paper-50);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a { color: var(--green-600); text-decoration: none; transition: color 200ms; }
  a:hover { color: var(--green-700); text-decoration: underline; }
  
  button { 
    font-family: inherit;
    border: none;
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 200ms;
    white-space: nowrap;
  }
  button.primary { background: var(--green-500); color: white; }
  button.primary:hover { background: var(--green-600); }
  button.accent { background: var(--clay-400); color: white; }
  button.accent:hover { background: var(--clay-500); }
  button.bol-btn { background: #0068B2; color: white; }
  button.bol-btn:hover { background: #005592; }
  button.me-btn { background: #4A7C59; color: white; }
  button.me-btn:hover { background: #3A6347; }
  button.secondary { background: transparent; color: var(--text-body); border: 1.5px solid var(--border-default); }
  button.secondary:hover { background: var(--green-50); border-color: var(--green-300); }
  button.small { padding: 6px 12px; font-size: 13px; }
  button:disabled { opacity: 0.5; cursor: not-allowed; }
  
  input, select { 
    font-family: inherit;
    padding: 8px 12px;
    border: 1.5px solid var(--border-default);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-body);
    background: var(--paper-0);
  }
  input:focus, select:focus { outline: none; border-color: var(--green-400); box-shadow: 0 0 0 3px rgba(94, 154, 124, 0.2); }
  
  /* Header */
  header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 249, 244, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 24px;
  }
  
  .header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-ink);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: -0.03em;
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
    background: rgba(62, 124, 94, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--green-600);
  }
  
  nav {
    display: flex;
    gap: 4px;
    flex: 1;
  }
  
  nav a {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    border-radius: 8px;
    cursor: pointer;
    transition: all 200ms;
  }
  
  nav a.active {
    background: var(--green-50);
    color: var(--green-600);
  }
  
  nav a:hover {
    color: var(--green-600);
  }
  
  .header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
  }
  
  .search-box {
    display: none;
    gap: 6px;
    align-items: center;
    background: var(--paper-0);
    border: 1.5px solid var(--border-default);
    border-radius: 8px;
    padding: 4px 8px;
  }
  
  .search-box.open {
    display: flex;
  }
  
  .search-box input {
    border: none;
    padding: 4px 8px;
    background: transparent;
    min-width: 150px;
  }
  
  .search-btn {
    background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    color: var(--text-muted);
  }
  
  .compare-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--clay-400);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
  }
  
  /* Main */
  main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* Hero banner (full-width image with text overlay) */
  .hero-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    flex: 1;
  }

  .hero-banner img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
  }

  .hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 44px;
  }

  .hero .hero-banner-overlay h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
  }

  .hero-banner-overlay p {
    font-size: 15px;
    color: rgba(255,255,255,0.95);
    max-width: 520px;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4);
    margin: 0;
  }

  @media (max-width: 640px) {
    .hero-banner img { height: 240px; }
    .hero-banner-overlay { padding: 24px; }
  }

  /* Hero */
  .hero {
    background: var(--green-50);
    border-bottom: 1px solid var(--border-default);
    padding: 80px 24px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 48px;
    border-radius: 16px;
  }

  .hero-content {
    flex: 1;
    min-width: 0;
  }

  .hero-image {
    flex: 1;
    min-width: 0;
    max-width: 480px;
  }

  .hero-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    display: block;
  }
  
  .hero h1 {
    font-size: clamp(36px, 8vw, 56px);
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-strong);
    font-weight: 700;
  }
  
  .hero em {
    color: var(--green-600);
    font-style: italic;
  }
  
  .hero p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 24px;
    max-width: 500px;
  }
  
  .hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  /* Section */
  .section {
    margin-bottom: 80px;
  }
  
  .section h2 {
    font-size: clamp(28px, 6vw, 36px);
    margin-bottom: 32px;
    color: var(--text-strong);
    font-weight: 700;
  }
  
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    gap: 16px;
  }
  
  .section-header a {
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  /* Grid */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
  }
  
  @media (max-width: 768px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (max-width: 480px) {
    .grid { grid-template-columns: 1fr; }
  }
  
  /* Product Card */
  .product-card {
    background: var(--paper-0);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 200ms;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
  }
  
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--border-default);
  }
  
  .product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--green-50) 0%, #DBEAE1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    overflow: hidden;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--clay-400);
    color: white;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  
  .product-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .product-category {
    font-size: 11px;
    color: var(--clay-500);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  
  .product-card h3 {
    font-size: 16px;
    margin: 0 0 4px;
    color: var(--text-strong);
    font-weight: 700;
    line-height: 1.3;
  }
  
  .product-brand {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
  }
  
  .product-rating {
    font-size: 13px;
    color: var(--clay-500);
    margin-bottom: 8px;
  }
  
  .product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
  }
  
  .product-tag {
    font-size: 11px;
    background: var(--green-50);
    color: var(--green-700);
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 600;
  }
  
  .cert-badge {
    font-size: 11px;
    background: #FDF8E3;
    color: #6B5200;
    border: 1px solid var(--lemon-400);
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 700;
  }

  .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
    gap: 8px;
  }
  
  .product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-strong);
  }
  
  /* Breadcrumb */
  .breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }
  
  .breadcrumb a {
    color: var(--text-muted);
  }
  
  /* Product Detail */
  .product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
  }
  
  @media (max-width: 768px) {
    .product-detail { grid-template-columns: 1fr; gap: 24px; }
  }
  
  .product-detail-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--green-50) 0%, #DBEAE1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 96px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 100%;
  }

  .product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .product-detail-info h1 {
    font-size: clamp(22px, 5vw, 36px);
    margin: 0 0 8px;
    color: var(--text-strong);
    font-weight: 700;
    overflow-wrap: break-word;
  }
  
  .product-detail-brand {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 12px;
  }
  
  .buy-box {
    border: 1px solid var(--clay-100);
    background: linear-gradient(135deg, #FBF1EB 0%, #F4DDCE 100%);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
  }
  
  .buy-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 4px;
  }
  
  .buy-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
  }
  
  .buy-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  /* Specificaties tabel */
  .product-specs {
    margin: 32px 0;
  }

  .product-specs h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 14px;
  }

  .specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }

  .specs-table tr {
    border-bottom: 1px solid var(--border-subtle);
  }

  .specs-table tr:last-child { border-bottom: none; }

  .specs-label {
    padding: 10px 16px 10px 0;
    color: var(--text-muted);
    font-weight: 500;
    width: 44%;
    vertical-align: top;
  }

  .specs-value {
    padding: 10px 0;
    color: var(--text-strong);
    font-weight: 600;
  }

  /* Onze bevindingen */
  .product-findings {
    background: var(--green-50);
    border-left: 3px solid var(--green-500);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 32px 0;
  }

  .findings-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .findings-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-700);
    text-transform: uppercase;
    letter-spacing: .06em;
  }

  .findings-note {
    font-size: 11px;
    color: var(--text-muted);
  }

  .product-findings p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
  }

  .pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
  }

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

  .pros-cons h3 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 0 0 8px;
  }

  .pros h3 { color: var(--green-600); }
  .cons h3 { color: var(--clay-500); }

  .pros-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .pros-cons li {
    padding: 9px 12px;
    display: flex;
    gap: 10px;
    font-size: 14px;
    border-radius: 7px;
    margin-bottom: 3px;
    align-items: flex-start;
    line-height: 1.5;
  }

  .pros li:nth-child(odd)  { background: var(--green-50); }
  .pros li:nth-child(even) { background: #DCE9E1; }
  .cons li:nth-child(odd)  { background: #FDF5EF; }
  .cons li:nth-child(even) { background: var(--clay-100); }

  .pros li::before { content: "✓"; color: var(--green-600); font-weight: 700; flex-shrink: 0; }
  .cons li::before { content: "−"; color: var(--clay-500); font-weight: 700; flex-shrink: 0; }
  
  /* Compare Table */
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 24px 0;
  }
  
  .compare-table th,
  .compare-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
  }
  
  .compare-table th {
    background: var(--green-50);
    color: var(--text-strong);
    font-weight: 700;
  }
  
  .compare-table tr:hover {
    background: rgba(62, 124, 94, 0.02);
  }
  
  /* Footer */
  footer {
    background: var(--green-900);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 80px;
    padding: 60px 24px 24px;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 24px;
  }
  
  .footer-col h3 {
    font-size: 14px;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
  }
  
  .footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
  }
  
  .footer-col a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
  }
  
  /* Blog */
  .blog-grid {
    display: flex;
    flex-direction: column;
  }

  /* Newsletter */
  .newsletter-section {
    background: var(--green-800);
    border-radius: 16px;
    padding: 60px 48px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 48px;
  }

  .newsletter-content { flex: 1; }

  .newsletter-content h2 {
    color: white;
    font-size: clamp(22px, 4vw, 30px);
    margin-bottom: 12px;
    font-weight: 700;
  }

  .newsletter-content p {
    color: var(--green-300);
    font-size: 15px;
    line-height: 1.6;
  }

  .newsletter-form-custom {
    flex: 1;
    min-width: 0;
  }

  .nl-input-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
  }

  .nl-input-row input[type="email"] {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    color: var(--text-body);
    background: white;
    min-width: 0;
    font-family: inherit;
  }

  .nl-input-row input[type="email"]:focus {
    outline: 3px solid var(--green-400);
  }

  .nl-input-row button {
    background: var(--green-500);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: inherit;
    transition: background 200ms;
  }

  .nl-input-row button:hover { background: var(--green-400); }

  .nl-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin: 0;
  }

  .nl-disclaimer a { color: var(--green-300); }

  .nl-success {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
  }

  .nl-success p {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
  }

  @media (max-width: 640px) {
    .newsletter-section { flex-direction: column; padding: 40px 24px; gap: 32px; align-items: stretch; }
    .newsletter-form-custom { width: 100%; min-width: 0; }
  }

  @media (max-width: 400px) {
    .nl-input-row { flex-direction: column; }
    .nl-input-row button { width: 100%; }
  }

  .blog-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: none;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
    padding: 24px 0;
  }

  .blog-card:first-child {
    border-top: 1px solid var(--border-subtle);
  }

  .blog-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border-subtle);
    border-bottom-color: var(--border-default);
  }

  .blog-card:hover h3 {
    color: var(--green-700);
  }

  .blog-image {
    width: 160px;
    min-width: 160px;
    aspect-ratio: 3 / 2;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: linear-gradient(135deg, var(--green-50) 0%, #DBEAE1 100%);
    flex-shrink: 0;
  }

  .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .blog-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    flex-wrap: wrap;
  }

  .blog-tag {
    background: var(--green-50);
    color: var(--green-700);
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 11px;
  }

  .blog-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.3;
    margin-bottom: 8px;
    transition: color 150ms;
  }

  .blog-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-read-more {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-600);
  }

  @media (max-width: 640px) {
    .blog-card {
      flex-direction: column;
      gap: 12px;
      padding: 20px 0;
    }
    .blog-image {
      width: 100%;
      min-width: unset;
      aspect-ratio: 16 / 9;
    }
  }

  /* Blog Post */
  .blog-post {
    max-width: 720px;
    margin: 0 auto;
  }

  .blog-post-header {
    margin-bottom: 32px;
  }

  .blog-post-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 96px;
    background: linear-gradient(135deg, var(--green-50) 0%, #DBEAE1 100%);
    margin-bottom: 28px;
  }

  .blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 640px) {
    .blog-post-image {
      aspect-ratio: unset;
      max-height: 200px;
    }
  }

  .blog-post h1 {
    font-size: clamp(28px, 5vw, 40px);
    color: var(--text-strong);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .blog-post-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
  }

  .blog-post-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-strong);
    margin: 32px 0 12px;
  }

  .blog-post-body p {
    margin-bottom: 16px;
  }

  .blog-post-body ul {
    margin: 0 0 16px 20px;
  }

  .blog-post-body li {
    margin-bottom: 8px;
  }

  .blog-post-body strong {
    color: var(--text-strong);
  }

  .blog-post-tip {
    background: var(--green-50);
    border-left: 4px solid var(--green-400);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 15px;
  }

  /* Blog product shelf */
  .blog-product-shelf {
    background: var(--green-50);
    border-radius: 16px;
    padding: 32px;
    margin: 48px 0;
  }

  .blog-product-shelf-header {
    margin-bottom: 20px;
  }

  .blog-product-shelf-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 4px;
  }

  .blog-product-shelf-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
  }

  .blog-product-shelf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }

  @media (max-width: 480px) {
    .blog-product-shelf { padding: 20px 16px; }
    .blog-product-shelf-grid { grid-template-columns: 1fr; }
  }

  .shelf-product-card {
    background: var(--paper-0);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 200ms;
  }

  .shelf-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
    border-color: var(--border-default);
  }

  .shelf-product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--green-50) 0%, #DBEAE1 100%);
    overflow: hidden;
  }

  .shelf-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .shelf-product-body {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .shelf-product-brand {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .shelf-product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.3;
    flex: 1;
  }

  .shelf-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 6px;
  }

  .shelf-product-footer button {
    font-size: 11px;
    padding: 5px 10px;
    white-space: nowrap;
  }

  /* Per kamer & klus */
  .room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }

  .room-card {
    border-radius: 14px;
    border: 1.5px solid var(--border-subtle);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--paper-0);
    transition: transform 180ms, box-shadow 180ms;
  }

  .room-card--active {
    cursor: pointer;
    border-color: var(--green-200);
    background: var(--green-50);
  }

  .room-card--active:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  }

  .room-card--soon {
    opacity: 0.55;
  }

  .room-card-icon {
    font-size: 36px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
  }

  .room-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-strong);
    margin: 0 0 6px;
  }

  .room-card-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 12px;
  }

  .room-card-cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--green-600);
  }

  .room-soon-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    background: var(--border-subtle);
    border-radius: 999px;
    padding: 3px 10px;
    margin-bottom: 8px;
  }

  @media (max-width: 600px) {
    .room-grid { grid-template-columns: 1fr; }
  }

  /* FAQ */
  .faq-category { margin-bottom: 48px; }

  .faq-category-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--green-100);
  }

  .faq-item {
    border-bottom: 1px solid var(--border-subtle);
  }

  .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-strong);
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    border-radius: 0;
    white-space: normal;
    line-height: 1.4;
  }

  .faq-question:hover { color: var(--green-600); }

  .faq-chevron {
    font-size: 20px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 200ms;
    display: inline-block;
  }

  .faq-question.open .faq-chevron { transform: rotate(90deg); }

  .faq-answer {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
  }

  .faq-answer p { margin: 0 0 12px; }

  .faq-links { display: flex; flex-wrap: wrap; gap: 10px; }

  .faq-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--green-600);
    text-decoration: none;
    background: var(--green-50);
    padding: 6px 14px;
    border-radius: 999px;
    transition: background 150ms;
    display: inline-block;
  }

  .faq-link:hover { background: var(--green-100); }

  .faq-link-btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
  }

  /* Filters */
  .filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 28px;
    align-items: flex-start;
  }

  .filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .filter-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .filter-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .filter-pill {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1.5px solid var(--border-default);
    background: var(--paper-0);
    color: var(--text-body);
    cursor: pointer;
    transition: all 150ms;
    font-family: inherit;
  }

  .filter-pill:hover {
    border-color: var(--green-400);
    color: var(--green-700);
  }

  .filter-pill.active {
    background: var(--green-600);
    color: white;
    border-color: var(--green-600);
  }

  .filter-pill.toggle.active {
    background: var(--green-600);
    color: white;
    border-color: var(--green-600);
  }

  .filter-reset {
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px 0;
    background: none;
    border: none;
    font-family: inherit;
    align-self: flex-end;
    text-decoration: underline;
  }

  .filter-result-count {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
  }

  /* Category sidebar layout */
  .category-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
  }

  .filter-sidebar {
    position: sticky;
    top: 80px;
    background: var(--paper-0);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  }

  .filter-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .filter-sidebar-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-strong);
  }

  .filter-sidebar-section {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .filter-sidebar-section h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    margin-bottom: 6px;
  }

  .filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 6px 8px;
    margin: 1px 0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-body);
    transition: background 150ms, color 150ms;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-family: inherit;
  }

  .filter-option:hover {
    background: var(--green-50);
    color: var(--text-strong);
  }

  .filter-option.active {
    color: var(--green-700);
    font-weight: 600;
    background: var(--green-50);
  }

  .filter-count {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    flex-shrink: 0;
  }

  .filter-option.active .filter-count {
    color: var(--green-600);
  }

  .filter-checkbox {
    display: inline-block;
    width: 13px;
    height: 13px;
    border: 1.5px solid var(--border-default);
    border-radius: 3px;
    background: white;
    vertical-align: middle;
    margin-right: 2px;
    position: relative;
    top: -1px;
    flex-shrink: 0;
  }

  .filter-checkbox.checked {
    background: var(--green-600);
    border-color: var(--green-600);
  }

  .sidebar-quiz-cta {
    background: var(--green-50);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 14px;
    margin-top: 4px;
    margin-bottom: 20px;
  }

  /* Quiz CTA banner */
  .quiz-cta-banner {
    background: var(--green-800);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }

  .quiz-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--green-300, #8FBCA4);
    margin-bottom: 6px;
  }

  .quiz-cta-banner h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px;
  }

  .quiz-cta-banner p {
    font-size: 14px;
    color: var(--green-300, #8FBCA4);
    margin: 0;
  }

  @media (max-width: 768px) {
    .category-layout {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .filter-sidebar {
      position: static;
    }
    .quiz-cta-banner {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
    }
    .quiz-cta-banner button { width: 100%; }
  }

  /* Utility */
  .hidden { display: none !important; }
  
  @media (max-width: 768px) {
    header { padding: 12px 16px; }
    .header-container { gap: 16px; }
    .logo { font-size: 16px; }
    nav a { font-size: 12px; padding: 6px 10px; }
    .header-actions { gap: 8px; }
    main { padding: 0 16px; }
    .hero { padding: 48px 16px; margin-bottom: 40px; flex-direction: column; }
    .hero-image { max-width: 100%; width: 100%; }
    .hero-image img { height: 220px; }
    .hero-buttons { gap: 8px; }
    button { padding: 8px 16px; font-size: 13px; }
    .section { margin-bottom: 60px; }
    .product-detail { gap: 24px; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .product-detail-info h1 { font-size: clamp(20px, 5vw, 36px); }
  }

  .nav-quiz-cta {
    display: none;
  }

  .menu-toggle {
    display: none;
    padding: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--border-default);
    font-size: 16px;
    color: var(--text-body);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 400;
  }

  @media (max-width: 600px) {
    .header-container { flex-wrap: wrap; row-gap: 0; }
    .header-actions .primary { display: none; }
    .menu-toggle { display: flex; }

    nav {
      display: none;
      order: 3;
      flex: 0 0 calc(100% + 32px);
      margin: 8px -16px 0;
      flex-direction: column;
      background: var(--paper-50);
      border-top: 1px solid var(--border-subtle);
      padding: 8px 16px 16px;
      gap: 2px;
    }

    nav.open { display: flex; }

    nav a {
      font-size: 15px;
      padding: 12px 12px;
      border-radius: 8px;
      border-bottom: 1px solid var(--border-subtle);
      font-weight: 600;
    }

    nav a:last-child { border-bottom: none; }

    nav a.active {
      background: var(--green-50);
      color: var(--green-600);
    }

    .nav-quiz-cta {
      display: block;
      width: 100%;
      margin-top: 12px;
      text-align: center;
    }

    .search-box.open {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 300;
      border-radius: 0;
      border: none;
      border-bottom: 2px solid var(--green-400);
      padding: 12px 16px;
      background: white;
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }

    .search-box.open input {
      flex: 1;
      min-width: 0;
      font-size: 16px;
    }
  }

  @media (max-width: 480px) {
    .buy-buttons { flex-direction: column; }
    .buy-buttons button { width: 100%; border-radius: 10px; text-align: center; }
    .buy-box { padding: 16px; }
    .buy-price { font-size: 24px; }
    .product-detail-image { aspect-ratio: 4 / 3; }
  }