/* ========================================
   WAPLE GALLERY - SLIDER
======================================== */

.waple-gallery-slider {
    width: 100%;
    max-width: 1280px;
    margin: 40px auto;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}


/* ========================================
   TRACK
======================================== */

.waple-gallery-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;

    width: 100% !important;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;

    scrollbar-width: none;

    box-sizing: border-box;
}

.waple-gallery-track::-webkit-scrollbar {
    display: none;
}


/* ========================================
   SLIDES
   DESKTOP - 3
======================================== */

.waple-gallery-slide,
.waple-gallery-track > * {

    flex: 0 0 calc((100% - 32px) / 3) !important;

    width: calc((100% - 32px) / 3) !important;
    min-width: calc((100% - 32px) / 3) !important;
    max-width: calc((100% - 32px) / 3) !important;

    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    aspect-ratio: 1 / 1 !important;

    overflow: hidden !important;

    border-radius: 8px;

    background: #f5f5f5;

    box-sizing: border-box !important;
}


/* ========================================
   TODAS LAS IMÁGENES
======================================== */

.waple-gallery-slide img,
.waple-gallery-track > img,
.waple-gallery-track > * img {

    display: block !important;

    width: 100% !important;
    height: 100% !important;

    min-width: 0 !important;
    min-height: 0 !important;

    max-width: none !important;
    max-height: none !important;

    object-fit: cover !important;
    object-position: center center !important;

    aspect-ratio: 1 / 1 !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    box-sizing: border-box !important;

    transition: transform 0.3s ease;
}


/* ========================================
   HOVER
======================================== */

.waple-gallery-slide img:hover,
.waple-gallery-track > img:hover,
.waple-gallery-track > * img:hover {

    transform: scale(1.05);
}

/* ========================================
   FLECHAS
   ESTILO AJI PERU
======================================== */

.waple-gallery-prev,
.waple-gallery-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 20;

    width: 60px;
    height: 80px;

    padding: 0;

    border: none;

    background: transparent;

    color: #ff9800;

    font-size: 70px;

    font-family: Arial, sans-serif;

    font-weight: 300;

    line-height: 1;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: none;

    transition:
        color 0.3s ease,
        transform 0.2s ease;
}


/* ========================================
   FLECHA IZQUIERDA
======================================== */

.waple-gallery-prev {
    left: 0;
}


/* ========================================
   FLECHA DERECHA
======================================== */

.waple-gallery-next {
    right: 0;
}


/* ========================================
   HOVER FLECHAS
======================================== */

.waple-gallery-prev:hover,
.waple-gallery-next:hover {

    color: #e68900;

    background: transparent;

    transform: translateY(-50%) scale(1.08);
}


/* ========================================
   QUITAR CUADRO MORADO / FOCUS
======================================== */

.waple-gallery-prev:focus,
.waple-gallery-next:focus,
.waple-gallery-prev:focus-visible,
.waple-gallery-next:focus-visible {

    outline: none !important;

    border: none !important;

    box-shadow: none !important;

    background: transparent !important;
}


.waple-gallery-prev:active,
.waple-gallery-next:active {

    outline: none !important;

    border: none !important;

    box-shadow: none !important;

    background: transparent !important;
}

/* ========================================
   TABLET
   2 IMÁGENES
======================================== */

@media (max-width: 768px) {

    .waple-gallery-slide,
    .waple-gallery-track > * {

        flex: 0 0 calc((100% - 16px) / 2) !important;

        width: calc((100% - 16px) / 2) !important;
        min-width: calc((100% - 16px) / 2) !important;
        max-width: calc((100% - 16px) / 2) !important;

        height: auto !important;

        aspect-ratio: 1 / 1 !important;
    }


    .waple-gallery-slide img,
    .waple-gallery-track > img,
    .waple-gallery-track > * img {

        width: 100% !important;
        height: 100% !important;

        aspect-ratio: 1 / 1 !important;

        object-fit: cover !important;
    }
}


/* ========================================
   MÓVIL
   1 IMAGEN
======================================== */

@media (max-width: 480px) {

    .waple-gallery-slide,
    .waple-gallery-track > * {

        flex: 0 0 100% !important;

        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;

        height: auto !important;

        aspect-ratio: 1 / 1 !important;
    }


    .waple-gallery-slide img,
    .waple-gallery-track > img,
    .waple-gallery-track > * img {

        width: 100% !important;
        height: 100% !important;

        aspect-ratio: 1 / 1 !important;

        object-fit: cover !important;
    }
}