/**
 * Slider Pro - Estilos
 */

/* Slider Container */
.elevate-slider-wrapper {
    width: 100%;
}

.elevate-slider-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.elevate-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.elevate-slide-template {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Header (Título + Navegación) - Estilo Carrusel Avanzado
   ============================================ */

.elevate-slider-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 30px !important;
}

.elevate-slider-titulo {
    margin: 0 !important;
    font-size: 32px;
    font-weight: 600;
    color: #333333;
}

.elevate-slider-navigation {
    display: flex !important;
    gap: 10px !important;
}

/* Navigation Buttons (for shortcode) */
.elevate-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.elevate-nav-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #2563eb;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.elevate-nav-button:hover {
    background-color: #1d4ed8;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.elevate-nav-button:active {
    transform: scale(0.95);
}

.elevate-nav-button.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.elevate-nav-button svg {
    width: 40px;
    height: 40px;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: block;
    color: #ffffff;
}

.elevate-nav-button svg path {
    stroke: inherit;
}

/* Iconos personalizados */
.elevate-nav-button i {
    font-size: 24px;
    color: inherit;
    line-height: 1;
}

/* Imágenes de navegación */
.elevate-nav-button img.nav-image {
    width: 60%;
    height: 60%;
    object-fit: contain;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .elevate-slider-container {
        height: 400px;
    }
    
    .elevate-nav-button {
        width: 70px;
        height: 70px;
    }
    
    .elevate-nav-button svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .elevate-slider-container {
        height: 300px;
    }
    
    .elevate-nav-button {
        width: 60px;
        height: 60px;
    }
    
    .elevate-nav-button svg {
        width: 25px;
        height: 25px;
    }
    
    .elevate-slider-nav {
        gap: 15px;
    }
}

