/**
 * ED Brands - Front-office Styles
 *
 * @author    Energiedin
 * @copyright 2024 Energiedin
 * @license   Commercial
 */

/* Section principale */
.edbrands-section {
    padding: 50px 0;
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background-size: cover;
    background-color: #FB9708;
}

/* Container des marques */
.edbrands-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Item marque */
.edbrand-item {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: all 0.3s ease;
    outline: 0;
}

.edbrand-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.edbrand-item:hover {
    transform: scale(1.05);
}

/* Logo */
.edbrand-logo {
    max-width: 210px;
    width: auto;
    height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.edbrand-item:hover .edbrand-logo {
    opacity: 0.8;
}

/* Nom de marque (fallback si pas d'image) */
.edbrand-name {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 767px) {
    .edbrands-section {
        padding: 15px 0;
    }

    .edbrands-list {
        gap: 20px;
    }

    .edbrand-logo {
        max-height: 45px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .edbrands-list {
        gap: 15px;
    }

    .edbrand-logo {
        max-height: 35px;
        max-width: 80px;
    }
}
