.whole-carousel {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}
.carousel-left,
.carousel-right {
    width: 30%;
    height: 200px;
}
.carousel-left img,
.carousel-right img {
    width: 100%;
    filter: blur(2px);
}
.carousel-wrapper {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.carousel-container {
    width: 80%;
    max-width: 1200px;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease; /* smoother */
    will-change: transform;
}
.image-container {
    flex: 0 0 100%; /* Each image container takes full width of the carousel */
    height: 100%;
    position: relative;
    overflow: hidden;
}
.mobile-img {
    display: none;
}
.order-now {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 15%;
    min-width: 80px;
}
.order-now img {
    width: 100%;
}
.order-now button {
background-color: red;
    color: white;    width: 110%;
    height: 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    transition: background-color 0.4s ease, color 0.4s ease;
    cursor: pointer;
}
.order-now button:hover {
    background-color: var(--main-color);
    color: white;
}

.banner {
    width: 100%;
    height: 100%;
    object-fit: fill;
    position: relative;
    z-index: 1;
}
.carousel-container {
    touch-action: pan-y;
}
.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: rgba(235, 27, 27);
}
@media (max-width: 768px) {
    .carousel-wrapper {
        height: 320px;
    }

    .order-now {
        width: 20%;
    }
    .carousel-left,
    .carousel-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        height: 520px;
    }
    .carousel-container {
        width: 90%;
    }
    .banner,
    .small-img {
        display: none;
    }
    .order-now button {
        display: block;
        height: 30px;
        font-size: 14px;
        position: absolute;
        bottom: 10px;
        width: 40%;
    }
    .order-now {
        left: 0;
        width: 100%;
    }
    .mobile-img {
        display: block;
        min-height: 470px;
        width: 80%;
    }
}
