/* Contenedor principal */
.cdlpr-swiper-wrapper {
    width: 100%;
    position: relative;
    overflow:hidden; 
}

/* Evitar el salto de altura (Layout Shift) */
.cdlpr-swiper-container.cdlpr-is-loading {
    max-height: 400px;
    overflow: hidden;
}

.cdlpr-swiper-container.cdlpr-is-loading .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
}

/* Estilo de los Slides */
.cdlpr-img-placeholder {
    width: 100%;
    background: #121212;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.cdlpr-swiper-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio:3/4;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.cdlpr-swiper-container .cdlpr-lightbox-trigger:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}
.cdlpr-swiper-container img:hover { transform: scale(1.02); }



/* Botón "Ver todas" con tu amarillo #FFD000 */
.cdlpr-view-all {
    background-color: #14FEF5;
    font-family: "Roboto", Sans-serif;
    font-size: 21px;
    font-weight: 700;
    fill: #000000;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform:uppercase;
    display: inline-block;
    border:none!important;
}

.cdlpr-view-all:hover {
    background-color:#14FEF5;
    color:#000000;
    box-shadow: 0 4px 15px rgba(255, 208, 0, 0.3);
}

.cdlpr-actions {
    margin-top: 25px;
    text-align: center;
}


.cdlpr-swiper-container{
    display:flex;
    width:100%;
    overflow:hidden; position:relative; padding-bottom: 10px;
}

/* --- SIMPLE LIGHTBOX ALL-BLACK (CODELOPER) --- */

/* 1. Fondo (Overlay) Negro Sólido */
.sl-overlay {
    background: #000000 !important;
    opacity: 0.98 !important; /* Casi opaco para inmersión total */
}

/* 2. Limpieza de bordes y sombras */
.sl-wrapper .sl-image {
    border: none !important; /* Fuera bordes blancos */
    box-shadow: 0 0 50px rgba(0, 0, 0, 1) !important;
}

/* 3. Botones de Navegación (Flechas y Cerrar) en Blanco/Gris */
.sl-wrapper .sl-navigation button, 
.sl-wrapper .sl-close {
    color: #ffffff !important;
    opacity: 0.5; /* Más discreto por defecto */
    transition: opacity 0.3s ease;
}

.sl-wrapper .sl-navigation button:hover, 
.sl-wrapper .sl-close:hover {
    color: #ffffff !important;
    opacity: 1; /* Brilla al pasar el mouse */
}

/* 4. Contador (1/100) discreto */
.sl-wrapper .sl-counter {
    color: rgba(255, 255, 255, 0.4) !important;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 1px;
}

/* 5. Spinner de carga en blanco */
.sl-spinner {
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-right-color: #ffffff !important;
}

/* 6. Caption (si existe) en negro translúcido */
.sl-wrapper .sl-caption {
    background: rgba(0, 0, 0, 0.9) !important;
    color: #ffffff !important;
    font-weight: 300;
    padding: 20px !important;
}


