.section-bg {
    margin-top: 5%;
    padding-top: 2%;
    padding-bottom: 4%;
}

.carousel-container {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

/* Card */
.card {
    flex: 0 0 220px;
    margin-right: 10px;
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    border: 5px solid white;
    background: #ddd;
}

.card-link {
    /* text-decoration: none;
    color: inherit; */

    flex: 0 0 220px;
    /* margin-right: 20px; */
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    /* border: 5px solid white;
    background: #ddd; */
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.card-price {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #ffe6e6;
    font-size: 13px;
    font-weight: bold;
}

/* Indicators */
.indicators {
    text-align: center;
    margin-top: 15px;
}

.indicators .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.indicators .dot.active {
    background: #333;
}



