.navContainer li, .menu-links li, .mob-menu ul li {
    color: #FFFBDE !important;
}

.container{
    /* height: 100%; */
    background: radial-gradient(39.1% 83.21% at 57.45% 46.9%, rgba(88, 85, 85, 0) 0%, rgba(0, 0, 0, 0) 35.5%, rgba(0, 0, 0, 0.2) 100%) , #749BC2;
        /* z-index: -10; */
        
}

.content{
    display: flex;
    flex-direction: column;
    /* gap: 5vh; */
}

.content h2{
font-family: poppins;
color: #FFFBDE;
font-weight: 400;
font-size: 2.9rem;
text-align: center;
margin-top: 7vh;
margin-bottom: 6vh;
}

/* today section  */

.product-slider-section{
    background-color: #FFFBDE;
    margin-left: 2rem;
    border-radius: 2rem 0 0 2rem;
    
    display: flex;
    flex-direction: column;
    padding: 1.6rem 0;
    padding-left: 6.8rem;
}

.product-slider-section .today{
    font-family: poppins;
    font-weight: 600;
    font-size: 0.7rem;
    border-left: 0.85rem solid #4682A9;
    color: #4682A9;
    padding: 0.3rem 0;
    padding-left: 0.65rem;
   
    /* seemab meri jan xoxo */
}

/* flash sale section  */

.sales-row {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
}


.sales{
    display: flex;
    gap: 3.2rem;
    align-items: center;
    
}

.sales h3{
    font-family: inter;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    
}
.sales .sale-timer{
    position: relative;
    font-family: inter;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
}
.sales .sale-timer::before{
    content: "Days Hours Minutes Seconds";
    position: absolute;
    top: -0.8rem;
    left: 0;
    font-size: 0.5rem;
    letter-spacing: 0;
    font-weight: 600;
    word-spacing: 1.8rem;
    width: 110%;
}
.sales .sale-timer span{
    color: #e07575;
    font-weight: 600;
    position: relative;
    top: -0.3rem;
}

/* slider btn in sales row  */

.slider-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-right: 4.7rem;
}
.slider-btn div{
    padding: 0.4rem 0.6rem;
    border-radius: 100%;
    background-color: #F5F5F5;
    cursor: pointer;
    transition: 0.2s all ease;
    
}
.slider-btn div:hover{
    background-color: rgb(60, 60, 60);
    color: white;
}
.slider-btn div i{
    font-size: 0.9rem;
}

/* product card section  */


.slider-products{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 4vw;
    
    -ms-overflow-style: none;  
    scrollbar-width: none;
    
}

.slider-products::-webkit-scrollbar {
    display: none;
  }

.slider-products a{
    color: black;
    text-decoration: none;
}


.product{
    display: flex;
    flex-direction: column;
    font-family: poppins;
    font-weight: 500;
}

.product-img{
    position: relative;
    width: 11.3rem;
    height: 10.5rem;
    background-color: #F5F5F5;
    border-radius: 3%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    
}

  

.product-img .discount{
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-family: poppins;
    font-weight: 400;
    font-size: 0.5rem;
    color: #FAFAFA;
    padding: 0.17rem 0.45rem;
    border-radius: 10%;
    background-color: #4682A9;
}

.product-img .icons{
        color: white;

    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.product-img .icons i{
    padding: 0.35rem;
    background-color: #4682A9;
    border-radius: 100%;
    font-size: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s all ease;
    cursor: pointer;
}

.product-img .icons i:hover{
    background-color: #5a9bd6;
    color: white;
}

.product-img .add-to-cart{
    position: absolute;
    bottom: 0;
    width: 100%;
    border: none;
    background-color: #4682A9;
    
    height: 1.8rem;
    color: white;
    font-family: poppins;
    font-weight: 500;
    font-size: 0.7rem;
    transition: 0.2s all ease;
    cursor: pointer;
}

.product-img .add-to-cart:hover{
    background-color: #5a9bd6;
    /* color: black; */
}

.product .product-name{
    font-size: 0.7rem;
    margin-top: 0.6rem;
}
.product .product-price{
    font-size: 0.7rem;
    word-spacing: 0.4rem;
    color: #59A757;
    margin: 0.2rem 0;
    
}

.product .product-price s{
    color: rgba(0, 0, 0, 0.500);
}

.rating {
    display: flex;
    gap: 0.15rem;
    /* justify-content: center; */
    align-items: center;
    margin-left: 0.1rem;
}

.rating i{
    font-size: 0.6rem;
    color: rgba(0, 0, 0, 0.250);
}
.rating .checked{
    color: #FFAD33;
}

.review-count{
    font-family: poppins;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.500);
    font-size: 0.6rem;
    margin-left: 0.3rem;
}

/* all products section  */

.all-products-section{
    background-color: #FFFBDE;
    margin-top: 15vh;
    padding: 3.2rem 5.3rem;
    padding-right: 5rem;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
}

.all-products-section h2{
    color: #4682A9;
    text-align: left;
    margin: 0;
}

.sort{
    background-color: #749BC2;
    color: white;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    /* width: 10rem; */
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-family: poppins;
    font-weight: 400;
    align-self: flex-end;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.1s all ease;
}
.sort:hover{
    background-color: rgb(60, 60, 60);
    color: white;
}

.all-products{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    gap: 6rem;
    margin-top: 3rem;
}
.all-products a{
    color: black;
    text-decoration: none;
}

.all-products .product{
  
        background: rgba(255, 255, 255, 0.1); /* Transparent white */
        border: 1px solid rgba(255, 255, 255, 0.2); /* Optional subtle border */
        backdrop-filter: blur(10px); /* Glossy blur effect */
        -webkit-backdrop-filter: blur(10px); /* For Safari support */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Optional depth */
        border-radius: 1rem;
        color: white; /* For light-on-dark UI */
  
   
    padding: 1.2rem 1.8rem;
    padding-bottom: 1rem;
   
    transition: 0.2s all ease;
    cursor: pointer;
    width: 300px;
}

.all-products .product:hover{
transform: scale(1.03);
}

.all-products .product-name{
    color: #7B7B7B;
    font-size: 1rem;
}

.all-products .product-img{
    width: 15.2rem;
    height: 15.7rem;
    border-radius: 0.2rem;
}

/* service section */

.services{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10rem 0;
    gap: 4rem;
}

.services .service{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
}

.services span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    padding: 1.2rem;
    border-radius: 100%;
    background-color: black;
    color: white;
    border: 8px solid #aeaeaf;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.services h4{
    font-family: poppins;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.services p{
    font-family: poppins;
    font-weight: 400;
    font-size: 0.6rem;
}

footer {
  background-color: #4682A9;
}

.footer {
  background-color: #4682A9;
}

.footer input {
  background-color: white;
}
.latest-collection{
    color: black;
}

@media screen and (max-width: 900px) {
    .content h2{
        font-size: 2.0rem;
        
        margin-top: 7vh;
        margin-bottom: 6vh;
        }
        .product-slider-section{
            padding-left: 3rem;
        }
       
  }
@media screen and (max-width: 768px) {
    .content h2{
        font-size: 1.7rem;
        padding: 0 1rem;
        margin-top: 7vh;
        margin-bottom: 6vh;
        text-align: center;
        }
        .sales h3{
            font-size: 1.2rem;
        }
        .slider-btn{
            margin-right: 2rem;
        }
        .sale-timer{
            display: none;
        }
        .services{
            flex-direction: column;
        }
        
        .all-products-section{
            padding: 1rem 1rem;
            padding-right: 1rem;
            padding-bottom: 0;
          
            
        }
        .sort{
            align-self: center;
        }
        .product-slider-section{
            margin-left: 0;
        }
        .services{
            margin: 7rem 0;
        }
  }

  