/* Container */
.art-gallery-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    overflow: hidden;
    flex-shrink: 0;
}

/* Carousel Track */
.art-gallery-track {
    display: flex;
    gap: 20px;
    padding: 0 20px;
}

.art-gallery-carousel {
    display: flex;
    gap: 20px;
    animation: scroll 60s linear infinite;
}

.art-gallery-carousel:hover {
    aanimation-play-state: paused;
}

/* Gallery Items */
.art-gallery-item {
    min-width: 100px;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.art-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100px * 11));
    }
}

