/**
 * @fileoverview Gallery and Swiper Component Styles
 * 
 * This file contains styles for product image galleries, Swiper components,
 * and related gallery functionality used across the application.
 * 
 * Key Features:
 * - Swiper gallery configuration
 * - Product image gallery layouts
 * - Gallery pagination and navigation
 * - Responsive gallery behavior
 */

/* Swiper Gallery Styles */
.swiper-wrapper,
.swiper-slide {
    height: initial;
}

.swiper-pagination {
    position: initial;
}

.swiper-pagination-bullet {
    width: calc(20% - 10px);
    height: initial;
    opacity: 1;
    border-radius: 4px;
    border: 1px solid #eee;
    margin: 5px !important;
    background-color: transparent;
}

.swiper-pagination-bullet-active {
    border-color: var(--themecolor);
}

/* Product Gallery Styles */
.scaem-product-img {
    width: 100%;
    position: relative;
}

.scaem-product-gallery {
    width: calc(20% - 5px);
    margin: 5px;
    margin-left: 0;
}

.scaem-product-gallery.seleccionada,
.scaem-product-gallery:hover {
    border-color: var(--themecolor);
}

.scaem-ayuda-desktop {
    background: var(--terthemecolor);
    color: #fff;
    display: none;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    text-align: center;
}

.scaem-ayuda-desktop > b {
    font-size: 1.05rem;
    display: block;
    text-align: center;
    width: 100%;
}

.scaem-ayuda-desktop > em {
    color: var(--secthemecolor);
}

.scaem-ayuda-desktop > span {
    color: var(--themecolor);
    font-weight: bold;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.scaem-ayuda-desktop > span > b {
    font-size: 1.3rem;
}

/* Responsive Gallery Styles */
@media (max-width: 568px) {
    .scaem-ayuda-desktop {
        position: fixed;
        top: 65px;
        height: auto;
        z-index: 5;
    }

    .scaem-ayuda-desktop.no-mobile {
        display: none;
    }

    .scaem-main-section {
        padding: 20px 0;
    }
}
