﻿/**
 * Dealers eCommerce Carousel - Con Swiper.js
 */

/* Wrapper Principal */
.dealers-carousel-wrapper {
    width: 100%;
    max-width: 1470px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Título */
.dealers-carousel-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    text-align: center;
    line-height: 1.2;
}

/* Swiper Container */
.dealers-swiper {
    width: 100%;
    padding: 20px 0 60px 0;
}

.dealers-swiper .swiper-wrapper {
    align-items: center;
}

.dealers-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

/* Dealer Items */
.dealer-link,
.swiper-slide > img,
.swiper-slide > span {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 15px;
}

.dealer-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.dealer-link:hover {
    opacity: 0.7;
}

.dealer-logo {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.dealer-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* Pagination (Dots) */
.dealers-swiper .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 30px;
    justify-content: center;

}

.dealers-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #5D5D5D;
    opacity: 1;
    border-radius: 0;
    transition: all 0.3s ease;
}

.dealers-swiper .swiper-pagination-bullet:hover {
    background: #F57D20;
    transform: scale(1.1);
}

.dealers-swiper .swiper-pagination-bullet-active {
    background: #F57D20;
    width: 8px;
    height: 8px;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 991px) {
    .dealers-carousel-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .dealers-carousel-wrapper {
        padding: 40px 20px;
    }
    
    .dealer-logo {
    }
}

/* Mobile */
@media (max-width: 575px) {
    .dealers-carousel-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .dealers-carousel-wrapper {
        padding: 30px 15px;
    }
    
    .dealers-swiper {
        padding: 10px 0 0 0;
    }
    
    .dealer-logo {
        max-width: 200px;
    }
    
    .dealers-swiper .swiper-pagination {
        margin-top: 20px;
    }
}

/* Desktop - Título a la izquierda */
@media (min-width: 1200px) {
    .dealers-carousel-wrapper {
        display: flex;
        align-items: center;
        gap: 40px;
    }
    
    .dealers-carousel-title {
        flex-shrink: 0;
        margin: 0;
        text-align: left;
        min-width: 225px;
    }
    
    .dealers-swiper {
        flex: 1;
        padding: 0;
    }
}
