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

body{
     font-family: "Poppins", sans-serif;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu img {
    width: 48px;
    cursor: pointer;
}

.logo img {
    width: 148px;
}

.container{
    width: 78.3%;
    margin: 50px auto;
    overflow: hidden;
    
    }

.main_box{
    background-color: #FEEAE9;
    border-radius: 10px;
    display: flex;
    gap: 30px;
    justify-items: center;
    align-items: start;
    padding: 50px;
   
}

.contentarea p{
    font-family: "Inter", sans-serif;
    font-size: 16;
}

.contentarea h1{
    font-size: 50;
   font-weight: bold;
}

.contentarea h1, p, h3, button{
    margin-bottom: 25px;
}

.contentarea h3{
    color: #FF136F;
    font-size: 40px;
    font-weight: 550;
}

.contentarea button{
    height: 40px;
    width: 150px;
    padding: 14px 20px;
    background-color: #FF383C;
    border-radius: 6px;
    color: #FEEAE9;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
  /* Header Responsive */
  @media screen and (max-width:950px){
    .main_box{
        flex-wrap: wrap;
        flex-direction: row-reverse;
    }
  }




.img img{
    width: 400px;
    filter: drop-shadow(0px 20px 15px rgba(0,0,0,0.35));
}

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

.box h3{
    float: left;
    overflow: hidden;
}

.div_box{
    display:flex;
    gap:25px;
    justify-content: center;
    align-items: center;
}
.box{
    flex:1;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 15px 15px 20px;
    border-radius:12px;
    color:white;
    gap:20px;
    font-size: 24px;
  
   
}

.box1{
    background-color: #FF9C35;
}
.box2{
    background: linear-gradient(90deg,#ff2e77,#ff0f5a);
}

.box3{
    background: #3F07F8;
}

.shoes-box{
    display: flex;
    gap: 20px;
    overflow: hidden;
    flex-wrap: wrap;
}

.shoes{
    border: 1px solid #929292;
    border-radius: 20px;
    text-align: center;
    padding: 15px;
    flex: 1;
    max-width: 340px;
}

.shoes img{
    max-width: 280px;
    min-height: 200px;
    margin-bottom: 20px;
}

.shoes h4{
    font-size: 24px;
    margin-bottom: 15px;
}

.shoes button{
   background-color: black;
   color: white;
   border-radius: 6px;
   font-size: 16px;
   padding: 14px 20px;
}

.shoes h3{
    font-size: 22px;
}

.footer{
    background-color: #FFF2F1;
    padding: 80px 0px;
    text-align: center;
    margin-top: 140px;
}

.footer h1{
   font-size: 30px;
}

.sub{
    display: flex;
    gap: 0;
    justify-content: center;
}

.footer input{
    background-color: #ffffff;
    padding: 23px 180px;
    margin: 0;
    border: none;
    font-size: 18px;
    padding-left: 30px;
    font-family: "Poppins", sans-serif; 
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
   
}

.footer button{
    margin: 0;
    padding: 23px 50px;
    border: none;
    background-color: #FF136F;
    color: white;
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
    font-size: 18px;
    font-family: "Poppins", sans-serif; 

}

/* Tablet Responsive */
@media screen and (max-width: 992px){

.container{
    width: 90%;
}

.main_box{
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
}

.img img{
    width: 300px;
}

.div_box{
    flex-wrap: wrap;
}

.box{
    flex: 1 1 45%;
}

.shoes-box{
    justify-content: center;
}

.shoes{
    flex: 1 1 45%;
    max-width: 100%;
}

.footer input{
    padding: 20px 100px;
}

}

/* Mobile Responsive */
@media screen and (max-width: 576px){

.container{
    width: 95%;
}

.contentarea h1{
    font-size: 32px;
}

.contentarea h3{
    font-size: 28px;
}

.img img{
    width: 250px;
}

.div_box{
    flex-direction: column;
}

.box{
    width: 100%;
}

.shoes-box{
    flex-direction: column;
}

.shoes{
    width: 100%;
}

.sub{
    flex-direction: column;
    gap: 10px;
}

.footer input{
    width: 100%;
    padding: 18px;
    border-radius: 6px;
}

.footer button{
    width: 100%;
    border-radius: 6px;
}

}