.customer-logos-container {
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
}

.customer-logos-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.customer-logos-slider .customer-logos-wrapper {
    flex-wrap: nowrap;
    animation: slideLogos 20s linear infinite;
}

@keyframes slideLogos {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.customer-logos-slider:hover .customer-logos-wrapper {
    animation-play-state: paused;
}

.customer-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    width: 200px;
    height: 140px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(50px);
}

.customer-logo-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.customer-logos-slider .customer-logo-item {
    opacity: 1;
    transform: translateX(0);
}

.customer-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: #ccc;
}

.customer-logo-item:hover img {
    transform: scale(1.05);
}

.customer-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.customer-logo-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.no-logo-placeholder {
    font-size: 14px;
    color: #999;
    text-align: center;
    padding: 10px;
}

@media (max-width: 768px) {
    .customer-logos-wrapper {
        gap: 15px;
    }
    
    .customer-logo-item {
        width: 160px;
        height: 110px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .customer-logo-item {
        width: 140px;
        height: 90px;
        padding: 10px;
    }
}