.new-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

.new-carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.new-carousel-slide {
    flex: 0 0 25%; /* 25% width for 4 items */
    max-width: 25%;
    padding: 0 10px;
    box-sizing: border-box;
}

.new-carousel-slide img,
.new-carousel-slide video {
    width: 100%;
    height: 400px; /* Default height for desktop */
    object-fit: cover;
    border-radius: 8px;
}

.new-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #563a2c;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-carousel-button:hover {
    background: #C19D60;
}

.new-carousel-button.prev {
    left: 0;
}

.new-carousel-button.next {
    right: 0;
}

/* Responsive styles */
@media (max-width: 576px) {
    .new-carousel-slide {
        flex: 0 0 100%; /* 100% width for 1 item */
        max-width: 100%;
    }
    .new-carousel-slide img,
    .new-carousel-slide video {
        height: 450px; /* Height for mobile */
    }
}