@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,800;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

/* reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
main{
    width: 100%;
}
/* font family */
main{
    font-family:"Poppins", sans-serif;
}

header .heading{
    font-family: "Montserrat", sans-serif;
}
/* bar styles */
   header .heading #check{
        width: fit-content;
        display: none;
    }
   label #btn, label #cancel{
        margin: 0 -10px;
        position: absolute;
        cursor: pointer;
        transition: all 0.5s ease;
    }
    label #cancel{
        position: fixed;
        opacity: 0;
        visibility: hidden;
    }
    #check:checked ~ label #btn{
        margin-left: o;
        opacity: 0;
        visibility: hidden;
    }
    #check:checked ~ label #cancel{
        margin-left:0px;
        opacity: 1;
        visibility: visible;
    }
    header .heading .icons img:hover, header .headbox .icons img:active{
        border-left:4px solid black ;
        background-color:#cdc6a5;
    


    }


/* header design */
header .heading{
    display:flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    margin: 5px;
    padding: 10px;
}


header .heading .headpara{
    font-size:24px ;
    display: flex;
    margin-left:-5%;
    margin-top: -6px;
}
header .heading .headpara img{
    margin: -6px -1px;
    padding: 1px;
    width: 25px;
    height: 25px;
}
header .heading .searchbox{
    margin: -5px 10px;
    border-radius: 25px;
    max-width: 600px;
    width: 40%;
    height:30px;
    padding: 10px;
}

.searchbox::placeholder{
    opacity: 0.6;
}

/* main styles */
/* features */
main .features{
    margin: 5px;
    padding: 2px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    max-width: 800px;
    width: 95%;
    
}
/* cart styles */

/* view */
main .cart{
    margin: 10px;
    gap: 20px;
}
main .cart .viewcart .view{
    margin:30px 10px 10px 10px;
    border-radius: 5px;
}
main .cart .viewcart .view img{
    max-width:578px;
    width: 100%;
    height: auto;
    
}
main .cart .viewcart .dimension{
    display: flex;
    
}
main .cart .viewcart .dimension img{
    max-width:150px;
    width: 80%;

}

/* cart details styles */
.cart_details{
    max-width: 600px;
    width: 100%;
    margin-left: 10px;
}
.cartdethead{
    margin: 15px 0;
}
.cart_details ul li{
    color: #00000099;
    margin:0 30px;
    list-style-type:disc;
}
.cart_details ul li::marker{
    color: black;
}

.cart_details .boxsizes{
    margin: 30px 0 10px 0;


}
.cart_details #box-sizes{
    margin:0 20px;
    border: 1px solid #CED4DA;
    border-radius: 5px;
    max-width: 300px;
    padding: 5px;
    width:50% ;
}
.cart_details #quantity{
    margin:0 28px;
    border: 1px solid #CED4DA;
    border-radius: 5px;
    max-width: 300px;
    padding: 5px;
    width:50% ;
}
.cart .cart_details .ratings{
    display: flex;
    margin: 20px 0 10px 0;
}
.cart .cart_details .ratings .file input{
    display: none;
}
.cart .cart_details .ratings .file button{
    margin-left: 10px;
    padding: 5px;
    border: 1px solid #00000099;
    cursor: pointer;
    border-radius: 10px;
    max-width: 408px;
    width: 100%;
    letter-spacing: 0.5px;
}
.cart .cart_details .ratings .file button::placeholder{
    color: #6C757D;
}
/* rate styles */
.cart .cart_details .ratings .rate h3 span{
    font-size: 14px;
    color: #E71515;
    text-decoration: line-through;

}
.cart .cart_details .ratings .rate p{
    color:#00000099;
    margin-top: 5px;
    font-size: 10px;
    letter-spacing: 1px;
}
.cart .cart_details .ratings .rate p span{
    color:#43A047 ;
}
.cart .cart_details .cartamount button{
    background-color: black;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 10px;
    text-align: center;
    letter-spacing: 0.5px;

}
.cartamount button:hover{
    cursor: pointer;
    transform: scale(1.1);
    transition: all 0.5s 0s ease;
}
.cart .cart_details .cartamount img{
    margin:-5px 10px;
}

/* product styles */
/* scroll styles for products */
.product1{
    margin: 25px 5px 10px 5px;
    padding: 15px;
    width: 100%;
    display: flex;
    justify-self: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 26px;
    border-radius: 12px;
    scroll-behavior: smooth;
    scroll-padding:0 32px;
    /* scrollbar hide */
    scrollbar-width: none;

}

/* product review styles */
main .prohead{
    margin: 10px;
}
.product1 .pro{
    display: flex;
}

.product1 .pro .bold{
    font-weight: 700;
    font-size: 1.5rem;
}

.product1 .pro .red{
    margin: 8px;
    color:#E71515;
    text-decoration: line-through;
}
main .product1 figure{
    position: relative;

}

/* product button */

.product1 .pro button{
    position: absolute;
    right: 0;
    margin: 0;
    padding: 8px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background-color: black;
    color: #FFFFFF;
    

}
/* E-mail styles */

main .subs{
    display:block;
    margin: 0px;
    padding:10PX;
    background-color: #D7E6F9;

}

main .subs p{
    max-width: 500px;
    width:100%;
    text-align: center;
    align-self: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.35px;
}

main .subs input{
    display: flex;
    justify-self: center;
    margin-top: 10px;
    max-width: 400px;
    width: 80%;
    height: auto;
    background-color: #FFFFFF;
    padding: 12px;
    border: 0;
    border-radius: 25px;
}

main .subs input::placeholder{
    font-style: italic;
    opacity: 80%;
}

main .subs button{
    display: flex;
    justify-self: center;
    justify-content: center;
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    max-width:200px;
    width: 40%;
    height: auto;
    padding: 12px;
    background-color: black;
    color: #FFFFFF;
    border-radius: 50px;

}

/* contact styles */
#conhead{
    margin: 20px 5px;
    text-align: center;
    letter-spacing: 0.35px;

}

main .contact{
    margin: 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    column-gap: 30px;
    gap: 20px;
    margin-top: 25px;

}

main .con{
    display: flex;
    position: relative;
    max-width:350px;
    width: 100%;
    border: 3px solid #D7E6F9;
    border-radius: 10px;
}

main .con img{
    margin: 10px;
    align-self: center;
    width:30px;
    height: 40px;
}

main .con figcaption{
    margin: 10px 30px 10px 10px;
    align-self: center;
    
}
 
main .con button{
    margin: 50px 0 50px 0;
    position: absolute;
    z-index: -1;
    align-self: center;
    right: 0;
    background: #D7E6F9;
    font-size: 15px;
    padding: 5px;
    border: 2.43px solid #FFFFFF;
    border-radius: 50%;
    color:#FFFFFF;

}

/* contact-details styles */
main .details{
    margin:25px 0;
    padding: 15px 10px 15px 10px;
    background-color: #D7E6F9;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    
}

main .details div{
    margin: 0 10px;
    max-width: 120px;
    width: 100%;
    margin-right: 20px;
    
}

main h5{
   margin: 10px 0;
   font-size: larger;
}

main h6{
    margin-bottom: 5px;
    font-size: medium;
}

main p{
    font-size: 12px;
}

/* disclaimer styles */
footer .copyrights{
    margin: 5px;
    display: block;
}
footer .dis1{
    display:flex;
    width: 100%;
    justify-content:space-around;
}
footer .img{
    margin: 5px;
    display: flex;
    justify-self: center;
    
}

footer .img1{
    margin-top: -5px;
    padding: 10px;

}

footer .img2{
    margin-top: -9px;
    padding: 10px;
        
}

@media screen and (max-width:480px) {
    /* hamberger styles */
    header .heading .icons{
        padding: 30px 0;
        position: fixed;
        top:0;
        left:-100px;
        z-index: 1000;
        background-color:#f0dccab3;
        width: 100px;
        height: 100%;
        transition: all .3s ease ;
    }
    header .heading .icons img{
        display: block; 
    }

   
    header .heading label{
        display:flex;
        z-index: 10000;
    }
    #check:checked ~ label #cancel{
        margin-left:50px;
        opacity: 1;
        visibility: visible;
    }
 
    #check:checked ~ .icons{
        left: 0;
    }

    /*  */
    main .cart .viewcart .dimension{
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }
}

@media screen and (min-width:481px) and (max-width:768px) {
    
    /* hamberger styles */
    label #btn, label #cancel{
        font-size: 20px;
    }
    header .heading .icons{
        padding: 30px 0;
        position: fixed;
        top:0;
        left:-160px;
        z-index: 1000;
        background-color:#f0dccab3;
        width: 150px;
        height: 100%;
        transition: all .3s ease ;
    }
    header .heading .icons img{
        display: block; 
    }

   
    header .heading label{
        display:flex;
        z-index: 10000;
    }
    #check:checked ~ label #cancel{
        margin-left:100px;
        opacity: 1;
        visibility: visible;
    }
 
    #check:checked ~ .icons{
        left: 0;
    }   
    /* header design */
    header{
        margin:0px 20px;
    }
    header .heading{
        margin:10px 0px;
        padding: 10px;
        width: 100%;
        gap: 20px;
        justify-content:space-between;
    }
    
    
    header .heading .headpara{
        font-size:30PX;
        margin-top: -10px;
        margin-left: -20px;
        
    }
        
    header .heading .searchbox{
        width:50%;
        padding: 20px;
    }
    
    header .heading .headpara img{
        margin: -6px -1px;
        padding: 1px;
        width: 25px;
        height: 25px;
    }
    /* features */
    main .features{
        margin: 20px;
        padding: 2px;
        gap: 10px;
        justify-content: space-between;
    }
    main .features p{
        font-size: 16px;
    }
    /* cart styles */

    /* view */
    main .cart{
        margin: 20px;
    }
    main .cart .viewcart .view{
        margin:30px 10px 10px 10px;
        border-radius: 5px;
    }
    main .cart .viewcart .view img{
        display: flex;
        justify-self: center;
        
    }
    main .cart .viewcart .dimension{
        display: flex;
        justify-content: center;
        
    }
    

    /* cart details styles */
    .cart_details{
        font-size:20px;
        margin: 0 50px;
    }
    .cartdethead{
        margin: 25px -30PX;
        font-size:24px;
    }
    .cart_details ul li{
        margin:0 20px;
  
    }
    .cart_details ul li p{
        font-size: 18px;
    }

    .cart_details .boxsizes{
        margin: 30px 0 15px 0;


    }
    .cart_details #box-sizes{
        margin:0 24px;
        padding: 10px;
    }
    .cart_details #quantity{
        margin:0 28px;
        padding:10px;
    }
    .cart .cart_details .ratings .file button{
        margin-left: 30px;
        padding: 10px;
    }

    /* rate styles */
    .cart .cart_details .ratings .rate h3 span{
        font-size: 16px;

    }
    .cart .cart_details .ratings .rate p{
        margin-top: 3px;
        font-size: 14px;
      
    }
    .cart .cart_details .ratings .rate p span{
        font-size: 14px;
    }
    .cart .cart_details .cartamount button{
        padding: 15px;
        font-size: 18px;

    }
    .cart .cart_details .cartamount img{
        margin:-8px 10px;
        width: 30px;
    }

    /* product styles */
    /* scroll styles for products */
    .product1{
        margin-top: 20px;
        padding:20px;
        width: 100%;
        /* scrollbar hide */
        scrollbar-width:thin;

    }

    /* product review styles */
    main .prohead{
        margin: 40px;
        font-size: 24px;
    }
    .product1 .pro .red{
        font-size: 14px;
    }
    main .product1 figure{
        position: relative;

    }

    /* E-mail styles */
    main .subs p{
        display: flex;
        justify-self: center;
        font-size: 24px;
    }

    /* contact styles */
    #conhead{
        font-size: 24px;
    }

    main .contact{
        margin: 0 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content:center;
        column-gap: 30px;
        gap: 20px;
        margin-top: 25px;

    }

    main .con{
        display: flex;
        position: relative;
        max-width:350px;
        width: 100%;
        border: 3px solid #D7E6F9;
        border-radius: 10px;
    }

    main .con img{
        margin: 10px;
        align-self: center;
        width:30px;
        height: 40px;
    }

    main .con figcaption{
        font-size: 18px;
        margin: 10px 30px 10px 10px;
        align-self: center;
        
    }
    main .con figcaption p{
        font-size: 16px;

    }
    
    main .con button{
        margin: 50px 0 50px 0;
        position: absolute;
        z-index: -1;
        align-self: center;
        right: 0;
        background: #D7E6F9;
        font-size: 15px;
        padding: 5px;
        border: 2.43px solid #FFFFFF;
        border-radius: 50%;
        color:#FFFFFF;

    }
    /* disclaimer styles */
    footer .copyrights{
        margin:5px 20px 5px 20px;
        display:flex;
        
    }
    footer .dis1{
        display:flex;
        gap: 20px;
        justify-content:start;
    }
    footer .img{
        margin: -10px 0px 10px 5px;
        display: flex;
        justify-content: end;
        
    }

    footer .img1{
        margin-top: 0px;
        padding: 10px;

    }

    footer .img2{
        margin-top: -9px;
        padding: 10px;
            
    }


}
@media screen and (min-width:769px) {

     /* header design */

    label #btn, label #cancel{
        font-size: 25px;
    }
    header{
        margin: 0px 30px;
    }
    header .heading{
        margin:20px opx;
        padding: 10px;
        width: 100%;
        justify-content:space-between;
    }
    
    
    header .heading .headpara{
        font-size:35PX;
        margin-top: -10px;
        margin-left: 10px;
        
    }
        
    header .heading .searchbox{
        width:45%;
        height: auto;
        padding: 8px;
        background-color: #efefef;
        align-self: center;
        border: 0;
        border-radius: 25px;
    }
    
    header .heading .headpara img{
        margin: -6px -1px;
        padding: 1px;
        width: 25px;
        height: 25px;
    }
    header .heading .icons{
        margin-top: 0PX;
        display: block;
        
    }
    header .heading .icons img{
        width: 40px;

    }
    /* features */
    main .features{
        margin: 0px;
        padding: 2px;
        position: relative;
        justify-content: space-around;
    }
    main .features p{
        font-size: 16px;
    }
    /* cart styles */
    /* view */
    main .cart{
        display: flex;
        justify-content: space-around;
        margin: 40px 0px;
        width: 100%;
    }
    main .cart .viewcart .view{
        border-radius: 5px;
        max-width: 600PX;
        width: 100%;

    }
    main .cart .viewcart .view img{
        margin:30px 20px 30px 0px;
        display: flex;
        justify-self: center;
        
    }
    main .cart .viewcart .dimension{
        display: flex;
        justify-content: center;
        max-width:600px;
        width: 100%;
     
        
    }
    main .cart .viewcart .dimension img{
        max-width:250px;
        width:25%;

    }
    

    /* cart details styles */
    .cart_details{
        font-size:20px;
        margin-left: 20px;
        max-width: 600PX;
        width: 100%;
    }
    .cartdethead{
        margin: 25px 0;
        font-size:24px;
    }
    .cart_details ul li{
        margin:0 20px;
  
    }
    .cart_details ul li p{
        font-size: 18px;
    }

    .cart_details .boxsizes{
        margin: 30px 0 15px 0;


    }
    .cart_details #box-sizes{
        margin:0 24px;
        padding: 10px;
    }
    .cart_details #quantity{
        margin:0 28px;
        padding:10px;
    }
    .cart .cart_details .ratings .file button{
        margin-left: 30px;
        padding: 10px;
    }

    /* rate styles */
    .cart .cart_details .ratings .rate h3 span{
        font-size: 16px;

    }
    .cart .cart_details .ratings .rate p{
        margin-top: 3px;
        font-size: 14px;
      
    }
    .cart .cart_details .ratings .rate p span{
        font-size: 14px;
    }
   
    .cart .cart_details .cartamount img{
        margin:-8px 10px;
        width: 25px;
    }

    /* product styles */
    /* scroll styles for products */
    .product1{
        margin-top: 20px;
        padding:20px;
        width: 95%;
        /* scrollbar hide */
        scrollbar-width:thin;

    }

    /* product review styles */
    main .prohead{
        margin: 40px;
        font-size: 24px;
    }
    .product1 .pro .red{
        font-size: 14px;
    }
    main .product1 figure{
        position: relative;

    }

    /* E-mail styles */

    main .subs{
        padding: 25px 20px 25px 50px;
        width: 100%;
        display: flex;
        gap: 10px;
        justify-content: space-between;
        font-size: 24px;
    }
    main .subs p{
        max-width: 500px;
        text-align: center;
        align-self: center;
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 0.35px;

    }
    main .subs .subbut{
        max-width:600px;
        height: 50px;
        width: 60%;
        display: flex;
    }
    main .subs .subbut input{
        max-width: 500px;
        width: 60%;
        height: 40px;
        padding: 15px;
    }
    main .subs .subbut button{
        max-width: 300px;
        width: 40%;
        margin-left: -50px;
        padding:15px;
        text-align:center;
    }

    /* contact styles */
    #conhead{
        font-size: 24px;
    }


    main .con{
        display: flex;
        position: relative;
        max-width:350px;
        width: 100%;
        border: 3px solid #D7E6F9;
        border-radius: 10px;
    }

    main .con img{
        margin: 10px;
        align-self: center;
        width:30px;
        height: 40px;
    }

    main .con figcaption{
        font-size: 18px;
        margin: 10px 30px 10px 10px;
        align-self: center;
        
    }
    main .con figcaption p{
        font-size: 16px;

    }
    
    main .con button{
        margin: 50px 0 50px 0;
        position: absolute;
        z-index: -1;
        align-self: center;
        right: 0;
        background: #D7E6F9;
        font-size: 15px;
        padding: 5px;
        border: 2.43px solid #FFFFFF;
        border-radius: 50%;
        color:#FFFFFF;

    }
    main .con button i{
        font-size: 20px;
    }

    /* contact-details styles */
    main .details{
        margin:25px 0;
        padding: 25px 50px 25px 50px;
       
    }

    main .details div{
        margin: 0 10px;
        max-width: 120px;
        width: 100%;
        margin-right: 20px;
        
    }
    main h5{
    margin: 10px 0;
    font-size: larger;
    }

    main h6{
        margin-bottom: 5px;
        font-size: medium;
    }

    main p{
        font-size: 14px;
        margin-top:4px

    
    }

    /* disclaimer styles */
    footer .copyrights{
        margin:10px 50px;
        display:flex;
    }
    footer .dis1{
        display:flex;
        width: 50%;
        gap: 30px;
        justify-content:start;
    }
    footer .img{
        margin-top:-5px;
        display: flex;
        width: 50%;
        gap: 10px;
        justify-content: end;
        
    }

    footer .img1{
        margin-top: -5px;
        padding: 10px;

    }

    footer .img2{
        margin-top: -9px;
        padding: 10px;
            
    }

    
}
    
    





    

