/* VS — checkout "Bezorgen of afhalen"-blok. Sluit aan op de conversie-checkout
 * (checkout-classic.css): witte kaart, navy accent, groene "snelste"-badge. */
.vs-del {
    --vs-del-navy: var(--vs-cko-navy, #314696);
    --vs-del-dark: var(--vs-cko-dark, #061b3d);
    --vs-del-line: var(--vs-cko-line, #e3e8ef);
    --vs-del-green: var(--vs-cko-cta, #1da14e);
    background: #fff;
    border: 1px solid var(--vs-del-line);
    border-radius: 14px;
    padding: 18px;
    margin: 0 0 18px;
}
.vs-del__title {
    margin: 0 0 12px !important;
    font-size: 17px;
    font-weight: 700;
    color: var(--vs-del-dark);
}

/* ---- Keuzekaarten ---- */
.vs-del__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 6px;
}
@media (max-width: 480px) {
    .vs-del__options { grid-template-columns: 1fr; }
}
.vs-del__opt {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 !important;
    padding: 13px 14px;
    border: 1.5px solid var(--vs-del-line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s, background .15s, box-shadow .15s;
}
.vs-del__opt:hover { border-color: #c4cdde; }
.vs-del__opt.is-active {
    border-color: var(--vs-del-navy);
    background: #f6f8fc;
    box-shadow: 0 0 0 3px rgba(49, 70, 150, .1);
}
.vs-del__opt input { position: absolute; opacity: 0; pointer-events: none; }
.vs-del__opt-icon { flex: 0 0 auto; color: var(--vs-del-navy); display: flex; }
.vs-del__opt-body { display: flex; flex-direction: column; line-height: 1.3; }
.vs-del__opt-title { font-weight: 700; font-size: 14.5px; color: var(--vs-del-dark); }
.vs-del__opt-sub { font-size: 12.5px; color: #667085; margin-top: 1px; }
.vs-del__opt-check {
    flex: 0 0 auto;
    width: 20px; height: 20px;
    margin-left: auto;
    border: 1.5px solid var(--vs-del-line);
    border-radius: 50%;
    transition: border-color .15s, background .15s;
}
.vs-del__opt.is-active .vs-del__opt-check {
    border-color: var(--vs-del-navy);
    background: var(--vs-del-navy) radial-gradient(circle, #fff 0 4px, transparent 5px);
}

/* ---- Panelen ---- */
.vs-del__panel { margin-top: 14px; }
.vs-del__label { display: block; font-weight: 600; font-size: 13.5px; color: var(--vs-del-dark); margin-bottom: 6px; }
.vs-del__select {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--vs-del-line);
    border-radius: 9px;
    background: #fff;
    font-size: 14px;
    color: var(--vs-del-dark);
}

/* ---- Aanwezigheid-melding ---- */
.vs-del__notice { margin-top: 14px; }
.vs-del__notice-box {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 11px 14px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 9px;
    font-size: 13px;
    line-height: 1.5;
    color: #7c2d12;
}
.vs-del__notice-icon { flex: 0 0 auto; font-size: 16px; }

/* ---- Kalender ---- */
.vs-del__cal-wrap { margin-top: 16px; }
.vs-del__cal-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.vs-del__cal-title { font-weight: 700; font-size: 14.5px; color: var(--vs-del-dark); }
.vs-del__cal-hint { font-size: 12.5px; color: var(--vs-del-green); font-weight: 600; }
.vs-del__cal {
    border: 1px solid var(--vs-del-line);
    border-radius: 12px;
    padding: 12px;
    background: #fff;
}
.vs-del__cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.vs-del__cal-month { font-weight: 700; font-size: 14px; color: var(--vs-del-dark); text-transform: capitalize; }
.vs-del__cal-arrow {
    width: 32px; height: 32px;
    border: 1px solid var(--vs-del-line);
    border-radius: 8px;
    background: #fff;
    font-size: 18px; line-height: 1;
    color: var(--vs-del-navy);
    cursor: pointer;
}
.vs-del__cal-arrow:hover:not([disabled]) { background: #f6f8fc; border-color: var(--vs-del-navy); }
.vs-del__cal-arrow[disabled] { opacity: .35; cursor: default; }
.vs-del__cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    column-gap: 4px;
    row-gap: 15px;
    text-align: center;
}
.vs-del__cal-wd { font-size: 11px; font-weight: 700; color: #98a2b3; text-transform: uppercase; padding-bottom: 4px; }
.vs-del__cal-cell, .vs-del__cal-day {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 13.5px;
    border-radius: 8px;
    border: 0;
    background: transparent;
}
.vs-del__cal-cell.is-off { color: #cbd2dd; }
.vs-del__cal-cell.is-empty { background: transparent; }
.vs-del__cal-day {
    cursor: pointer;
    font-weight: 600;
    color: var(--vs-del-dark);
    background: #eef2f9;
    transition: background .12s, color .12s, box-shadow .12s;
}
.vs-del__cal-day:hover { background: #dbe3f3; }
.vs-del__cal-day { overflow: visible; }
.vs-del__cal-day.is-fast { box-shadow: inset 0 0 0 1.5px var(--vs-del-green); }
.vs-del__cal-day.is-selected {
    background: var(--vs-del-navy);
    color: #fff;
    box-shadow: 0 2px 8px rgba(49, 70, 150, .35);
}
.vs-del__cal-fast {
    position: absolute;
    z-index: 3;
    bottom: -9px; left: 50%; transform: translateX(-50%);
    font-size: 8.5px; font-weight: 700; letter-spacing: .02em;
    line-height: 1.4;
    color: #fff; background: var(--vs-del-green);
    padding: 1px 6px; border-radius: 6px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
}
.vs-del__chosen { margin: 10px 0 0; font-size: 13.5px; font-weight: 600; color: var(--vs-del-dark); text-transform: capitalize; }
.vs-del__error { margin: 8px 0 0; font-size: 13px; color: #b42318; font-weight: 600; }
