*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #FFF9F6;
    font-family: "Spectral SC", serif;
    font-weight: 400;
    font-style: normal;
}


/* Styling for desktop navbar */

#heading{
    width: auto;
}

#navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    margin-top: 50px;
}

#nav li{
    display: inline-block;
    padding: 10px;
    margin-top: 7px;
}

#nav a{
    text-decoration: none;
    color: black;
    transition: 0.3s ease-out;
}

#nav li{
    list-style: none;
}

#btn{
    display: flex;
}

.nav_btn{
    font-size: 20px;
    transition: 0.3s ease-out;
}

#menu_btn{
    display: none;
}

#nav a:hover{
    background-color: #FF6B00;
    color: white;
    padding: 10px;
    border-radius: 10%;
}

li:hover{
    transform:translateY(-5%)
}

.nav_btn:hover{
    transform: translateY(-10%);
}

.showmenu{
    display: flex !important;
}

/* Responsive for navbar */


@media screen and (max-width: 800px) {

    #navigation{
        margin-top: 90px;
    }

    #nav{
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        background-color: white;
        padding: 30px 30px;
        height: 100vh;
        width: 100%;
        position: absolute;
        top: 0%;
        right: 0%;
        z-index: 2;
    }
    
    #menu_btn{
        display: block;
        position: absolute;
        top: -5%;
        left: -5%;
        padding: 50px;
        font-size: 34px;
        font-weight: 500;
        z-index: 2;
    }

    #navigation #btn{
        flex: 1;
        gap: 10px;
        justify-content: flex-end;
    }

    .nav_btn{
        font-size: 20px;
    }
    
}


/* Styling for hero section for desktop */

#hero_section{
    height: 100vh;
}

#hero_page{
    display: flex;
    justify-content: space-around;
    margin-top: 100px;
}

#hero_content{
    text-align: center;
    margin-top: 70px;
}

.shoe_image{
    position: relative;
}

.shoe_image::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Images/Ellipse 1.png');
    background-size: cover;
    background-position: center;
    filter: blur(50px);
    border-radius: 50%;
    opacity: 1;
    z-index: -1;
    transform: translate(0, 0);
}

#hero_page{
    position: relative;
}

.shopNow{
    position: absolute;
    top: 40%;
    left: 15%;
    z-index: 1;
}

/* hero section desktop to mobile responsive */

@media (max-width: 1024px) {
    #hero_section{
        height: 600px;
    }
    #hero_page_shoe{
        width: 400px;
        height: 300px;
    }
    .shopNow{
        top: 70%;
    }
}

@media (max-width: 800px) {
    #hero_page{
        position: relative;
    }
    #hero_content{
        text-align: center;
        margin-top: 0px;
    }
    .shoe_image{
        position: absolute;
        left: 0%;
        top: 180%;
        width: 400px;
        height: 400px;
    }
    #hero_page_shoe{
        width: 400px;
        height: 400px;
    }
    .shopNow{
        position: absolute;
        top: 120%;
        left: 40%;
        z-index: 1;
        background-color: orange;
        border-radius: 30px;
    }
    
}


/* styling category for desktop */

#category{
    margin-top: -15%;
}

#boxes{
    width: 200px;
    height: 250px;
    background-color: #FFE3DB;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 5%;
}

#boxes:hover{
    cursor: pointer;
    transform: translateY(-10%);
    transition: 1s ease;
}

.formal, 
.casual, 
.sports{
    position: absolute;
    top: 70%;
    left: 15%;
}

#shoe_category{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
    color: #998883;
}

#arrowBtn{
    font-size: 30px;
    display: flex;
}

.btn-custom{
    background-color: #FF6B00;
    color: white;
    border-radius: 30px;
}

.btn-custom:hover{
    background-color: orange;
    color:  black;
}

/* Category for desktop to mobile responsive */

@media screen and (max-width:800px) {

    #category{
        margin-top: 90px;
        display: grid;
        place-items: center;
    }
    #shoe_category{
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    #shoe_category{
        display: flex;
    }
}

/* Styling for men and women Banner section */

#banner_page{
    display: flex;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.men_name{
    position: absolute;
    top: 40%;
    left: 0%;
    font-weight: 800;
}

.women_name{
    position: absolute;
    top: 40%;
    left: 70%;
    font-weight: 800;
}

.btn_for_banner1{
    position: absolute;
    top: 65%;
    left: 0%;
    color: white;
}

.btn_for_banner2{
    position: absolute;
    top: 65%;
    left: 72%;
}

/* men and women Banner for desktop to mobile responsive */

@media (max-width: 1024px) {

    .men_banner_img, .women_banner_img{
        width: 100%;
    }
    .men_name{
        position: absolute;
        top: 30%;
        left: 10%;
    }
    
    .women_name{
        position: absolute;
        top: 30%;
        left: 59%;
    }

    .btn_for_banner1{
        position: absolute;
        top: 65%;
        left: 10%;
        color: white;
    }

    .btn_for_banner2{
        position: absolute;
        top: 65%;
        left: 59%;
    }
}

@media (max-width: 1180px) {
    .btn_for_banner1{
        position: absolute;
        top: 75%;
        left: 10%;
        color: white;
    }

    .btn_for_banner2{
        position: absolute;
        top: 75%;
        left: 59%;
    }
}

@media (max-width: 800px) {
    #banner_page{
        display: block;
        
    }
    .men_banner_img, .women_banner_img{
        max-width: 100%;
    }

    .men_name{
        position: absolute;
        top: 20%;
        left: 29%;
    }
    
    .women_name{
        position: absolute;
        top: 70%;
        left: 29%;
    }

    .btn_for_banner1{
        position: absolute;
        top: 40%;
        left: 31%;
        color: white;
    }

    .btn_for_banner2{
        position: absolute;
        top: 90%;
        left: 31%;
    }
}


/* Styling for trending products */

.product_image{
    width: 266px;
    height: 330px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background-color: #FFDACF;
}

.product_image{
    width: 266px;
    height: 330px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background-color: #FFDACF;
}
.product_image_hover:hover{
    cursor: pointer;
    transform:scale(1.1);
    transition: 0.3s ease-in;
}

.product_image{
    position: relative;
}

.view_item_btn{
    opacity: 0;
    background-color: orange;
    color: black;
    position: absolute;
    top: 90%;
}

.product_image:hover .view_item_btn{
    opacity: 1;
    transform: translateY(-70%);
    transition: 0.5s;
}

.view_item_btn:hover{
    background-color: #FF6B00;
    color: white;
    transform: scale(1.5);
    transition: 1s;
}


.bestSeller{
    width: 200px;
    background-color: #FF6B00;
    color: white;
}

 #trending_products{
    margin-top: 40px;
}


#product_view{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 5%;
}
.trending_products{
    cursor: pointer;
    color: #FF6B00;
}
.latest_products:hover{
    cursor: pointer;
    color: #FF6B00;
}
.best_seller:hover{
    cursor: pointer;
    color:#FF6B00
}

#trends_list{
    display: flex;
    justify-content: space-evenly;
    gap:20px;
    align-items: center;
    flex-wrap: nowrap;
}

.trends_hover:hover{
    cursor: pointer;
    transform:scale(1.1);
    transition: 0.3s ease-in;
}

.carousel_left_btn{
    display: none;
    font-size: 34px;
}

.carousel_right_btn{
    display: none;
    font-size: 34px;
}

/* Trending products for desktop to mobile responsive */

@media (max-width: 1024px) {
    #trends_list{
        display: flex;
        gap: 10px;
        overflow: hidden;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    #trends_list::-webkit-scrollbar{
        display: none;
    }
    #product_view{
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 5%;
    }
    .trendings{
        text-align: center;
    }

    #trending_products{
        position: relative;
    }

    .carousel_left_btn{
        display: block;
        font-size: 34px;
        position: absolute;
        top: 40%;
        left: 0%;
        z-index: 1;
        transform: translateY(-40%);
    }

    .carousel_right_btn{
        display: block;
        font-size: 34px;
        position: absolute;
        top: 40%;
        right: 0;
        transform: translateY(-40%);
    }
}


@media screen and (max-width: 800px) {

    #trends_list{
        display: flex;
        gap: 10px;
        overflow: hidden;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    #trends_list::-webkit-scrollbar{
        display: none;
    }

    #product_view{
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 5%;
    }
    .trendings{
        text-align: center;
    }

    #trending_products{
        position: relative;
    }

    .carousel_left_btn{
        display: block;
        font-size: 34px;
        position: absolute;
        top: 40%;
        left: 0%;
        z-index: 1;
        transform: translateY(-40%);
    }

    .carousel_right_btn{
        display: block;
        font-size: 34px;
        position: absolute;
        top: 40%;
        right: 0;
        transform: translateY(-40%);
    }

}


/* Styling for Customer Reviews */

#review_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 90px;
}

.customer_reviews1,
.customer_reviews2,
.customer_reviews3,
.customer_reviews4,
.customer_reviews5,
.customer_reviews6
{
    background-size: cover;
    text-align: center;
    width: 100vw;
    height: 600px;
    padding: 0 50px;
    padding-bottom: 40px;
    border-radius: 10px;
}

.review_container .reviews .customer_reviews1{
    background-image: url('Images/Customer_review1.png');
}
.review_container .reviews .customer_reviews2{
    background-image: url('Images/Customer_review2.png');
}
.review_container .reviews .customer_reviews3{
    background-image: url('Images/Customer_review3.png');
}
.review_container .reviews .customer_reviews4{
    background-image: url('Images/Customer_review4.png');
}
.review_container .reviews .customer_reviews5{
    background-image: url('Images/Customer_review5.png');
}
.review_container .reviews .customer_reviews6{
    background-image: url('Images/Customer_review6.png');
}

.customer_profile{
    margin-top: 100px;
}

.review_container .reviews{
    position: relative;
}

.customer_reviews{
    display: none;
}

.customer_reviews.displaySlides{
    display: block;
    animation-name: faded;
}

.review_btns{
    font-size: 34px;
}

.review_container{
    position: relative;
}

#review_btns{
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 85%;
    right: 0;
}

/* Customer reviews responsive */

@media screen and (max-width: 800px) {
    .customer_reviews{
        width: auto;
    }
    
}

/* Styling for Footer details */

.shop_details{
    width: 100%;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
}

.shop_details .footer_links li{
    list-style: none;
}

.footer_links p{
    display: flex;
    flex-direction: column;
}

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

.footer_input{
    border: none;
    border-radius: 10px;
    background-color: orange;
    color: black;
    padding: 10px;
    padding-right: 57px;
}

#footer_input{
    margin-top: 40px;
    position: relative;
}

.send_fill_btn{
    position: absolute;
    top: 3%;
    right: 5%;
}

/* Footer responsive */

@media screen and (max-width: 800px) {
    .shop_details{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        place-items: center;
        align-items: center;
        text-align: center;
        margin-top: 0px;
    }
    .shop_details .footer_links li{
        text-align: justify;
    }
    .shop_details .footer_links ul{
        margin-top: 0px;
    }
    #footer_input{
        margin-top: 0px;
    }
}







