/* =============================================================
   AANBOD.CSS — Heart Workx
   Drie producten op één pagina, mobile-first
   ============================================================= */

/* ─── GEDEELD ──────────────────────────────────────────────── */
.ab-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.ab-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}
.ab-label-accent { color: #a32508; }
.ab-label-zand   { color: #e8c9a0; }

/* ─── KNOPPEN ──────────────────────────────────────────────── */
.ab-knop-primair {
    display: inline-block;
    background: #a32508;
    color: #faf7f2;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
    margin-top: 20px;
}
.ab-knop-primair:hover {
    background: #8a1f06;
    transform: translateY(-1px);
    text-decoration: none;
    color: #faf7f2;
}
.ab-knop-vol {
    width: 100%;
    text-align: center;
    display: block;
    box-sizing: border-box;
}
.ab-knop-wit {
    display: inline-block;
    background: #faf7f2;
    color: #a32508;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 13px 22px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.ab-knop-wit:hover {
    background: #f0e8df;
    text-decoration: none;
    color: #a32508;
}
.ab-knop-ghost {
    display: inline-block;
    color: rgba(232,201,160,0.75);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(232,201,160,0.3);
    padding-bottom: 2px;
    margin-top: 12px;
    transition: color 0.2s, border-color 0.2s;
}
.ab-knop-ghost:hover {
    color: #e8c9a0;
    border-color: #e8c9a0;
    text-decoration: none;
}

/* ─── PAGINAHERO ────────────────────────────────────────────── */
.ab-paginahero {
    background: #f5ede4;
    padding: 40px 0 32px;
    border-bottom: 1px solid rgba(232,201,160,0.4);
}
.ab-paginahero-titel {
    font-family: var(--display-font, Georgia, serif);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 400;
    color: #2c4a52;
    line-height: 1.3;
    margin-bottom: 12px;
}
.ab-paginahero-tekst {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 24px;
}
.ab-anker-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.ab-anker {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid rgba(44,74,82,0.25);
    color: #2c4a52;
    transition: border-color 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.ab-anker:hover {
    border-color: #a32508;
    color: #a32508;
    text-decoration: none;
}
.ab-anker-uitgelicht {
    background: #a32508;
    border-color: #a32508;
    color: #faf7f2;
}
.ab-anker-uitgelicht:hover {
    background: #8a1f06;
    border-color: #8a1f06;
    color: #faf7f2;
}

/* ─── PRODUCT HERO ──────────────────────────────────────────── */
.ab-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.ab-hero-donker { background: #2c4a52; }
.ab-hero-middel { background: #1e333a; }

.ab-hero-foto-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.ab-hero-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.ab-hero-foto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26,40,44,0.3) 0%,
        rgba(26,40,44,0.75) 60%,
        rgba(26,40,44,0.92) 100%
    );
}

/* Placeholder als er geen foto is — volledig onzichtbaar */
.ab-foto-placeholder {
    width: 100%;
    height: 100%;
    background: transparent;
}

.ab-hero-inhoud {
    position: relative;
    z-index: 1;
    padding-top: 48px;
    padding-bottom: 36px;
}
.ab-hero-titel {
    font-family: var(--display-font, Georgia, serif);
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    font-weight: 400;
    color: #faf7f2;
    line-height: 1.3;
    margin-bottom: 12px;
}
.ab-hero-tekst {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #c8dde2;
    margin-bottom: 16px;
}
.ab-prijs-rij {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}
.ab-prijs-groot {
    font-size: 1.4rem;
    font-weight: 700;
    color: #faf7f2;
}
.ab-prijs-detail {
    font-size: 0.82rem;
    color: rgba(232,201,160,0.7);
}

/* ─── SECTIES ───────────────────────────────────────────────── */
.ab-sectie { padding: 36px 0; }
.ab-sectie-licht { background: #faf7f2; }
.ab-sectie-zacht { background: #f5ede4; }
.ab-sectie-wit   { background: white; }

.ab-sectie-titel {
    font-family: var(--display-font, Georgia, serif);
    font-size: clamp(1.2rem, 3.5vw, 1.7rem);
    font-weight: 400;
    color: #2c4a52;
    line-height: 1.35;
    margin-bottom: 16px;
}
.ab-sectie-tekst {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 12px;
}

/* Tijdsinvestering badge */
.ab-tijdsinvestering {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(44,74,82,0.07);
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 16px;
}
.ab-ti-ico { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.ab-ti-tekst {
    font-size: 0.88rem;
    color: #2c4a52;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* ─── STAPPEN ───────────────────────────────────────────────── */
.ab-stappen {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.ab-stap {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.ab-stap-nr {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #a32508;
    color: #faf7f2;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.ab-stap-inhoud { flex: 1; }
.ab-stap-titel {
    font-size: 0.97rem;
    font-weight: 700;
    color: #2c4a52;
    margin-bottom: 4px;
}
.ab-stap-tekst {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ─── HARMONICA (details/summary) ──────────────────────────── */
.ab-stap-details,
.ab-check-details {
    flex: 1;
}

.ab-stap-details summary,
.ab-check-details summary {
    list-style: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* Verberg de standaard driehoek in alle browsers */
.ab-stap-details summary::-webkit-details-marker,
.ab-check-details summary::-webkit-details-marker { display: none; }
.ab-stap-details summary::marker,
.ab-check-details summary::marker { display: none; }

/* Pijltje rechts van de samenvatting */
.ab-stap-details summary::after,
.ab-check-details summary::after {
    content: '+';
    font-size: 1.1rem;
    font-weight: 400;
    color: #a32508;
    flex-shrink: 0;
    transition: transform 0.2s;
    line-height: 1;
}
.ab-stap-details[open] summary::after,
.ab-check-details[open] summary::after {
    transform: rotate(45deg);
}

.ab-stap-details .ab-stap-tekst,
.ab-check-details .ab-check-tekst {
    margin-top: 8px;
    padding-bottom: 2px;
}

/* ─── CHECKS ────────────────────────────────────────────────── */
.ab-checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
}
.ab-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.ab-check-ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #a32508;
    color: #faf7f2;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.ab-check-titel {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c4a52;
    margin-bottom: 2px;
}
.ab-check-tekst {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ─── REVIEW ────────────────────────────────────────────────── */
.ab-review {
    margin-top: 28px;
    border-left: 3px solid #a32508;
    padding: 14px 18px;
    background: #f5ede4;
    border-radius: 0 8px 8px 0;
}
.ab-review-tekst {
    font-family: var(--display-font, Georgia, serif);
    font-size: 0.97rem;
    font-style: italic;
    line-height: 1.7;
    color: #2c4a52;
    margin-bottom: 8px;
}
.ab-review-naam {
    font-size: 0.8rem;
    color: #888;
}

/* ─── VERGELIJK (Start vs Groei) ────────────────────────────── */
.ab-vergelijk {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}
.ab-vergelijk-item {
    background: white;
    border: 1.5px solid rgba(44,74,82,0.15);
    border-radius: 10px;
    padding: 16px 18px;
}
.ab-vergelijk-actief {
    border-color: #a32508;
    border-width: 2px;
    box-shadow: 0 3px 12px rgba(163,37,8,0.1);
}
.ab-vergelijk-naam {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #a32508;
    margin-bottom: 4px;
}
.ab-vergelijk-tekst {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 6px;
}
.ab-vergelijk-prijs {
    font-size: 1rem;
    font-weight: 700;
    color: #2c4a52;
    margin: 0;
}

/* ─── KASSA ─────────────────────────────────────────────────── */
.ab-kassa { padding: 28px 0; }
.ab-kassa-rood  { background: #a32508; }
.ab-kassa-donker { background: #2c4a52; }

.ab-kassa-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ab-kassa-titel {
    font-family: var(--display-font, Georgia, serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: #faf7f2;
    line-height: 1.3;
    margin-bottom: 4px;
}
.ab-kassa-sub {
    font-size: 0.85rem;
    color: rgba(250,247,242,0.7);
    margin: 0;
}

/* ─── OVERGANG tussen producten ─────────────────────────────── */
.ab-overgang {
    background: #e8c9a0;
    padding: 24px 0;
    text-align: center;
}
.ab-overgang-tekst {
    font-family: var(--display-font, Georgia, serif);
    font-size: 1.1rem;
    color: #2c4a52;
    font-weight: 400;
    margin-bottom: 4px;
}
.ab-overgang-subtekst {
    font-size: 0.88rem;
    color: #3a3a3a;
    margin: 0;
}

/* ─── DESKTOP ≥900px ─────────────────────────────────────────── */
@media (min-width: 900px) {
    .ab-inner { padding: 0 24px; }

    .ab-hero { min-height: 480px; }
    .ab-hero-inhoud { padding-bottom: 56px; }

    .ab-sectie { padding: 56px 0; }

    .ab-kassa-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .ab-vergelijk {
        flex-direction: row;
    }
    .ab-vergelijk-item { flex: 1; }

    .ab-knop-vol {
        width: auto;
        display: inline-block;
    }
}
