.customer-carousel-section {
    padding: 40px 0;
    overflow: hidden;
}

.customer-carousel-section .section-label {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 10vw;
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
}

.carousel-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll-carousel 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-card {
    flex-shrink: 0;
    width: 420px;
    height: 220px;
    background: #ffffff;
    border-radius: 14px;
    border: 2px solid #e9ecef;
    display: flex;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.carousel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.carousel-card-image {
    width: 45%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.carousel-card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.carousel-card-info {
    width: 55%;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    font-family: Arial, sans-serif;
}

.carousel-card-info .meta-row {
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-card-info .meta-row strong {
    color: #111;
}

/* -------- Mobile -------- */
@media (max-width: 768px) {
    .customer-carousel-section {
        padding: 25px 0;
    }

    .customer-carousel-section .section-label {
        font-size: 18px;
        margin-left: 5vw;
        margin-bottom: 20px;
    }

    .carousel-card {
        width: 300px;
        height: 180px;
    }

    .carousel-card-info {
        padding: 15px 12px;
        gap: 5px;
    }

    .carousel-card-info .meta-row {
        font-size: 12px;
    }

    .carousel-track {
        gap: 24px;
    }
}
