/* ==========================================================================
   SLAAPSCORE — COMPONENTS.CSS
   Alle herbruikbare componenten: cards, score widgets, koopbox, tabellen, FAQ, etc.
   ========================================================================== */

/* --------------------------------------------------------------------------
   CONTAINER VARIATIES
   -------------------------------------------------------------------------- */
.container-smal {
    max-width: 780px;
    margin: 0 auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
    padding: 88px 0 96px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-content .label {
    color: var(--kleur-dageraad);
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    color: var(--kleur-wit);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-knoppen {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-signaal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.hero-signaal svg {
    color: var(--kleur-herstel);
    flex-shrink: 0;
}

.hero-decoratie {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   LABEL LICHT (op donkere achtergrond)
   -------------------------------------------------------------------------- */
.label-licht {
    color: var(--kleur-dageraad);
}

/* --------------------------------------------------------------------------
   TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
    padding: 32px 0;
    border-bottom: 1px solid var(--kleur-rand);
}

.trust-signalen {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-signaal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--kleur-nacht);
    gap: 8px;
}

.trust-signaal svg {
    color: var(--kleur-schemering);
    margin-bottom: 4px;
}

.trust-signaal strong {
    color: var(--kleur-nacht);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
}

.trust-signaal span {
    color: var(--kleur-subtekst);
    font-size: 12px;
}

/* --------------------------------------------------------------------------
   CATEGORIE CARD
   -------------------------------------------------------------------------- */
.categorie-card {
    background: var(--kleur-wit);
    border: 1px solid var(--kleur-rand);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-decoration: none;
    color: inherit;
    transition: all var(--overgang);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--schaduw-sm);
}

.categorie-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--schaduw-lg);
    border-color: var(--kleur-dageraad);
    color: inherit;
}

.categorie-icoon {
    width: 56px;
    height: 56px;
    background: var(--kleur-dageraad);
    color: var(--kleur-nacht);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.categorie-card h3 {
    color: var(--kleur-nacht);
    font-size: 1.3rem;
    margin: 0;
}

.categorie-card p {
    color: var(--kleur-subtekst);
    font-size: 15px;
    margin: 0;
    flex: 1;
}

.categorie-link {
    color: var(--kleur-actie);
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

/* --------------------------------------------------------------------------
   PRODUCT CARD
   -------------------------------------------------------------------------- */
.product-card {
    background: var(--kleur-wit);
    border: 1px solid var(--kleur-rand);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--overgang);
    display: flex;
    flex-direction: column;
    box-shadow: var(--schaduw-sm);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--schaduw-lg);
}

.product-card-afbeelding {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: block;
}

.product-card-afbeelding img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.product-card:hover .product-card-afbeelding img {
    transform: scale(1.04);
}

.placeholder-thumb {
    width: 100%;
    height: 100%;
    min-height: 180px;
    background:
        linear-gradient(135deg, var(--kleur-dageraad) 0%, var(--kleur-rust) 100%);
    position: relative;
}

.placeholder-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.4) 0%, transparent 50%);
}

.product-score-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--kleur-herstel);
    color: var(--kleur-nacht);
    font-weight: 600;
    font-size: 18px;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: var(--schaduw-sm);
    font-family: var(--font-kop);
    line-height: 1;
}

.product-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-card-body h3 {
    color: var(--kleur-nacht);
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.3;
}

.product-card-body h3 a {
    text-decoration: none;
    color: inherit;
}

.product-card-body h3 a:hover {
    color: var(--kleur-actie);
}

.product-card-body p {
    color: var(--kleur-subtekst);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.product-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--kleur-rand);
}

.product-prijs {
    font-weight: 600;
    color: var(--kleur-nacht);
}

.leesmeer {
    color: var(--kleur-actie);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

.leesmeer:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   POST CARD
   -------------------------------------------------------------------------- */
.post-card {
    background: var(--kleur-wit);
    border: 1px solid var(--kleur-rand);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--overgang);
    box-shadow: var(--schaduw-sm);
}

.post-card:hover {
    box-shadow: var(--schaduw-md);
}

.post-card-horizontaal {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
}

.post-card-afbeelding {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: block;
}

.post-card-afbeelding img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-card-body h3 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--kleur-nacht);
    line-height: 1.3;
}

.post-card-body h3 a {
    color: inherit;
    text-decoration: none;
}

.post-card-body h3 a:hover {
    color: var(--kleur-actie);
}

.post-card-body p {
    color: var(--kleur-subtekst);
    font-size: 14px;
    margin: 0;
}

.post-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--kleur-subtekst);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.post-meta .scheiding {
    color: var(--kleur-rand);
}

.post-cat {
    color: var(--kleur-actie);
}

/* --------------------------------------------------------------------------
   QUIZ BANNER
   -------------------------------------------------------------------------- */
.quiz-banner {
    padding: 72px 0;
}

.quiz-banner-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.quiz-banner h2 {
    color: var(--kleur-wit);
    margin-bottom: 12px;
}

.quiz-banner p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    margin-bottom: 24px;
    max-width: 520px;
}

/* --------------------------------------------------------------------------
   WAAROM BLOK
   -------------------------------------------------------------------------- */
.waarom-blok {
    background: var(--kleur-wit);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--kleur-rand);
    text-align: left;
}

.waarom-icoon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--kleur-herstel);
    color: var(--kleur-nacht);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.waarom-blok h3 {
    color: var(--kleur-nacht);
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.waarom-blok p {
    color: var(--kleur-tekst);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* --------------------------------------------------------------------------
   REVIEW SCORE WIDGET
   -------------------------------------------------------------------------- */
.review-score-widget {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px;
    background: var(--kleur-wit);
    border: 1px solid var(--kleur-rand);
    border-radius: var(--radius-lg);
    margin: 32px 0;
    box-shadow: var(--schaduw-sm);
}

.score-cirkel {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--kleur-nacht);
    color: var(--kleur-wit);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--schaduw-md);
}

.score-cirkel::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--kleur-herstel);
    opacity: 0.8;
}

.score-cijfer {
    font-family: var(--font-kop);
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
}

.score-max {
    font-size: 12px;
    color: var(--kleur-dageraad);
    margin-top: 2px;
    letter-spacing: 0.08em;
}

.score-info {
    flex: 1;
}

.score-info .label {
    display: block;
    margin-bottom: 8px;
}

.score-testduur {
    color: var(--kleur-subtekst);
    font-size: 13px;
    margin: 8px 0 0;
}

/* Sterren component */
.score-sterren {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.sterren-achter,
.sterren-voor {
    display: flex;
    gap: 4px;
}

.sterren-achter {
    color: var(--kleur-rand);
}

.sterren-voor {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--kleur-actie);
    overflow: hidden;
    white-space: nowrap;
}

.sterren-voor svg,
.sterren-achter svg {
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   REVIEW META BALK
   -------------------------------------------------------------------------- */
.review-meta-balk {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 20px 24px;
    background: var(--kleur-rust);
    border-radius: var(--radius-md);
    border: 1px solid var(--kleur-rand);
    margin-bottom: 32px;
}

.review-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-meta-item .label {
    font-size: 10px;
    color: var(--kleur-subtekst);
}

.review-meta-item strong {
    font-weight: 500;
    color: var(--kleur-nacht);
    font-size: 14px;
}

/* --------------------------------------------------------------------------
   SNEL OORDEEL
   -------------------------------------------------------------------------- */
.snel-oordeel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}

.snel-oordeel-blok {
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--kleur-rand);
}

.snel-oordeel-positief {
    background: var(--kleur-herstel);
    border-color: #9bc8a5;
}

.snel-oordeel-negatief {
    background: #F8DDD5;
    border-color: #E8C0B3;
}

.snel-oordeel h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
    color: var(--kleur-nacht);
    display: flex;
    align-items: center;
    gap: 8px;
}

.snel-oordeel-positief h3 svg {
    color: #2F6F3E;
}

.snel-oordeel-negatief h3 svg {
    color: #B84A30;
}

.snel-oordeel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.snel-oordeel li {
    font-size: 14px;
    color: var(--kleur-tekst);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.snel-oordeel-positief li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2F6F3E;
    font-weight: 700;
}

.snel-oordeel-negatief li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #B84A30;
    font-weight: 700;
    font-size: 16px;
}

/* --------------------------------------------------------------------------
   PRO/CON TABEL
   -------------------------------------------------------------------------- */
.pro-con-tabel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 24px 0;
    border: 1px solid var(--kleur-rand);
}

.pro-kolom,
.con-kolom {
    padding: 28px;
}

.pro-kolom {
    background: var(--kleur-herstel);
    border-right: 1px solid #a8cfb1;
}

.con-kolom {
    background: #F8DDD5;
}

.pro-kolom h3,
.con-kolom h3 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 16px;
    font-weight: 500;
}

.pro-kolom h3 { color: #1F5C2E; }
.con-kolom h3 { color: #9F3E22; }

.pro-lijst,
.con-lijst {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pro-lijst li,
.con-lijst li {
    padding-left: 24px;
    position: relative;
    color: var(--kleur-tekst);
    font-size: 14px;
    line-height: 1.55;
}

.pro-lijst li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 0;
    color: #2F6F3E;
    font-weight: 700;
    font-size: 18px;
}

.con-lijst li::before {
    content: "−";
    position: absolute;
    left: 0;
    top: 0;
    color: #B84A30;
    font-weight: 700;
    font-size: 18px;
}

/* --------------------------------------------------------------------------
   KOOPBOX (sticky sidebar)
   -------------------------------------------------------------------------- */
.koopbox {
    background: var(--kleur-wit);
    border: 1px solid var(--kleur-rand);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--schaduw-md);
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.koopbox-afbeelding {
    aspect-ratio: 4 / 3;
    background: var(--kleur-rust);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.koopbox-afbeelding img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.koopbox-titel {
    font-size: 1.1rem;
    margin: 0;
    color: var(--kleur-nacht);
}

.koopbox-score {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 12px 16px;
    background: var(--kleur-herstel);
    border-radius: var(--radius-sm);
}

.koopbox-score-cijfer {
    font-family: var(--font-kop);
    font-size: 32px;
    color: var(--kleur-nacht);
    line-height: 1;
}

.koopbox-score-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--kleur-schemering);
    font-weight: 500;
}

.koopbox-prijs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-top: 1px solid var(--kleur-rand);
    border-bottom: 1px solid var(--kleur-rand);
}

.koopbox-prijs strong {
    font-size: 22px;
    color: var(--kleur-nacht);
    font-weight: 600;
}

.koopbox-cta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.koopbox-cta .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
}

.koopbox-transparantie {
    font-size: 11px;
    color: var(--kleur-subtekst);
    line-height: 1.5;
    margin: 0;
}

.affiliate-netwerk {
    display: block;
    text-align: center;
    color: var(--kleur-subtekst);
    font-size: 11px;
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   REVIEW LAYOUT
   -------------------------------------------------------------------------- */
.review-layout {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 48px;
    padding: 40px 0 80px;
}

.review-content {
    min-width: 0;
}

.review-header h1 {
    margin-bottom: 16px;
}

.review-afbeelding {
    margin: 0 0 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.review-inhoud {
    font-size: 17px;
    line-height: 1.8;
}

.review-inhoud h2 {
    margin-top: 48px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--kleur-rand);
}

.review-inhoud h3 {
    margin-top: 32px;
    color: var(--kleur-nacht);
    font-size: 1.2rem;
}

.review-inhoud blockquote,
.review-inhoud .eigen-ervaring {
    background: var(--kleur-dageraad);
    border-left: 4px solid var(--kleur-nacht);
    padding: 20px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 24px 0;
    font-style: normal;
    color: var(--kleur-nacht);
}

.review-inhoud blockquote::before {
    content: "EIGEN ERVARING";
    display: block;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--kleur-schemering);
}

.review-inhoud ul,
.review-inhoud ol {
    padding-left: 24px;
    margin-bottom: 1.25em;
}

.review-inhoud li {
    margin-bottom: 8px;
}

.review-conclusie {
    background: var(--kleur-rust);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--kleur-rand);
    margin-top: 40px;
}

.review-conclusie h2 {
    border: none;
    margin-top: 0;
    padding-bottom: 0;
}

.review-eind-cta {
    margin-top: 32px;
    padding: 28px;
    background: var(--kleur-rust);
    border-radius: var(--radius-md);
    text-align: center;
}

/* --------------------------------------------------------------------------
   FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 24px 0;
}

.faq-item {
    background: var(--kleur-wit);
    border: 1px solid var(--kleur-rand);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--overgang);
}

.faq-item[open] {
    box-shadow: var(--schaduw-sm);
}

.faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 500;
    color: var(--kleur-nacht);
    list-style: none;
    position: relative;
    padding-right: 48px;
    transition: background var(--overgang);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: var(--kleur-rust);
}

.faq-item summary::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--kleur-schemering);
    border-bottom: 2px solid var(--kleur-schemering);
    transform: translateY(-70%) rotate(45deg);
    transition: transform var(--overgang);
}

.faq-item[open] summary::after {
    transform: translateY(-30%) rotate(-135deg);
}

.faq-antwoord {
    padding: 0 22px 20px;
    color: var(--kleur-tekst);
    line-height: 1.7;
    border-top: 1px solid var(--kleur-rand);
    padding-top: 16px;
}

.faq-antwoord p:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   AUTEUR BIO BOX
   -------------------------------------------------------------------------- */
.auteur-bio-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 28px;
    background: var(--kleur-rust);
    border-radius: var(--radius-lg);
    margin: 48px 0;
    border: 1px solid var(--kleur-rand);
}

.auteur-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.auteur-bio-tekst h3 {
    color: var(--kleur-nacht);
    margin: 4px 0 8px;
    font-size: 1.2rem;
}

.auteur-bio-tekst p {
    color: var(--kleur-tekst);
    margin: 0;
}

.auteur-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--kleur-actie);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

.auteur-link:hover {
    text-decoration: underline;
}

.auteur-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auteur-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.meta-secundair {
    font-size: 12px;
    color: var(--kleur-subtekst);
    display: flex;
    gap: 8px;
    align-items: center;
}

.meta-secundair .scheiding {
    color: var(--kleur-rand);
}

/* --------------------------------------------------------------------------
   SINGLE POST LAYOUT
   -------------------------------------------------------------------------- */
.single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    padding: 40px 0 80px;
}

.single-content-wrap {
    max-width: 750px;
    min-width: 0;
}

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

.single-post-titel {
    margin: 16px 0 20px;
}

.single-post-meta {
    padding: 16px 0;
    border-top: 1px solid var(--kleur-rand);
    border-bottom: 1px solid var(--kleur-rand);
}

.single-post-afbeelding {
    margin: 0 0 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.single-post-inhoud {
    font-size: 17px;
    line-height: 1.8;
}

.single-post-inhoud h2,
.single-post-inhoud h3 {
    margin-top: 2em;
    margin-bottom: 0.6em;
}

.single-post-inhoud p,
.single-post-inhoud ul,
.single-post-inhoud ol {
    margin-bottom: 1.4em;
}

.single-post-inhoud ul,
.single-post-inhoud ol {
    padding-left: 24px;
}

.single-post-inhoud li {
    margin-bottom: 8px;
}

.single-post-footer {
    padding: 24px 0;
    border-top: 1px solid var(--kleur-rand);
    margin-top: 40px;
}

.tags-rij {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.tag-chip {
    padding: 6px 14px;
    background: var(--kleur-wit);
    border: 1px solid var(--kleur-rand);
    border-radius: 999px;
    font-size: 13px;
    color: var(--kleur-schemering);
    text-decoration: none;
    transition: all var(--overgang);
}

.tag-chip:hover {
    background: var(--kleur-nacht);
    color: var(--kleur-wit);
    border-color: var(--kleur-nacht);
}

.gerelateerde-posts {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--kleur-rand);
}

.gerelateerde-posts h2 {
    margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   PAGE LAYOUT
   -------------------------------------------------------------------------- */
.page-layout {
    padding: 40px 0 80px;
    max-width: 820px;
}

.page-header {
    margin-bottom: 32px;
}

.page-lead {
    font-size: 19px;
    color: var(--kleur-schemering);
    line-height: 1.6;
    margin: 16px 0 0;
}

.page-afbeelding {
    margin: 0 0 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.page-inhoud {
    font-size: 17px;
    line-height: 1.8;
}

.page-inhoud h2,
.page-inhoud h3 {
    margin-top: 2em;
}

/* --------------------------------------------------------------------------
   SIDEBAR
   -------------------------------------------------------------------------- */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.widget {
    background: var(--kleur-wit);
    border: 1px solid var(--kleur-rand);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.widget-titel {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--kleur-nacht);
    margin: 0 0 16px;
    font-weight: 500;
}

.widget-quiz-cta {
    color: var(--kleur-wit);
    border: none;
}

.widget-quiz-cta .widget-titel {
    color: var(--kleur-wit);
    font-size: 1.1rem;
    font-family: var(--font-kop);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    margin-top: 4px;
}

.widget-quiz-cta p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.populair-lijst {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: populair;
}

.populair-lijst li {
    counter-increment: populair;
    border-bottom: 1px solid var(--kleur-rand);
}

.populair-lijst li:last-child {
    border-bottom: none;
}

.populair-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    text-decoration: none;
    color: var(--kleur-tekst);
    font-size: 14px;
    line-height: 1.4;
}

.populair-link::before {
    content: counter(populair);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--kleur-rust);
    color: var(--kleur-schemering);
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.populair-titel {
    flex: 1;
    color: var(--kleur-nacht);
    font-weight: 500;
}

.populair-link:hover .populair-titel {
    color: var(--kleur-actie);
}

.populair-score {
    color: var(--kleur-schemering);
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
    background: var(--kleur-herstel);
    padding: 2px 8px;
    border-radius: 999px;
}

.nieuwsbrief-form input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--kleur-rand);
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 8px;
}

.nieuwsbrief-form input:focus {
    outline: 2px solid var(--kleur-nacht);
    outline-offset: 2px;
    border-color: var(--kleur-nacht);
}

/* --------------------------------------------------------------------------
   VERGELIJKBAAR WIDGET
   -------------------------------------------------------------------------- */
.vergelijkbaar-lijst {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vergelijkbaar-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--overgang);
}

.vergelijkbaar-link:hover {
    background: var(--kleur-rust);
}

.vergelijkbaar-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.vergelijkbaar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vergelijkbaar-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.vergelijkbaar-titel {
    font-weight: 500;
    color: var(--kleur-nacht);
    font-size: 13px;
    line-height: 1.3;
}

.vergelijkbaar-score {
    color: var(--kleur-schemering);
    font-size: 12px;
}

/* --------------------------------------------------------------------------
   ARCHIEF LAYOUT
   -------------------------------------------------------------------------- */
.archief-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    padding: 40px 0 80px;
}

.archief-layout:has(.reviews-grid) {
    grid-template-columns: 1fr;
}

.archief-header {
    margin-bottom: 40px;
}

.archief-header h1 {
    margin: 8px 0 12px;
}

.archief-beschrijving {
    color: var(--kleur-subtekst);
    font-size: 17px;
    max-width: 680px;
}

.paginatie {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.paginatie .nav-links,
.paginatie .page-numbers {
    display: inline-flex;
    gap: 4px;
}

.paginatie .page-numbers {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--kleur-rand);
    background: var(--kleur-wit);
    color: var(--kleur-nacht);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.paginatie .page-numbers.current {
    background: var(--kleur-nacht);
    color: var(--kleur-wit);
    border-color: var(--kleur-nacht);
}

.paginatie .page-numbers:hover:not(.current) {
    background: var(--kleur-rust);
}

.geen-resultaten {
    text-align: center;
    padding: 64px 24px;
    background: var(--kleur-wit);
    border-radius: var(--radius-lg);
    border: 1px solid var(--kleur-rand);
}

/* --------------------------------------------------------------------------
   AFFILIATE DISCLAIMER
   -------------------------------------------------------------------------- */
.affiliate-disclaimer {
    background: var(--kleur-dageraad);
    color: var(--kleur-nacht);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 32px;
    border-left: 4px solid var(--kleur-nacht);
}

.affiliate-disclaimer strong {
    font-weight: 600;
}

.affiliate-disclaimer a {
    color: var(--kleur-nacht);
    font-weight: 500;
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   VERGELIJKINGSTABEL
   -------------------------------------------------------------------------- */
.vergelijking-wrapper {
    margin: 40px 0;
    position: relative;
}

.vergelijking-scroll-hint {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--kleur-dageraad);
    color: var(--kleur-nacht);
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: 500;
}

.vergelijkingstabel {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--kleur-wit);
    border: 1px solid var(--kleur-rand);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--schaduw-sm);
}

.vergelijkingstabel th,
.vergelijkingstabel td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--kleur-rand);
    vertical-align: middle;
}

.vergelijkingstabel tr:last-child td {
    border-bottom: none;
}

.vergelijking-rij-label {
    background: var(--kleur-rust);
    font-weight: 500;
    color: var(--kleur-nacht);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    width: 160px;
}

.vergelijking-product-kop {
    vertical-align: bottom;
    padding: 24px 18px 16px;
    text-align: center;
    position: relative;
    background: var(--kleur-wit);
}

.vergelijking-winnaar {
    background: var(--kleur-herstel);
}

.winnaar-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kleur-actie);
    color: var(--kleur-wit);
    padding: 4px 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    z-index: 1;
}

.vergelijking-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin: 0 auto 12px;
    display: block;
}

.vergelijking-product-naam {
    display: block;
    font-size: 14px;
    color: var(--kleur-nacht);
    line-height: 1.3;
    font-weight: 600;
}

.vergelijking-score {
    font-family: var(--font-kop);
    font-size: 28px;
    color: var(--kleur-nacht);
    line-height: 1;
}

.vergelijking-score + small {
    color: var(--kleur-subtekst);
    font-size: 13px;
    margin-left: 4px;
}

.vergelijking-tekst {
    max-width: 720px;
    margin: 48px auto 0;
}

@media (max-width: 768px) {
    .vergelijking-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .vergelijking-scroll-hint {
        display: inline-flex;
    }
    .vergelijkingstabel {
        min-width: 760px;
    }
    .vergelijking-rij-label {
        width: 120px;
        font-size: 11px;
    }
    .vergelijking-thumb {
        width: 60px;
        height: 60px;
    }
    .vergelijkingstabel th,
    .vergelijkingstabel td {
        padding: 12px;
    }
}

/* --------------------------------------------------------------------------
   404 PAGINA
   -------------------------------------------------------------------------- */
.pagina-404 {
    text-align: center;
    padding: 96px 0;
}

.pagina-404-inner {
    max-width: 560px;
    margin: 0 auto;
}

.pagina-404-visueel {
    margin-bottom: 24px;
}

.pagina-404-visueel svg {
    margin: 0 auto;
}

.pagina-404-sub {
    color: var(--kleur-subtekst);
    font-size: 18px;
    margin-bottom: 32px;
}

.pagina-404-knoppen {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.pagina-404-suggesties {
    padding-top: 32px;
    border-top: 1px solid var(--kleur-rand);
}

.pagina-404-suggesties .label {
    display: block;
    margin-bottom: 16px;
}

.pagina-404-suggesties ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.pagina-404-suggesties a {
    color: var(--kleur-schemering);
    text-decoration: none;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--kleur-rand);
    transition: all var(--overgang);
}

.pagina-404-suggesties a:hover {
    background: var(--kleur-nacht);
    color: var(--kleur-wit);
    border-color: var(--kleur-nacht);
}

/* --------------------------------------------------------------------------
   OVER ONS — SECTIES
   -------------------------------------------------------------------------- */
.over-ons-header {
    max-width: 720px;
    margin: 0 auto 16px;
    text-align: center;
}

.over-ons-lead {
    font-size: 20px;
    color: var(--kleur-schemering);
    line-height: 1.6;
    margin-top: 16px;
}

.over-ons-sectie .label {
    display: inline-block;
    margin-bottom: 8px;
}

.over-ons-sectie h2 {
    margin-bottom: 24px;
}

.sectie-intro {
    color: var(--kleur-subtekst);
    font-size: 17px;
    margin-bottom: 40px;
}

.over-ons-tekst {
    font-size: 17px;
    line-height: 1.8;
}

.testmethodologie-lijst {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    counter-reset: methodologie;
}

.testmethodologie-lijst li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 28px;
    background: var(--kleur-wit);
    border-radius: var(--radius-lg);
    border: 1px solid var(--kleur-rand);
    box-shadow: var(--schaduw-sm);
}

.testmethodologie-nummer {
    font-family: var(--font-kop);
    font-size: 44px;
    color: var(--kleur-dageraad);
    line-height: 1;
}

.testmethodologie-body h3 {
    color: var(--kleur-nacht);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.testmethodologie-body p {
    color: var(--kleur-tekst);
    margin: 0;
    line-height: 1.7;
}

.auteur-profiel {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
}

.auteur-profiel-foto {
    position: relative;
}

.auteur-placeholder {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--kleur-nacht) 0%, var(--kleur-schemering) 100%);
    color: var(--kleur-wit);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-kop);
    font-size: 72px;
    box-shadow: var(--schaduw-lg);
}

.auteur-profiel-tekst h2 {
    margin: 8px 0 4px;
}

.auteur-functie {
    color: var(--kleur-actie);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 16px;
}

.auteur-cta {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-ghost-donker {
    background: transparent;
    color: var(--kleur-nacht);
    border: 2px solid var(--kleur-nacht);
}

.btn-ghost-donker:hover {
    background: var(--kleur-nacht);
    color: var(--kleur-wit);
}

.transparantie-blok {
    color: var(--kleur-wit);
}

.transparantie-blok h2 {
    color: var(--kleur-wit);
    margin-bottom: 32px;
}

.transparantie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.transparantie-kolom h3 {
    color: var(--kleur-wit);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.transparantie-kolom p,
.transparantie-kolom li {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.7;
}

.transparantie-kolom ul {
    padding-left: 20px;
}

.transparantie-kolom ul li {
    margin-bottom: 8px;
}

.transparantie-afsluiting {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
}

.transparantie-afsluiting a {
    color: var(--kleur-herstel);
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .review-layout {
        grid-template-columns: 1fr;
    }
    .koopbox {
        position: static;
    }
    .single-layout,
    .archief-layout {
        grid-template-columns: 1fr;
    }
    .auteur-profiel {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    .auteur-profiel-foto {
        margin: 0 auto;
    }
    .auteur-cta {
        justify-content: center;
    }
    .transparantie-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .trust-signalen {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-decoratie {
        display: none;
    }
    .quiz-banner-inner {
        grid-template-columns: 1fr;
    }
    .quiz-banner-visueel {
        display: none;
    }
}

@media (max-width: 768px) {
    .post-card-horizontaal {
        grid-template-columns: 1fr;
    }
    .post-card-afbeelding {
        aspect-ratio: 16 / 9;
    }
    .trust-signalen {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .review-score-widget {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 20px;
    }
    .review-meta-balk {
        grid-template-columns: repeat(2, 1fr);
    }
    .snel-oordeel,
    .pro-con-tabel {
        grid-template-columns: 1fr;
    }
    .pro-kolom {
        border-right: none;
        border-bottom: 1px solid #a8cfb1;
    }
    .auteur-bio-box {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }
    .auteur-bio-avatar {
        margin: 0 auto;
    }
    .testmethodologie-lijst li {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
    }
    .auteur-placeholder {
        width: 160px;
        height: 160px;
        font-size: 56px;
    }
    .hero {
        padding: 48px 0 56px;
    }
}
