@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "poppins", sans-serif;
}
header {
  background-color: white;
}
.logo-img {
  width: 100px;
  height: auto;
}

.nav {
  list-style: none;
  display: flex;
  gap: 20px;
}

.box{
  box-shadow: 0ox 5px 10px rgba(0, 0, 0, 0.3);
}


.nav .nav-link {
  position: relative;
  font-size: 1.3rem;
  font-weight: 600;
  color: black;
  text-decoration: none;
  padding: 0;
  /* padding-bottom: 5px; */
}

.nav .nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -4px;
  height: 3px;
  border-radius: 5px;
  background-color: black;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.5s;
}

.nav .nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-icons a i {
  margin-left: 15px;
  font-size: 1.3rem;
  color: black;
}

/* home section */

#home {
  background-image: url("../images/banner3.png");
  width: 100%;
  height: 100vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-color: black;
  position: relative;
  margin-top: 10px;
}
#home::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.home-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* margin-left: 48px; */
  color: white;
  z-index: 2;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
}
h5 {
  font-size: 3rem;
}
.link-about {
  display: inline-block;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  /* border: 2px solid white; */
  background-color: white;
  color: black;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 22px;
  z-index: 22;
  border: none;
  outline: none;
}
.link-about:hover {
  color: white;
}

.span-about {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: black;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: 0.2s ease-in;
}
.link-about:hover .span-about {
  transform: scaleY(1);
}
@media (max-width: 768px) {
  #home h1 {
    font-size: 2rem;
  }
  #home h5 {
    font-size: 1rem;
  }
  .nav .nav-link {
    font-size: 15px;
  }
  .name-head {
    font-size: 15px;
  }
}

/* brands */

#brands {
  padding: 80px 0px;
}

#brands img {
  height: 200px;
  width: 200px;
}

/* new */

#new {
  padding: 0px 100px 80px 100px;
}

#new .one img {
  height: 100%;
  width: 100%;
  background-position: center;
}
#new .one h2 {
  font-size: 20px;
  font-weight: 200;
}
.details {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: black;
  color: white;
  padding: 12px;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 2;
}

.one {
  padding: 0;
  position: relative;
  /* background-color: red; */
}

.one:hover .details {
  top: 50%;
  opacity: 1;
}

.image-zoom {
  position: relative;
  /* overflow: hidden; */
}
.image-zoom-wrapper {
  position: relative;
  overflow: hidden;
}
.image-zoom-wrapper img {
  transition: all 0.3s ease;
}
.one:hover .image-zoom-wrapper img {
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  #new {
    padding: 0px 20px 48px 20px;
  }
  @media (max-width: 425px) {
    #new .one h2 {
      font-size: 15px;
      font-weight: 200;
    }
    #home h1 {
      font-size: 1.3rem;
    }
    #home h5 {
      font-size: 1rem;
    }
  }
  @media (max-width: 375px) {
    #new .one h2 {
      font-size: 12px;
      font-weight: 200;
    }
    .nav .nav-link {
      margin: 0 -10px;
    }
  }
}

/* featured */

#featured {
  margin-bottom: 80px;
}
.featured-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#featured .f-box img {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
}
.featured-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  /* gap: 20px; */
  padding: 20px 0;
  margin-left: 20px;
}
.featured-carousel1 {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 0;
}

.featured-carousel::-webkit-scrollbar {
  display: none; /* Optional: hides scrollbar */
}
.featured-carousel1::-webkit-scrollbar {
  display: none; /* Optional: hides scrollbar */
}
.featured-carousel2::-webkit-scrollbar {
  display: none; /* Optional: hides scrollbar */
}

.f-box {
  display: flex;
  flex: 0 0 260px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  padding: 10px;
  transition: transform 0.3s;
  
}
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: black;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.prev-btn2,
.next-btn2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: black;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev-btn3,
.next-btn3 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: black;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}


.prev-btn {
  left: 0px;
}

.next-btn {
  right: 0;
}

.prev-btn2 {
  left: 0px;
}

.next-btn2 {
  right: 0;
}
.prev-btn3 {
  left: 0px;
}

.next-btn3 {
  right: 0;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.fa-star {
  color: gold;
}
.name-head {
  font-size: 25px;
  margin-top: 10px;
}
.dollar {
  color: darkgreen;
}
.price {
  font-size: 20px;
  font-weight: 500;
}
.f-p-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.f-p-content{
  .link-about {
    display: inline-block;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid black;
    background-color: white;
    color: black;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 22px;
    z-index: 22;
  }
  .link-about:hover {
    color: white;
  }

  .span-about {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: black;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: 0.2s ease-in;
  }
  .link-about:hover .span-about {
    transform: scaleY(1);
  }
}

.f-box:hover .image-zoom-wrapper img {
  transform: scale(1.1);
}



/* banner 2 */





#banner2{
    padding-bottom: 80px;
}
.banner-2{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 500px;
    width: 100%;
    background-image: url('../images/bannerx3.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    color: white;
    position: relative;
    background-color: white;
}
.banner-2::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
}
.banner2-head{
    z-index: 1;
}




/* shoes */






#shoes{
    margin-bottom: 80px;
}


#shoes .f-box img {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
}




/* banner3 */




#banner3{
    padding-bottom: 80px;
}
.banner-3{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 500px;
    width: 100%;
    background-image: url("../images/banner3.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    color: white;
    position: relative;
}
.banner-3::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
}
.banner3-head{
    z-index: 1;
}



/* jackets */


#jackets{
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



#jackets .f-box img {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
}



/* footer */



#footer{
    background-color: black;
    color: white;
}

#footer .nav .nav-item .nav-link{
    color: white;
}


/* shop */


#shop{
  margin-top: 100px;
  padding-bottom: 210px;
}

#shop .f-box img {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
}
#shop .f-box{
  margin-bottom: 20px;
}

.shophead{
  display: flex;
  justify-content: center;
  margin-top: 170px;
  margin-bottom: 80px;
}



/* singlr product page */

#single-product{
  margin-top: 150px;
  /* height: 100vh; */
  margin-bottom: 150px;
  
}


.small-img-group{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.small-img-col{
  flex-basis: 25%;
  cursor: pointer;
  border: 3px solid black;
  border-radius: 4px;
  margin-left: 5px;
  transition: all 0.3s ease;
}
.small-img-col:hover{
  transform: translateY(-5px);
}
.product-desc{
  display: flex;
  justify-content: center;
}

.product-desc .link-about {
    display: inline-block;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid black;
    background-color: white;
    color: black;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 22px;
    z-index: 22;
  }


.product-desc .link-about:hover {
    color: white;
  }

  input[type=number] {
  
  padding: 4px;
  margin-right: 10px;
  width: 60px;
  
}
/* .product-desc input:focus{
  outline: black;
} */




.counter{
  display: flex;
  align-items: center;

}



/* cart */




#cart{
  margin-top: 150px;
}

#cart h1{
  font-weight: 600;
}
#cart table{
  width: 100%;
  
  border-collapse: collapse;
}
#cart table th{
  text-align: left;
  background-color: black;
  color: white;
  padding: 8px 0px;
}
#cart .cart-table table td{
  padding: 10px 0;
}
#cart .cart-table table td:last-child{
  text-align: right;
}
#cart .cart-table table th:last-child{
  text-align: right;
  padding-right: 10px;
}
.p{
  padding-left: 10px;
}
#cart table img{
  width: 80px;
  height: 80px;
}
#cart table input{
  margin: 0;
}
.cart-items{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cart-items p{
  margin-bottom: 0px;
}
.remove-btn {
  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cart-info .remove-btn:hover {
  background-color: #cc0000;
  color: white;
}
.animation{
  text-decoration: none;
  background-color: transparent;
  color: red;
  position: relative;
}
.animation::after{
  position: absolute;
  content: '';
  height: 1px;
  background-color: red;
  width: 100%;
  left: 0;
  bottom: -0;
  transform: scaleX(0);
  transition: all 0.2s ease;

}
.animation:hover::after{
  transform: scaleX(1);
}

.cart-total{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
   border-top: 3px solid black;
}
.cart-total table{
  width: 100%;
  max-width: 500px;
 margin-top: 15px;

}
.cart-total table td{
  /* text-align: center; */
  
  
}
td:last-child{
  text-align: right;
}
th:last-child{
  text-align: right;
}
.checkout-button{
  display: flex;
  justify-content: right;
  margin-top: 20px;
}
.checkout-btn{
  border: 2px solid black;
 transition: all 0.3s ease;
}
.edit-btn{
  border: 2px solid black;
  background-color: transparent;
  outline: none;
  padding: 2px 5px;
  transition: all 0.2s ease;
}

.checkout-btn:hover{
  color: white;
  background-color: black;
}
.edit-btn:hover{
  color: white;
  background-color: black;
}


/* account */

#account{
  /* height: 100vh; */
  display: flex;
  align-items: center;
  margin-top: 300px;
  margin-bottom: 100px;
}

#logout-btn{
  text-decoration: none;
  color: red;
  font-weight: 600;
  position: relative;
}
#order-btn{
  color: green;
  text-decoration: none;
  font-weight: 600;
}
#order-btn i{
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
#order-btn:hover i{
  transform: scaleX(1);
}
.ac-name{
  font-weight: 600;
}
.ac-name span{
  font-weight: normal;
}
.email{
  font-weight: 600;
}
.email span{
  font-weight: normal;
}

.form-group{
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-group #old-password{
  padding: 7px;
  max-width: 400px;
}
.form-group #new-password{
  padding: 7px;
  max-width: 400px;
}
.form-group label{
  font-weight: 600;
}
.pass-btn{
  padding: 7px;
  background-color: white;
  border: 2px solid black;
  outline: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.pass-btn:hover{
  background-color: black;
  color: white;
}


/* checkout */



#checkout{
  margin-top: 200px;
  margin-bottom: 200px;
}
#checkout h1{
  font-weight: 700;
}

#checkout-form .checkout-small-element{
  display: inline-block;
  width: 48%;
  margin: 10px auto;
}
#checkout-form .checkout-small-element input{
  width: 100%;
  padding: 10px;
}
#checkout-form .checkout-large-element{
  display: inline-block;
  width: 96%;
  margin: 10px auto;
}
#checkout-form .checkout-large-element input{
  width: 100%;
  padding: 10px;
}
.checkout-btn{
  width: 400px;
  padding: 12px;
}
.checkout-btn-group{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}


/* contact us */


#contact{
  margin-top: 200px;
  margin-bottom: 200px;
  width: 100%;
}
.c-span{
  font-weight: 600;
}
.pay-btn{
  background-color: white;
  padding: 5px 15px;
  border: 2px solid black;
  outline: none;
  transition: all 0.2s ease;
}
.pay-btn:hover{
  background-color: black;
  color: white;
}
#payment{
  margin-top: 180px;
  margin-bottom: 180px;
  display: flex;
}
.p-conatiner{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-p{
  font-size: 25px;
}


#register-message {
  position: fixed;
  top: 150px;
  left: 45%;
  transform: translateX(-50%);
  z-index: 1000; 
}
#login-message {
  position: fixed;
  top: 150px;
  left: 45%;
  transform: translateX(-50%);
  z-index: 1000; 
}
.capital{
  text-transform: capitalize;
}
.deatil-table table{
  width: 100%;
  border-collapse: collapse;
}


.deatil-header{
  padding: 5px 10px;
}

.detail-h{
  margin-bottom: 50px;
}
#order-details {
  margin-bottom: 200px;
  display: none;
  opacity: 0;
  transition: opacity 0.9s ease;
}
#order-details.show {
  display: block;
  opacity: 1;
}
.product-pic img{
  height: 80px;
  width: 80px;
}
.td-height{
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paynow-btn{
  background-color: transparent;
  border: 1px solid black;
  outline: none;
  margin-left: 10px;
  font-size: 12px;
  padding: 3px 5px;
  transition: all 0.2s ease;
}
.paynow-btn:hover{
  background-color: black;
  color: white;
}
.status-td{
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-menu{
     position: absolute;
    left: 0;
    top: 10%;
    height: 100vh;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
  
}
.side-para{
  font-size: 20px;
  font-weight: 600;
}
.search-btn{
  background-color: transparent;
  color: black;
  padding: 5px 5px;
  outline: none;
}
.search-btn:hover{
  background-color: black;
  color: white;
}
.pagination{
  justify-content: center;
  margin-top: 100px;
}
.page-link{
  color: black;
}
.page-link:hover{
  background-color: black;
  color: white;
}
.product-col{
  display: flex;
  flex-direction: column;
 
}
.product-info{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  margin-top: 18px;
  padding: 10px;
}
.product-img{
  height: 90px;
  width: 90px;
  border: 1px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  position: relative;
}
.product-img img{
  height: 80px;
  width: 80px;
}
.quantity{
 position: absolute;
 top: -10px;
 right: -10px;
 border: 1px solid black;
 border-radius: 50%;
 height: 20px;
 width: 20px;
 display: flex;
 align-items: center;
 justify-content: center;
 background-color: black;
 color: white;
 font-weight: 600;
}
#cupon-form input{
  padding: 10px ;
  width: 85%;
}
#cupon-form button{
  padding: 10px 18px;
  background-color: white;
  color: black;
  transition: all 0.2s ease;
}
#cupon-form button:hover{
  background-color: black;
  color: white;
}
.info{
  background-color: rgb(228, 228, 229);
}


.msg{
 text-align: center;
  color: green;

}
.msg-2{
  text-align: center;
  color: red;

}
.msg p{
  margin-bottom: 0;
}
.msg-2 p{
  margin-bottom: 0;
}