/* ===== CAROUSEL STYLING ===== */
.carousel-container {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    margin-top: 50px;
    /* Inalis ang borders dito */
    border: none;
    border-radius: 0;
}

.carousel-track {
    display: flex;
    white-space: nowrap;
    animation: conveyor-belt 30s linear infinite;
}

.carousel-item {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Conveyor Belt Animation */
@keyframes conveyor-belt {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-item {
        width: 120px;
        height: 120px;
        margin: 8px;
    }
}