/* ==========================================================================
   Gamma Slider B (Overlay) - Estilos Nativos y Compatibilidad Genesis
   ========================================================================== */
:root {
    --gamma-font-base: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --gamma-font-headings: 'Barlow Condensed', sans-serif;
}

:root body .gsb-swiper-container {
    width: 100%;
    height: var(--gsb-h, 550px);
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

:root body .gsb-swiper-container .swiper-wrapper {
    height: 100%;
}

:root body .gsb-swiper-container .gsb-slide {
    height: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

:root body .gsb-swiper-container .gsb-slide-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    box-sizing: border-box;
    gap: 50px;
    padding: 20px 80px;
}

:root body .gsb-swiper-container .gsb-content-box {
    flex: 1;
    max-width: 600px;
    max-height: calc(100% - 40px);
    overflow-y: auto;
    padding: 45px;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    z-index: 20;
}

/* Scrollbar interna estilizada */
:root body .gsb-swiper-container .gsb-content-box::-webkit-scrollbar { 
    width: 4px; 
}
:root body .gsb-swiper-container .gsb-content-box::-webkit-scrollbar-thumb { 
    background: rgba(0, 0, 0, 0.25); 
    border-radius: 4px; 
}

:root body .gsb-swiper-container .gsb-img-col {
    flex-shrink: 0;
    width: 350px;
    height: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-sizing: border-box;
}

:root body .gsb-swiper-container .gsb-img-col a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

:root body .gsb-swiper-container .gsb-img-col img {
    display: block;
    height: 100%;
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    background: #ffffff;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

/* TIPOGRAFÍA BASE */
:root body .gsb-swiper-container .gsb-badge {
    font-family: var(--gamma-font-base);
    font-size: 0.75em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

:root body .gsb-swiper-container .gsb-title {
    font-family: var(--gamma-font-headings);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

:root body .gsb-swiper-container .gsb-subtitle {
    font-family: var(--gamma-font-headings);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.3;
    font-weight: 600;
    margin: 0 0 16px 0;
}

:root body .gsb-swiper-container .gsb-review {
    font-family: var(--gamma-font-base);
    font-size: 1.1rem;
    line-height: 1.55;
    font-weight: 400;
    margin: 0;
}

/* CONTROLES NAVEGACIÓN SWIPER */
:root body .gsb-swiper-container .swiper-button-next,
:root body .gsb-swiper-container .swiper-button-prev {
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 100%;
    top: 0;
    margin-top: 0;
    z-index: 50;
}
:root body .gsb-swiper-container .swiper-button-prev { left: 0; }
:root body .gsb-swiper-container .swiper-button-next { right: 0; }

:root body .gsb-swiper-container .swiper-button-prev::after,
:root body .gsb-swiper-container .swiper-button-next::after { 
    font-size: 28px; 
    font-weight: bold; 
}
:root body .gsb-swiper-container .swiper-pagination { bottom: 15px; z-index: 10; }
:root body .gsb-swiper-container .swiper-pagination-bullet { background: #ffffff; opacity: 0.5; }
:root body .gsb-swiper-container .swiper-pagination-bullet-active { background: #ffffff; opacity: 1; }

/* ==========================================================================
   RESPONSIVE (BREAKPOINTS ALINEADOS CON GENESIS 1024px / 768px)
   ========================================================================== */
@media (max-width: 992px) {
    :root body .gsb-swiper-container {
        height: auto !important;
        background-attachment: scroll !important;
    }
    :root body .gsb-swiper-container .swiper-wrapper { height: auto; }
    :root body .gsb-swiper-container .gsb-slide { height: auto; }
    :root body .gsb-swiper-container .gsb-slide-inner {
        flex-direction: column;
        padding: 50px 30px 60px 30px;
        text-align: center;
        height: auto;
        gap: 30px;
    }
    :root body .gsb-swiper-container .gsb-content-box {
        max-width: 100%;
        width: 100%;
        max-height: none;
        overflow-y: visible;
    }
    :root body .gsb-swiper-container .gsb-img-col {
        width: 100%;
        order: -1;
        height: auto;
    }
    :root body .gsb-swiper-container .gsb-img-col img {
        height: auto;
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    :root body .gsb-swiper-container .gsb-slide-inner { padding: 35px 20px 50px 20px; }
    :root body .gsb-swiper-container .gsb-img-col img { max-width: 180px; }
    :root body .gsb-swiper-container .swiper-button-next,
    :root body .gsb-swiper-container .swiper-button-prev { display: none !important; }
}