/* Estilos para controles de carousel mejorados */
.carousel-controls-bottom {
    padding: 20px 0;
}

.btn-carousel-nav {
    background: linear-gradient(135deg, #E64A19, #FF7043);
    border: none;
    border-radius: 50px;
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 74, 25, 0.3);
    min-width: 120px;
    justify-content: center;
}

.btn-carousel-nav:hover {
    background: linear-gradient(135deg, #D84315, #E64A19);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 74, 25, 0.4);
    color: white;
}

.btn-carousel-nav:active {
    transform: translateY(0);
}

.btn-carousel-nav i {
    font-size: 16px;
}

/* Indicadores personalizados */
.carousel-indicators-custom {
    align-items: center;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #E64A19;
    background: transparent;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator-dot.active,
.indicator-dot:hover {
    background: #E64A19;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-carousel-nav {
        padding: 10px 20px;
        font-size: 12px;
        min-width: 100px;
    }
    
    .btn-carousel-nav .btn-text {
        display: none !important;
    }
    
    .btn-carousel-nav i {
        font-size: 14px;
    }
    
    .carousel-controls-bottom {
        gap: 15px !important;
        padding: 15px 0;
    }
    
    .indicator-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .btn-carousel-nav {
        padding: 8px 16px;
        min-width: 80px;
    }
    
    .carousel-controls-bottom {
        gap: 10px !important;
    }
}

/* Animación suave para las transiciones */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Mejora visual para el contenedor del carousel */
#carouselOfertasWeb {
    border-radius: 15px;
    overflow: hidden;
}

#carouselOfertasWeb .carousel-inner {
    border-radius: 15px;
}