/* ============================================================
   RC HOMEPAGE – PRODUCT SLIDER (5 produktů + půlka 6.)
   ============================================================ */

/* Holder: ořez pro půlku produktu */
.rc-slider-ready {
    overflow: hidden !important;
}

/* Schovat Shoptet navigaci */
.rc-slider-ready .product-slider-navigation,
.rc-slider-ready [class*="product-slider-nav"] {
    display: none !important;
}

/* Scroll wrapper */
.rc-product-scroll {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    cursor: grab;
}

.rc-product-scroll.rc-grabbing {
    cursor: grabbing;
    scroll-behavior: auto;
}

.rc-product-scroll::-webkit-scrollbar {
    display: none;
}

/* Obálka každého produktu – řídí šířku a mezery */
.rc-product-wrap {
    flex: 0 0 calc(100% / 5.5) !important;
    width: calc(100% / 5.5) !important;
    max-width: calc(100% / 5.5) !important;
    min-width: 0;
    box-sizing: border-box;
    padding: 0 8px;
    scroll-snap-align: start;
}

/* Produkt uvnitř – resetovat Shoptet inline styly, jinak Shoptet CSS styly zachovat */
.rc-product-wrap .product {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    position: static !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    float: none !important;
    box-sizing: border-box !important;
}

/* Obrázky – plná šířka karty, konzistentní výška */
.rc-product-wrap .product .product-image,
.rc-product-wrap .product .product-image a {
    display: block;
    width: 100%;
}

.rc-product-wrap .product .product-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Indikátor pozice */
.rc-slider-indicator {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: #888;
    letter-spacing: 0.04em;
    font-family: var(--rc-font-ui, sans-serif);
    user-select: none;
}

/* Tablet */
@media (max-width: 991px) {
    .rc-product-wrap {
        flex: 0 0 calc(100% / 3.5) !important;
        width: calc(100% / 3.5) !important;
        max-width: calc(100% / 3.5) !important;
    }
}

/* Mobil – JS se na mobilu nespustí, takto CSS neovlivňuje Shoptet slider */
@media (max-width: 991px) {
    .rc-slider-indicator { display: none; }
}
