/* ── UPSELL BLOK ─────────────────────────────────────────── */

.bun-upsell {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e9eaed;
}

.bun-upsell__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 5rem);
}

.bun-upsell__header {
    margin-bottom: 2rem;
}

.bun-upsell__titel {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 0.4rem;
}

.bun-upsell__sub {
    font-size: 0.95rem;
    color: #555555;
    margin: 0;
}

.bun-upsell__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

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

/* Kaart */
.bun-upsell-kaart {
    display: flex;
    flex-direction: column;
    border: 1.5px solid #e9eaed;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: border-color 0.18s, box-shadow 0.18s;
    background: #ffffff;
}

.bun-upsell-kaart:hover {
    border-color: #E8511A;
    box-shadow: 0 4px 16px rgba(232, 81, 26, 0.08);
}

.bun-upsell-kaart__top { flex: 1; margin-bottom: 1rem; }

.bun-upsell-kaart__label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #E8511A;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 0.4rem;
}

.bun-upsell-kaart__titel {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.bun-upsell-kaart__sub {
    font-size: 0.85rem;
    color: #555555;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bun-upsell-kaart__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.bun-upsell-kaart__aantal {
    font-size: 0.78rem;
    color: #888888;
    background: #f4f4f4;
    border-radius: 9999px;
    padding: 0.2rem 0.6rem;
}

.bun-upsell-kaart__besparing {
    font-size: 0.78rem;
    font-weight: 600;
    color: #16a34a;
    background: #dcfce7;
    border-radius: 9999px;
    padding: 0.2rem 0.6rem;
}

.bun-upsell-kaart__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9eaed;
}

.bun-upsell-kaart__prijs {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
}

.bun-upsell-kaart__cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: #E8511A;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.bun-upsell-kaart__cta svg {
    width: 0.9rem;
    height: 0.9rem;
}
