/* Store Services Carousel - Modificado para flechas flotantes y bullets */
.store-services-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 0px;
}

/* Título principal */
.store-services-carousel-container .main-section-title {
    text-align: center;
    margin-bottom: 16px;
    font-size: 28px;
    color: #020B28;
    font-weight: 600;
}

/* Subtítulo global */
.store-services-carousel-container .global-subtitle {
    text-align: center;
    max-width: 732px;
    margin: 0 auto 32px auto;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

/* Swiper */
.store-services-swiper {
    position: relative;
    overflow: hidden;
}

/* Cada slide */
.store-services-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.store-services-swiper .slide-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 965px; /* Ajusta a gusto */
    width: 100%;
    background-color: #fff; /* O transparente según tu diseño */
    border-radius: 10px;
    overflow: hidden;
}

/* Imagen */
.store-services-swiper .slide-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}
.store-services-swiper .slide-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Contenido textual del slide */
.store-services-swiper .slide-content {
    padding: 20px;
    text-align: left;
}
.service-slide-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}
.service-slide-subtitle {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
}

/* Flechas flotantes */
.store-services-carousel-container .swiper-button-prev,
.store-services-carousel-container .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: #004381; /* Círculo azul */
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.store-services-carousel-container .swiper-button-prev {
    left: 20px;
}
.store-services-carousel-container .swiper-button-next {
    right: 20px;
}

/* Quitar flechita por defecto de Swiper y usar iconos custom si gustas */
.store-services-carousel-container .swiper-button-prev::after,
.store-services-carousel-container .swiper-button-next::after {
    display: none;
}



/* Paginación con bullets */
.store-services-carousel-container .swiper-pagination {
    text-align: center;
    position: static;
    margin-top: 20px; /* Ajusta para separarlos del slider */
}
.store-services-carousel-container .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
    transition: background 0.3s;
    border-radius: 50%;
}
.store-services-carousel-container .swiper-pagination-bullet-active {
    background: #004381;
}
