/* Vloershop — "Maak je bestelling compleet" (ESSEN bestel-kant), beige/goud. */
.vs-compleet {
    --vsc-creme: #faf8f3;
    --vsc-white: #fff;
    --vsc-ink: #1a1712;
    --vsc-muted: #6b6355;
    --vsc-gold: #d4a056;
    --vsc-gold-h: #be8c43;
    --vsc-line: #e7e2d8;
    --vsc-radius: 13px;
    margin: 24px 0;
    color: var(--vsc-ink);
    background: var(--vsc-creme);
    border: 1px solid var(--vsc-line);
    border-radius: var(--vsc-radius);
    padding: 20px;
}

.vs-compleet__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px 14px;
    margin: 0 0 16px;
}

.vs-compleet__title {
    margin: 0;
    font-size: 1.25rem;
}

.vs-compleet__sub {
    margin: 2px 0 0;
    color: var(--vsc-muted);
    font-size: 0.95rem;
}

.vs-compleet__badge {
    align-self: center;
    background: var(--vsc-gold);
    color: var(--vsc-ink);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    white-space: nowrap;
}

.vs-compleet__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.vs-compleet__tile {
    display: flex;
    gap: 12px;
    background: var(--vsc-white);
    border: 1px solid var(--vsc-line);
    border-radius: 11px;
    padding: 12px;
}

.vs-compleet__media {
    flex: 0 0 68px;
}

.vs-compleet__img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.vs-compleet__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vs-compleet__name {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
}

.vs-compleet__select {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid var(--vsc-line);
    border-radius: 8px;
    background: var(--vsc-white);
    font: inherit;
    color: var(--vsc-ink);
}

.vs-compleet__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.vs-compleet__stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--vsc-line);
    border-radius: 8px;
    overflow: hidden;
}

.vs-compleet__step {
    width: 30px;
    height: 32px;
    border: 0;
    background: var(--vsc-creme);
    color: var(--vsc-ink);
    font-size: 1.05rem;
    line-height: 1;
    cursor: pointer;
}

.vs-compleet__step:hover {
    background: var(--vsc-gold);
}

.vs-compleet__qty {
    width: 44px;
    height: 32px;
    border: 0;
    border-left: 1px solid var(--vsc-line);
    border-right: 1px solid var(--vsc-line);
    text-align: center;
    font: inherit;
    -moz-appearance: textfield;
    appearance: textfield;
}

.vs-compleet__qty::-webkit-outer-spin-button,
.vs-compleet__qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.vs-compleet__price {
    font-weight: 700;
    color: var(--vsc-gold-h);
    white-space: nowrap;
}

.vs-compleet__price sup {
    font-size: 0.65em;
    font-weight: 600;
    color: var(--vsc-muted);
}

.vs-compleet__add {
    display: inline-block;
    text-align: center;
    padding: 9px 14px;
    border-radius: 9px;
    background: var(--vsc-gold);
    color: var(--vsc-ink);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease;
}

.vs-compleet__add:hover {
    background: var(--vsc-gold-h);
}

.vs-compleet__add.loading {
    opacity: 0.7;
    cursor: default;
}

.vs-compleet__add.added {
    background: #2f7d51;
    color: #fff;
}

.vs-compleet__foot {
    margin: 16px 0 0;
    color: var(--vsc-muted);
    font-size: 0.9rem;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
