/* =========================================================
   VBP Mobile Product Slider — mobile only (≤ 768px)
   ========================================================= */

/* Hide the whole wrapper on desktop */
.vbp-mobile-slider-wrap {
    display: none;
}

@media (max-width: 768px) {

    .vbp-mobile-slider-wrap {
        display: block;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    /* ── Slides ── */
    .vbp-slide {
        outline: none;
        text-align: center;
    }

    .vbp-slide-img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-height: 420px;
        object-fit: contain;
        margin: 0 auto;
    }

    /* ── Arrows ── */
    .vbp-slick-prev,
    .vbp-slick-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(0, 0, 0, 0.45);
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        font-size: 26px;
        line-height: 1;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s ease;
    }

    .vbp-slick-prev:hover,
    .vbp-slick-next:hover {
        background: rgba(0, 0, 0, 0.75);
    }

    .vbp-slick-prev {
        left: 8px;
    }

    .vbp-slick-next {
        right: 8px;
    }

    /* ── Slide counter  e.g. "2 / 5" ── */
    .vbp-slide-counter {
        text-align: center;
        font-size: 13px;
        color: #666;
        margin: 6px 0 0;
        line-height: 1;
    }
}
