/**
 * Carrusel de Colecciones La Bonté
 * Estilos CSS
 */

.labonte-carousel-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--labonte-bg-start) 0%, var(--labonte-bg-end) 100%);
}

.labonte-container {
    max-width: 1200px;
    margin: 0 auto;
}

.labonte-title {
    text-align: center;
    color: var(--labonte-primary);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.labonte-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--labonte-primary), var(--labonte-secondary));
    border-radius: 2px;
}

.labonte-carousel-container {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.labonte-carousel-wrapper {
    overflow: hidden;
    padding: 20px 60px;
}

.labonte-carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
}

.labonte-coleccion-item {
    flex: 0 0 calc(25% - 19px);
    background: var(--labonte-card-bg);
    padding: 30px 20px;
    border-radius: 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.labonte-coleccion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.labonte-coleccion-item:hover::before {
    left: 100%;
}

.labonte-coleccion-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--labonte-primary), var(--labonte-secondary));
    transition: width 0.4s ease;
}

.labonte-coleccion-item:hover::after {
    width: 100%;
}

.labonte-coleccion-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.2);
    background: linear-gradient(135deg, var(--labonte-card-bg) 0%, #f8f9fa 100%);
}

.labonte-coleccion-item h3 {
    color: var(--labonte-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0 0 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.labonte-coleccion-item:hover h3 {
    color: var(--labonte-primary);
    transform: scale(1.05);
}

/* Botones de navegación */
.labonte-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--labonte-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.labonte-carousel-btn:hover {
    background: var(--labonte-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.labonte-carousel-btn.labonte-prev {
    left: 10px;
}

.labonte-carousel-btn.labonte-next {
    right: 10px;
}

/* Indicadores */
.labonte-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.labonte-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.labonte-indicator.active {
    background: var(--labonte-primary);
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
    .labonte-coleccion-item {
        flex: 0 0 calc(33.333% - 17px);
    }
}

@media (max-width: 768px) {
    .labonte-title {
        font-size: 2rem;
    }

    .labonte-carousel-wrapper {
        padding: 20px 50px;
    }

    .labonte-coleccion-item {
        flex: 0 0 calc(50% - 13px);
    }

    .labonte-coleccion-item h3 {
        font-size: 0.95rem;
    }

    .labonte-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .labonte-coleccion-item {
        flex: 0 0 100%;
    }

    .labonte-carousel-wrapper {
        padding: 20px 45px;
    }
}