*{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}

nav{
    background-color: black;
    color: white;
    padding: 20px 50px;
}

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

.search{
    display: flex;
    align-items: center;
    background-color: grey;
    padding: 10px 20px;
    border-radius: 10px;
    
}

.searchInput{
    border: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    color: white;
    font-size: 15px;
    
}
.searchInput::placeholder{
    color: lightgrey;
}

.limitedOffer{
    font-size: 20px;
    border-bottom: 2px solid crimson;
    cursor: pointer;
}

.navBottom{
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuItem{
    margin-right: 50px;
    margin-top: 20px;
    cursor: pointer;
    color: lightgray;
    font-weight: 400;
}

.slider{
    background-color: rgb(160, 160, 156);
}

.sliderWrapper{
    display: flex;
    width: 500vw;
    transition: all 0.9s ease-in-out;
}

.sliderItem{
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sliderTitle{
    color: white;
    
}
.sliderPrice{
    color: greenyellow;
    margin: 10px 0;
}
.buyButton{
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    border: none;
}
.buyButton:hover{
    background-color: black;
    color: white;
}
.sliderItem:nth-child(1){
    background-color: rgb(160, 160, 156);
}
.sliderItem:nth-child(2){
    background-color: rgb(207, 85, 33);
}
.sliderItem:nth-child(3){
    background-color: rgb(30, 126, 143);
}
.sliderItem:nth-child(4){
    background-color: rgb(215, 215, 198);
}
.sliderItem:nth-child(5){
    background-color: rgb(219, 30, 43);
}

.features{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}
.feature{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.featureImg{
    width: 50px;
    height: 50px;
}
.featureTitle{
    font-size: 18px;
    font-weight: 600;
    margin: 16px;
}

.featureDesc{
    width: 70%;
    height: 100px;
}

.product{
    height: 100vh;
    background-color: whitesmoke;
    position: relative;
    
}

.payment{
    width: 500px;
    height: 500px;
    background-color: white;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 10px 50px;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 5px 15px rgb(0, 0, 0.6);
    display: none;

}
.payTitle{
    font-size: 22px;
    margin-bottom: 15px;
}
label{
    font-size: 14px;
    font-weight: 500;
}
.payInput{
    padding: 10px;
    margin: 10px 0px;
    border: none;
    border-bottom: 1px solid grey;
    outline: none;
    
}
.payInput::placeholder{
    color: lightslategrey;
}

.cardIcons{
    display: flex;
}
.cardIcon{
    margin-right: 10px;
}
.cardInfo{
    display: flex;
    justify-content: space-between;
}
.sm{
    width: 30%;
}
.payButton{
    position: absolute;
    height: 40px;
    bottom: -40px;
    width: 100%;
    left: 0;
    box-shadow: 5px 5px 15px rgb(0, 0, 0.6);
    background-color: rgb(71, 193, 71);
    color: white;
    cursor: pointer;
    border: none;
}
.payButton:hover{
    background-color: rgb(71, 159, 71);
}

.close{
    width: 20px;
    height: 20px;
    position: absolute;
    background-color: rgb(93, 90, 90);
    color: white;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.close:hover{
    background-color: red;
}
.productImg{
    width: 50%;
}
.productDetails{
    position: absolute;
    top: 20%;
    right: 0;
    width: 40%;
    padding: 50px;
    
}
.productTitle{
    font-size: 65px;
    font-weight: 750;
    margin-bottom: 15px;
}
.productDesc{
    font-size: 19px;
    color: gray;
    margin: 12px 0;
}
.colors,.sizes{
    display: flex;
}
.color{
    width: 30px;
    height: 30px;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
    background-color: black;
}
.color:last-child{
    background-color: rgb(70, 22, 202);
}
.size{
    margin: 15px 10px 15px 0;
    padding: 5px 20px;
    border: 2px solid black; 
    cursor: pointer;
    font-size: 20px;
}

.productButton{
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    background-color: black;
    color: white;
    cursor: pointer;
    font-weight: 600;
}
.productButton:hover{
    background-color: rgb(35, 180, 151);
    color: black;
}

.gallery{
    padding: 50px;
    display: flex;
}

.galleryItem{
    flex: 1;
    padding: 30px;
}

.galleryImg{
    width: 100%;
}

.newSeason{
    display: flex;
}

.nsItem{
    flex: 1;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nsImg{
    width: 100%;
    height: 500px;
}

.nsTitle{
    font-size: 40px;
}
.nsButton{
    padding: 15px;
    border-radius: 6px;
    border: none;
    font-weight: 900;
    cursor: pointer;
}

footer{
    display: flex;
}
.footerLeft{
    flex: 2;
    display: flex;
    justify-content: space-between;
    padding: 50px;
   
}


.fMenuTitle{
    font-size: 18px;
}
.fMenuList{
    padding: 0;
    list-style: none;
}
.fListItem{
    margin-bottom: 10px;
    color: gray;
    cursor: pointer;
}

.footerRight{
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fInput{
    padding: 10px;
}

.fButton{
    padding: 5px;
    background-color: black;
    color: white;
}
.ficons{
    display: flex;
}
.fIcon{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.copyright{
    font-weight: 300;
    font-size: 14px;
}


 @media screen and (max-width:480px) {
    nav{
      padding: 20px;
    }
  
    .search{
      display: none;
    }
  
    .navBottom{
      flex-wrap: wrap;
    }
  
    .menuItem{
      margin: 20px;
      font-weight: 700;
      font-size: 20px;
    }
  
    .slider{
      clip-path: none;
    }
    .sliderItem{
        width: 100%;
    }
    .sliderImg{
      width: 65%;
    }
  
    .sliderBg{
      width: 100%;
      height: 100%;
    }
  
    .sliderTitle{
      display: none;
    }
  
    .sliderPrice{
      top: unset;
      bottom: -50;
      left: 0;
      background-color: lightgrey;
    }
  
    .buyButton{
      right: 0;
      top: 0;
    }
  
    .features{
      flex-direction: column;
    }
  
    .product{
      clip-path: none ;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .productImg{
      width: 80%;
    }
  
    .productDetails{
      width: 100%;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      top: 0;
    }
  
    .productTitle{
      font-size: 50px;
      margin: 0;
    }
  
    .gallery{
      display: none;
    }
  
    .newSeason{
      flex-direction: column;
    }
  
    .nsItem:nth-child(2){
      padding: 50px;
    }
  
    footer{
      flex-direction: column;
      align-items: center;
    }
  
    .footerLeft{
      padding: 20px;
      width: 90%;
    }
  
    .footerRight{
      padding: 20px;
      width: 90%;
      align-items: center;
      background-color: whitesmoke;
    }
  
    .payment{
      width: 90%;
      padding: 20px;
    }
  } 



