.promotion-section {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 10px;
    background-color: #f9f9f9; /* Default background color */
    justify-content: center;
    width: 100%; /* Ensure full width of the parent */
    box-sizing: border-box; /* Include padding in width calculation */
    scroll-snap-type: x mandatory; /* Enable scroll snapping */
}

.promotion-card {
    flex: 0 0 auto;
    border: none; /* Removed border */
    padding: 20px;
    width: 300px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    position: relative;
    scroll-snap-align: center; /* Snap cards to the center */
}

.promotion-images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.promotion-images img {
    max-width: 90%; /* Ensure images fit within the container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px;
}

@media (max-width: 768px) {
    .promotion-section {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }

    .promotion-card {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }

    .promotion-images {
        justify-content: center; /* Center images in the container */
    }
}

/* Optional: Custom background color for promotion-section */
.custom-bg-color {
    background-color: #e0f7fa; /* Change to desired color */
    background-color: #f6fafa86; /* Change to desired color */
}
