.conveyor-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.conveyor-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    background: transparent;
    padding: 20px 0;
    position: relative;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
}

.conveyor-container::-webkit-scrollbar { 
    display: none; 
}

.conveyor-container:active { 
    cursor: grabbing; 
}

.conveyor-belt {
    display: flex;
    width: fit-content;
    animation: slide 28s linear infinite;
    will-change: transform;
}

.conveyor-belt img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 20px;
    border-radius: 50px;
    border: 5px solid black;
    flex-shrink: 0;
    pointer-events: none;
    draggable: false;
}

@keyframes slide {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(calc(-1 * var(--set-width)), 0, 0); }
}

/* Visual hint */
.scroll-hint {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.3s;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .conveyor-belt img {
        width: 150px;
        height: 187.5px;
        margin: 0 12px;
        border-radius: 25px;
        border: 3px solid black;
    }
    
    .scroll-hint {
        font-size: 13px;
        padding: 6px 14px;
    }
}