/* Vloershop — ESSEN plint-keuzeflow (huisstijl beige/goud). Lokale tokens met
 * de exacte WST-waarden zodat het blok correct oogt ongeacht de token-uitrol. */
.vs-plint {
    --vsp-creme: #faf8f3;
    --vsp-white: #fff;
    --vsp-ink: #1a1712;
    --vsp-muted: #6b6355;
    --vsp-gold: #d4a056;
    --vsp-gold-h: #be8c43;
    --vsp-line: #e7e2d8;
    --vsp-radius: 13px;
    margin: 28px 0;
    color: var(--vsp-ink);
}

.vs-plint__wrap {
    background: var(--vsp-creme);
    border: 1px solid var(--vsp-line);
    border-radius: var(--vsp-radius);
    padding: 24px;
}

.vs-plint__h2 {
    margin: 0 0 6px;
    font-size: 1.35rem;
}

.vs-plint__intro {
    margin: 0 0 18px;
    color: var(--vsp-muted);
    max-width: 62ch;
}

/* Stap 1 — kleurkeuze */
.vs-plint__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.vs-plint__tab {
    padding: 10px 18px;
    border: 1px solid var(--vsp-line);
    border-radius: 100px;
    background: var(--vsp-white);
    color: var(--vsp-ink);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.vs-plint__tab:hover {
    border-color: var(--vsp-gold);
}

.vs-plint__tab[aria-selected="true"] {
    background: var(--vsp-gold);
    border-color: var(--vsp-gold);
    color: var(--vsp-ink);
}

.vs-plint__tab:focus-visible {
    outline: 2px solid var(--vsp-gold);
    outline-offset: 2px;
}

/* Stap 2 — panelen */
.vs-plint__panel {
    padding: 4px 0 0;
}

.vs-plint__panel + .vs-plint__panel {
    margin-top: 22px;
    border-top: 1px solid var(--vsp-line);
    padding-top: 18px;
}

/* Met JS worden de panelen tabs: kop verbergen, scheiding weg. */
.vs-plint.is-enhanced .vs-plint__panel-label {
    display: none;
}

.vs-plint.is-enhanced .vs-plint__panel + .vs-plint__panel {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
}

.vs-plint__panel-label {
    margin: 0 0 10px;
    font-size: 1.05rem;
}

.vs-plint__heights {
    margin: 0 0 8px;
}

.vs-plint__heights-label {
    color: var(--vsp-muted);
    margin-right: 6px;
}

.vs-plint__chip {
    display: inline-block;
    padding: 3px 10px;
    margin: 0 2px 4px 0;
    border-radius: 100px;
    background: var(--vsp-white);
    border: 1px solid var(--vsp-line);
    font-size: 0.9rem;
    font-weight: 600;
}

.vs-plint__dikte {
    margin: 0 0 14px;
    color: var(--vsp-muted);
    font-size: 0.95rem;
}

.vs-plint__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.vs-plint__item a {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    padding: 12px 14px;
    background: var(--vsp-white);
    border: 1px solid var(--vsp-line);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
}

.vs-plint__item a:hover {
    border-color: var(--vsp-gold);
}

.vs-plint__item-name {
    font-weight: 600;
}

.vs-plint__item-price {
    color: var(--vsp-gold-h);
    white-space: nowrap;
}

/* Vakman-tip */
.vs-plint__tip {
    margin-top: 22px;
    border-top: 1px solid var(--vsp-line);
    padding-top: 16px;
}

.vs-plint__tip-sum {
    cursor: pointer;
    font-weight: 700;
    color: var(--vsp-gold-h);
}

.vs-plint__tip-body {
    margin-top: 12px;
}

.vs-plint__tip-scroll {
    overflow-x: auto;
}

.vs-plint__tip-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.vs-plint__tip-table th,
.vs-plint__tip-table td {
    text-align: left;
    padding: 8px 10px;
    border-bottom: 1px solid var(--vsp-line);
}

.vs-plint__tip-table th {
    color: var(--vsp-muted);
    font-weight: 600;
}

.vs-plint__tip-note {
    margin: 12px 0 0;
    color: var(--vsp-muted);
    font-size: 0.9rem;
}
