
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


.roboto-font {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.poppins-font {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.inter-font{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

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

.container{
    max-width: 1280px;

}
.panda-btn{
    background: var(--Linear, linear-gradient(180.00deg, rgba(255, 88, 155, 1),rgba(255, 19, 111, 1) 100%));
    width: 168px;
    height: 50px;
    border-radius: 6px;
    border: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
}

    .shoes-bag-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    margin: auto;
    }

 .see-section{
    font-size: 1.2rem;
    font-weight: 500;
    color: #FF9D00;
    cursor: pointer;
   }



/* nav area style */

nav{
    display: flex;
    justify-content: space-between;
    margin: auto;
    align-items: center;
    margin-top: 20px;
}

.product-li{
  position: relative;
}
.dropdown-nav-items{
  position: absolute;
  background-color: white;
  top: 30%;
  right: 0;
  width: 100px;
  text-align: center;
  padding: 15px 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 2px 0 4px 0 rgba(0, 0, 0, 15%);
  visibility: hidden;
   
}

.product-li:hover .dropdown-nav-items{
  visibility: visible;
  top: 100%;
  transition: 0.5s;
}
 
.dropdown-nav-items li{
  margin-bottom: 7px 0;
}

.search-parent{
     position: relative;   
}
.search-parent i{
    position: absolute;
    top: 17px;
    right: 20px;
    color: #BABABA;
    cursor: pointer;
}

.search-parent input{
    background-color: #F1F1F1;
    height: 50px;
    width: 508px;
    border: none;
    border-radius: 66px;
    padding-left: 40px;
}

.common-input::placeholder{
    color: #CCCCCC;
    font-style: italic;
    font-size: 1rem;
}

.nav-items{
    display: flex;
    gap: 20px;
    
}
.nav-items li{
    list-style: none;
}
.nav-items li a{
    text-decoration: none;
    color: #707070;
    font-weight: 500;
}

/* banner style */
.banner{
    background-color: #FEEAE9;
    display: flex;
    align-items: center;
    gap: 140px;
    margin: 50px auto;
    padding: 45px 65px 65px 65px;
    height: 460px;
    border-radius: 20px;
}

.banner h2{
        font-weight: bold;
        font-size: 3.5rem;
        color: #1F1F1F;
}
.banner p{
    font-size: 1rem;
    color: #4E4E4E;
    width: 450px;
}
.banner span{
    color: #FF136F;
    font-weight: 500;
    font-size: 2.5rem;
    display: block;
    margin-top: 10px;
}
.banner img{
    width: 402px;
    height: 380px;
}

/* category area style */
.category{
    max-width: 1280px;
    margin: 20px auto;
    
}
.cat-title{
    color: #1F1F1F;
    font-weight: 600;
    font-size: 3rem;
}
.varient{
    display: flex;
    justify-content: space-between;
    margin: auto;
    gap: 30px;
    margin-top: 20px;
}
.varient h3{
  font-weight: 600;
  font-size: 3rem;
}

.cat-a, .cat-b, .cat-c{
    display: flex;
    align-items: center;
    color: white;
    width: 360px;
    height: 120px;
    justify-content: space-between;
    padding: 0 30px;
    border-radius: 10px;
}
.cat-a{
    background: linear-gradient(151.85deg, rgba(255, 156, 53, 1),rgba(255, 208, 25, 1) 100%);
}
.cat-a img{
    width: 90px;
    height: 90px;
}
.cat-b img{
    width: 95px;
    height: 95px;
}
.cat-c img{
    width: 100px;
    height: 100px;
}
.cat-b{
   background: linear-gradient(180.00deg, rgba(255, 88, 155, 1),rgba(255, 19, 111, 1) 100%);
}
   .cat-c{
    background: linear-gradient(170.38deg, rgba(66, 137, 255, 1),rgba(63, 7, 248, 1) 100%);
   }

   /* shoes and bag area design */

   .shoes-bag-container{
    background-color: #F4F4F4;
    margin: 70px auto;
    padding-bottom: 50px;
   }
   /* shoes area design */
   .shoes-container{
    max-width: 1280px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    flex: 1;
   }
   .card-container{
    width: 360px;
    height: 480px;
    background-color: white;
    text-align: center;
    padding: 25px; 
      border-radius: 20px;
   }
   .card-container img{
    width: 300px;
    height: 202px;
   }
  .card-container h3{
    color: #1F1F1F;
    font-weight: 500;
    font-size: 1.5rem;
    

  }
 .card-container p{
    font-size: 1rem;
    color: #4E4E4E;
    margin-top: 20px;
 }
  .price-tag{
    font-size: 1.5rem;
    font-weight: 500;
    color: #000000;
    display: inline-block;
    margin-top: 10px;
  }
  .card-container .panda-btn{
    background: #000000;
    width: 160px;
    height: 50px;
    margin-top: 10px;
  }

  .footer-container{
    background-color: #FFF2F1;
    margin: auto;
    border-radius: 20px;
    text-align: center;
    height: 460px;
    margin-bottom: 70px;
    padding: 150px;
  }
  .footer-container h3{
    color: #1F1F1F;
    font-weight: 600;
    font-size: 1.75rem;
  }

  .footer-container p{
    color: #707070;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 5px;
  }
  .input-area{
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .footer-container .common-input::placeholder{
    font-style: normal;
    padding-left: 50px;
    border-radius: 10px;
  }
  .footer-container .common-input{
    border: none;
    width: 560px;
    height: 70px;
  }
  .footer-container .panda-btn{
    width: 140px;
    height: 70px;
    font-size: 1.5rem;
    font-weight: 500;
    /* border-top-left-radius: 0;
     border-bottom-left-radius: 0; */
     border-radius: 0 10px 10px 0;
  }
  


