/* =========================================================
   X. ROLLERPIAC – SEAMLESS APPLE-STYLE CAROUSEL + ÜVEGKÁRTYÁK
   Használathoz: add class-t a modulnak → woo-carousel
========================================================= */

/* Külső wrapper */
.woo-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Az UL legyen mindig egyetlen sorban */
.woo-carousel ul.products {
    display: flex !important;
    flex-wrap: nowrap !important;     /* 🔥 SOHA NEM TÖRHET SORBA */
    gap: 20px !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    will-change: transform !important;
}

/* ========== ÜVEGKÁRTYA DIZÁJN ========== */

.woo-carousel ul.products li.product {
    min-width: 25% !important;     /* 4 termék látszik egyszerre */
    flex: 0 0 25% !important;
    margin: 0 !important;

    position: relative !important;
    border-radius: 40px !important;
    overflow: hidden !important;

    background: radial-gradient(circle at top left,
                rgba(255,255,255,0.24),
                rgba(255,255,255,0.04)) !important;

    background-color: rgba(0,0,0,0.25) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;

    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;

    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.65),
        0 0 30px rgba(0, 0, 0, 0.7) !important;

    padding: 16px !important;
}

/* Felső üvegfény */
.woo-carousel ul.products li.product::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.18) 0%,
        rgba(255,255,255,0.05) 30%,
        rgba(255,255,255,0) 70%
    ) !important;
    opacity: 0.45 !important;
    pointer-events: none !important;
}

/* Tartalom a fény fölött */
.woo-carousel li.product > * {
    position: relative !important;
    z-index: 2 !important;
}

/* Kép lekerekítése */
.woo-carousel li.product img {
    border-radius: 26px !important;
    display: block !important;
    overflow: hidden !important;
    margin-bottom: 10px !important;
}

/* Tipográfia – Rollerpiac */
.woo-carousel li.product .woocommerce-loop-product__title {
    color: #ffffff !important;
    font-weight: 600 !important;
    text-align: left !important;
}

.woo-carousel li.product .price {
    color: #29ff26 !important;
    font-weight: 700 !important;
    margin-top: 4px !important;
    text-align: left !important;
}
