/* Contenedor Externo */
.supremos-reviews-wrapper {
    position: relative;
    padding: 0 70px;
    max-width: 1400px;
    margin: 0 auto;
    --arrow-offset: 55px;
}

.supremos-reviews-slider {
    padding: 40px 20px;
}

.splide__track {
    overflow: hidden;
    padding: 40px 0;
}

/* Reset estilos del tema que afectan los slides */

.supremos-reviews-wrapper .splide__list {
    margin: 0;
    padding: 0;
}

.supremos-reviews-wrapper .splide__slide {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

/* Tarjeta Estilo Premium */
.supremos-review-card {
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: "Lato", sans-serif;
    box-sizing: border-box;
    margin: 0;
    width: 100% !important;
    /* Efecto de desplazamiento */
    transform: scale(0.96);
    opacity: 0.72;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.4s ease;
}

/* Card central activa */
.splide__slide.supremos-center .supremos-review-card {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

/* Estrellas */
.supremos-review-stars {
    color: #f5a623;
    font-size: 22px !important;
    font-weight: 600 !important;
}

.supremos-review-stars .star {
    margin-right: -6px;

}

/* Texto de la Reseña */
.supremos-review-content {
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 30px;
    flex-grow: 1;
    font-weight: 400;
}

/* Línea Divisoria y bloque de autor */
.supremos-review-author-box {
    display: flex;
    align-items: center;
    border-top: 1px solid #eeeeee;
    padding-top: 25px;
    margin-bottom: 20px;
    margin-top: auto;
}

.supremos-review-avatar {
    width: 46px;
    height: 46px;
    background-color: #e8f7f5;
    color: #1abc9c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-right: 15px;
}

.supremos-review-author-name {
    font-weight: 700;
    font-size: 13px;
    color: #000;
    margin-bottom: 2px;
}

.supremos-review-author-meta {
    font-size: 12px;
    color: #999;
}

/* Tag de Producto (Estilo Píldora) */
.supremos-review-product-tag {
    background-color: #e8f7f5;
    color: #1abc9c;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    display: inline-block;
    align-self: flex-start;
    text-transform: none;
}

/* Flechas — posición controlada por CSS variable */
.splide__arrow {
    background: #fff;
    width: 50px;
    height: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    opacity: 1;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.splide__arrow:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.08);
}

.splide__arrow--prev {
    left: calc(-1 * var(--arrow-offset, 35px));
}

.splide__arrow--next {
    right: calc(-1 * var(--arrow-offset, 35px));
}

.splide__arrow svg {
    fill: #333;
    width: 16px;
    height: 16px;
}

/* Paginación / Bullets */
.splide__pagination {
    bottom: 30px;
    gap: 5px;
    flex-wrap: nowrap;
}

.splide__pagination__page {
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    padding: 0;
    border: none;
    background: #ddd;
    border-radius: 50%;
    opacity: 1;
    transition: background 0.3s ease, width 0.3s ease;
}

.splide__pagination__page.is-active {
    background: #1abc9c;
    width: 22px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .supremos-reviews-wrapper {
        padding: 0 20px;
    }

    .splide__arrow {
        display: none;
    }
}