:root {
    --featured-bg: #007bf3; 
}

.dark-mode {
    --featured-bg: #0084fe;  
}

.dealsFeaturedContainer {
    background: linear-gradient(90deg, #0048b3 0.36%,  #0085ff 99.27%);
    height: 310px; /* Change to auto for responsive height */
    max-width: 100%; /* Use percentage for full width responsiveness */
    margin: 0 auto; 
    padding: 0.5rem 1rem; 
    border-radius: 10px; 
    margin: 1rem 1.25rem 2rem 0.75rem; 
    overflow: hidden;
    box-sizing: border-box; /* Include padding in total width/height */
}

.featuredDealsHeader {
    color: #f3f3f3;
    font-size: 1.45rem;
    font-weight: 700; 
}

/* .dealsH {
    opacity: 1; 
    transition: opacity 0.23s ease-in-out; 
}

.dealsH:hover {
    opacity: 0.7; 
} */

.regularDealsHeader {
    color: var(--dark-text);
    font-weight: 600; 
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-left: 2rem;
}

.outLine {
    width: 200px; 
    background-color:#ffffff;
    border-radius: 4px;
    margin: 10px;
    flex-shrink: 0;
    height: 240px;
}

.featured_deal_image {
    width: 100%;
    padding-top: 50.25%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px 10px 0px 0px;
    position: relative;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    padding: 3px 12px 5px 12px;
    z-index: 10;
    border-radius: 50%;
    border: 3px solid white; 
    opacity: 0.6; 
    transition: opacity 0.22s ease-in-out; 
}

.arrow:hover {
    opacity: 1; 
}

.left-arrow { 
    left: 0px;
}

.right-arrow {
    right: 0px;
}

.featuredSliderWrapper {
    position: relative;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    overflow: hidden;
    width: 100%; 
    height: 82%; 
}

.featuredSlider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    transform: translateX(0);
    width: 100%; 
    height: 100%; 
}

.slider_businessName {
    font-size: 0.875rem;
    font-weight: 400;
    color: #212121;
    padding-left: 0.5rem;
    padding-top: 0.5rem;
}

.slider_detail_description {
    font-size: 1rem;
    font-weight: 700;
    color: #006add;
    padding-top: 1rem;
    opacity: 1;
    transition: text-decoration 0.32sease-in-out;
}

#dealsLocationHeader {
    margin-top: 1rem;
}

.featHeaderAndCallToAction {
    display: flex; 
    justify-content: space-between; 
}

.doYouWantToFeatureP {
    font-weight: 500;
    font-size: 0.875rem;
    font-family: 'Inter'; 
    color: #f3f3f3;
}

.doYouWantToFeatureButt {
    font-family: 'Inter';
    background-color: transparent;
    outline: none;
    border-radius: 0.3rem;
    border: none;
    outline: none;
    color: #f3f3f3;
    font-weight: 800;
}

@media screen and (max-width: 591px) {
    .hotDealsInCity {
        margin-left: 1.25rem; 
    }

    .featHeaderAndCallToAction {
        display: block; 
    }
}

@media screen and (min-width: 592px) and (max-width: 768px) {
    .hotDealsInCity {
        margin-left: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .dealsFeaturedContainer {
        margin: 0.25rem 0rem 0.25rem 0rem; 
        border-radius: 0px;
        height: 300px; 
        margin-top: 0.65rem; 
    }

    .regularDealsHeader {
        margin-left: 0.95rem;
    } 

    .outLine {
        width: 190px; 
        height: 215px;
    }

    .featuredDealsHeader {
        font-size: 1.25rem; 
    }

    .hotDealsInCity {
        margin-top: 1.15rem;
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 769px) {
    .dealsFeaturedContainer {
        margin: 0.5rem 2rem 0.35rem 1.5rem;
    }
}