/* ===========================================
   BRANDS CAROUSEL - BRANDURI DE INCREDERE
   =========================================== */

.branduri-de-incredere {
    position: relative;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 5px;
}

.daikin-logo-1-icon {
    width: 152px;
    position: relative;
    max-height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.mitsubishi-logo-1-icon {
    width: 188px;
    position: relative;
    max-height: 100%;
    object-fit: cover;
}

.fujitsu-logo-1-icon {
    width: 84px;
    position: relative;
    max-height: 100%;
    object-fit: cover;
}

.change-to-your-logos-here-child {
    width: 207.3px;
    position: relative;
    max-height: 100%;
}

.vector-icon {
    width: 100px;
    position: relative;
    max-height: 100%;
}

.layer1-icon {
    width: 202px;
    position: relative;
    max-height: 100%;
}

.immergas-logo-1-icon {
    width: 179px;
    position: relative;
    max-height: 100%;
    object-fit: cover;
}

.tesy-logo-1-icon {
    width: 149px;
    position: relative;
    max-height: 100%;
    object-fit: cover;
}

.yamato-logo-1-icon {
    width: 151px;
    position: relative;
    max-height: 100%;
    object-fit: cover;
}

.group-icon {
    width: 179.2px;
    position: relative;
    max-height: 100%;
}

.clip-group-icon {
    width: 153px;
    position: relative;
    max-height: 100%;
}

.ecotermal-logo-1-icon {
    width: 137px;
    position: relative;
    max-height: 100%;
    object-fit: cover;
}

.saniflo-logo-1-icon {
    width: 180px;
    position: relative;
    max-height: 100%;
    object-fit: cover;
}

.logo-box-icon {
    width: 115px;
    height: 36px;
    object-fit: contain;
    position: relative;
}

/* CONTAINER PRINCIPAL - BRANDS CAROUSEL */
.branduri-carousel {
    width: 100%;
    position: relative;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 0px;
    box-sizing: border-box;
    gap: 25px;
    text-align: left;
    font-size: 30px;
    color: #2034ad;
    font-family: Poppins;
}

/* CONTAINER PENTRU SLIDER */
.slider-horizontal {
    width: 90%;
    max-width: 1800px;
    position: relative;
    height: 36px;
    overflow: hidden;
    mask: linear-gradient(90deg, transparent 0%, white 8%, white 92%, transparent 100%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, white 8%, white 92%, transparent 100%);
}

/* CONTAINER PENTRU LOGO-URI */
.change-to-your-logos-here {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    height: 36px;
    /* Animația va fi controlată de JavaScript */
}

/* ANIMAȚIA PENTRU SCROLLING INFINIT */
@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--single-set-width, 500px)));
    }
}

/* LOGO-URI - STILURI GENERALE */
.change-to-your-logos-here img {
    transition: all 0.3s ease;
    filter: grayscale(0.2) opacity(0.9);
    cursor: pointer;
    flex-shrink: 0;
    height: 36px;
    width: auto;
    object-fit: contain;
}

.change-to-your-logos-here img:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.08);
    z-index: 10;
    position: relative;
}

/* PAUSE LA HOVER */
.branduri-carousel:hover .change-to-your-logos-here {
    animation-play-state: paused !important;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) {
    .branduri-de-incredere {
        font-size: 26px;
    }
    
    .change-to-your-logos-here {
        gap: 38px;
    }
    
    .slider-horizontal {
        width: 95%;
        max-width: 1400px;
        height: 32px;
    }
    
    .change-to-your-logos-here {
        height: 32px;
    }
    
    .change-to-your-logos-here img {
        height: 32px;
    }
    
    .logo-box-icon {
        width: 102px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .branduri-de-incredere {
        font-size: 22px;
    }

    .change-to-your-logos-here {
        gap: 25px;
    }

    .slider-horizontal {
        width: 100%;
        max-width: 100%;
        height: 28px;
        mask: linear-gradient(90deg, transparent 0%, white 5%, white 95%, transparent 100%);
        -webkit-mask: linear-gradient(90deg, transparent 0%, white 5%, white 95%, transparent 100%);
    }

    .change-to-your-logos-here {
        height: 28px;
    }

    .change-to-your-logos-here img {
        height: 28px;
    }

    .logo-box-icon {
        width: 85px;
        height: 28px;
    }

    .branduri-carousel {
        padding: 0;
        gap: 18px;
        margin: 25px 0;
    }
} 