/* ──────────────────────────────────────────────────────────────
   v2 horizontale productslider (CSS scroll-snap, geen JS-afhankelijkheid)
   Gebruikt door [showProducts] en [relatedProducts].
   ────────────────────────────────────────────────────────────── */

.v2-slider {
    margin: 24px 0;
}

.v2-slider__viewport {
    position: relative;
}

.v2-slider__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* padding/marge zodat box-shadows van kaarten niet worden afgesneden */
    padding: 4px;
    margin: -4px;
}

.v2-slider__track::-webkit-scrollbar {
    display: none;
}

.v2-slider__slide {
    flex: 0 0 calc((100% - 48px) / 3); /* 3 zichtbaar op desktop */
    min-width: 0;
    scroll-snap-align: start;
}

@media (max-width: 1024px) {
    .v2-slider__slide {
        flex-basis: calc((100% - 24px) / 2); /* 2 op tablet */
    }
}

@media (max-width: 600px) {
    .v2-slider__slide {
        flex-basis: 82%; /* ~1 op mobiel, volgende kaart zichtbaar als hint */
    }
}

/* ── pijlen ──────────────────────────────────────────────────── */
.v2-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #2D3E7C;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 150ms linear, opacity 150ms linear;
}

.v2-slider__arrow:hover {
    background: #1f2e65;
}

.v2-slider__arrow[disabled] {
    opacity: 0.35;
    cursor: default;
}

.v2-slider__arrow--prev {
    left: 8px;
}

.v2-slider__arrow--next {
    right: 8px;
}

@media (max-width: 768px) {
    .v2-slider__arrow {
        display: none; /* op mobiel swipet de gebruiker */
    }
}

/* ── stippen ─────────────────────────────────────────────────── */
.v2-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.v2-slider__dots:empty {
    display: none;
}

.v2-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #cdd2e0;
    cursor: pointer;
    transition: background-color 150ms linear;
}

.v2-slider__dot--active {
    background: #2D3E7C;
}

.v2-slider__empty {
    margin: 24px 0;
}

/* ── productkaart ────────────────────────────────────────────── */
.v2-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.v2-product-card__image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    background: #f5f6f8;
}

.v2-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-product-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: #eef0f4;
}

.v2-product-card__body {
    margin-top: 16px;
}

.v2-product-card__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
}

.v2-product-card__price {
    margin-top: 6px;
    font-weight: 600;
}

.v2-product-card__excerpt {
    margin-top: 8px;
    color: #414141;
    font-size: 14px;
    line-height: 1.5;
}
