html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  padding: 0;
  margin: 0;
}
nav {
  background-color: rgb(9, 10, 10);
  color: white;
  padding: 20px 20px;
}
.navTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search {
  display: flex;
  align-items: center;
  background-color: gray;
  padding: 10px 20px;
  border-radius: 10px;
}
.searchInput {
  border: none;
  background-color: transparent;
}

.searchInput::placeholder {
  color: lightgray;
  font-size: 20px;
}
.limitedoffer {
  font-size: 20px;
  border-bottom: 2px solid green;
  cursor: pointer;
  border-radius: 10px;
  border: #000000;
  text-decoration: none;
  color: black;
  transition: all 0.3s ease-in;
  background-color: beige;
  padding: 5px 10px;
  scroll-behavior: smooth;
}
.limitedoffer:hover {
  background-color: #ffc80a;
}
.Sneaker {
  font-size: 30px;
  font-style: italic;
}
.navBtn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.MenuItem {
  margin-right: 50px;
  cursor: pointer;
  color: lightblue;
  font-weight: 400px;
}
.slider {
  overflow: hidden;
}
.sliderwraper {
  display: flex;
  width: 500vw;
  transition: all 1s ease-in-out;
}
.sliderImg {
  width: 1200px;
  aspect-ratio: 3/2;
  object-fit: contain;
  /* mix-blend-mode: color-burn; */
  transition: 1s;
}
.sliderImg:hover {
  transform: scale(1.3);
  z-index: 2;
}

.sliderItem {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: 50%;
  border-bottom: 5px rgb(19, 96, 162);
  background-color: rgb(89, 91, 74);

  position: relative;
}
.sliderTitle {
  position: absolute;
  top: 0;
  right: 15%;
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  color: rgb(255, 255, 255);
}
.sliderPrice {
  position: absolute;
  top: 15%;
  right: 19%;
  color: rgb(132, 157, 33);
}
.buyButton {
  position: absolute;
  top: 23%;
  right: 18%;
  color: aliceblue;
  background-color: rgb(201, 26, 41);
  font-size: 25px;
  z-index: 2;
}
.buyButton:hover {
  background-color: rgb(0, 0, 0);
}
.features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.featureIcon {
  width: 50px;
  height: 50px;
}
.featureTitle {
  font-size: 20px;
  font-weight: 600;
}
.featuredDesc {
  color: rgb(113, 108, 108);
  height: 100px;
  width: 50%;
}
.product {
  height: 100vh;
  background-color: rgba(126, 151, 150, 0.541);
  position: relative;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
}
.payInput {
  padding: 5px;
  font-size: 15px;
  border: none;
  border-bottom: 1px solid rgb(77, 77, 77);
}
.payInput::placeholder {
  font-size: 13px;
  color: rgb(209, 209, 209);
}
label {
  font-size: 15px;
  font-weight: 500;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.payment {
  width: 500px;
  height: 500px;
  background-color: rgb(251, 251, 251);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 10px 50px;
  display: none;
  flex-direction: column;
  -webkit-box-shadow: 9px 15px 300px 41px rgba(0, 0, 0, 1);
  -moz-box-shadow: 9px 15px 300px 41px rgba(0, 0, 0, 1);
  box-shadow: 9px 15px 300px 41px rgba(0, 0, 0, 1);
}

.payment3 {
  width: 500px;
  height: 500px;
  background-color: rgb(251, 251, 251);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 10px 50px;
  display: none;
  flex-direction: column;
  -webkit-box-shadow: 9px 15px 300px 41px rgba(0, 0, 0, 1);
  -moz-box-shadow: 9px 15px 300px 41px rgba(0, 0, 0, 1);
  box-shadow: 9px 15px 300px 41px rgba(0, 0, 0, 1);
}
.close3 {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgb(152, 148, 148);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 2px;
}
.productImg {
  width: 50%;

  margin-top: 5%;
}
.productDetails {
  position: absolute;
  top: 10%;
  right: 0;
  width: 40%;
  padding: 60px;
  text-align: center;
}
.productTitle {
  font-size: 70px;
  font-weight: 900;

  display: flex;
  font-style: italic;
}
.size {
  margin: 10px;
}
.sizes {
  font-size: 20px;
}

.sizes,
.colors {
  display: flex;
  justify-content: center;
}

.color {
  height: 32px;
  width: 32px;
  border-radius: 5px;
  background-color: rgb(240, 7, 7);
  margin: 10px;
  cursor: pointer;
}
.color:last-child {
  background-color: rgb(0, 137, 249);
}
.productButton {
  position: relative;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 500;
  margin-top: 5%;
}
.productButton:hover {
  background-color: rgb(225, 28, 28); /* Change background color on hover */
  color: rgb(0, 0, 0);
}
.color:last-child {
  background-color: rgb(19, 19, 190);
}
.sizeshoes {
  font-size: 20px;
}
.size {
  padding: 5px 10px;
  border: 1px solid rgb(7, 7, 7);
  margin-right: 10px;
  cursor: pointer;
  font-size: 20px;
}
.cardIcons {
  display: flex;
}
.cardIcon {
  margin-right: 10px;
}
.cardInfo {
  display: flex;
  justify-content: space-between;
}
.sm {
  width: 30%;
  padding: 10px;
}
.payButton {
  position: absolute;
  font-size: 20px;
  font-weight: bold;
  height: 40px;
  bottom: 0;
  width: 100%;
  left: 0;
  background-color: rgb(214, 240, 17);
  color: black;
  border: none;
  cursor: pointer;
}
.close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgb(152, 148, 148);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 2px;
}
.payment1 {
  width: 500px;
  height: 500px;
  background-color: rgb(251, 251, 251);
  position: absolute;

  top: 400vh;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 10px 50px;
  display: none;
  flex-direction: column;
  -webkit-box-shadow: 9px 15px 300px 41px rgba(0, 0, 0, 1);
  -moz-box-shadow: 9px 15px 300px 41px rgba(0, 0, 0, 1);
  box-shadow: 9px 15px 300px 41px rgba(0, 0, 0, 1);
}
.cardIcons1 {
  display: flex;
}
.cardIcon1 {
  margin-right: 10px;
}
.cardInfo1 {
  display: flex;
  justify-content: space-between;
}
.sm1 {
  width: 30%;
  padding: 10px;
}
.payButton1 {
  position: absolute;
  font-size: 20px;
  font-weight: bold;
  height: 40px;
  bottom: 0;
  width: 100%;
  left: 0;
  background-color: rgb(214, 240, 17);
  color: black;
  border: none;
  cursor: pointer;
}
.close1 {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgb(152, 148, 148);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 2px;
}
.gallery {
  padding: 50px;
  display: flex;
  justify-content: center;
}
.galleryItem {
  flex: 1;
  padding: 50px;
  text-align: center;
}
.galleryImg {
  width: 100%; /* Adjust the width as needed */
  height: auto; /* Maintain aspect ratio */
  border: 3px solid #000000; /* Add border for visibility */
}
.gallleryTitle {
  font-size: 20px;
  font-style: italic;
  color: rgb(82, 58, 144);
  background-color: rgb(227, 206, 16);
}
.trending {
  position: relative;
  padding: 10px;
  justify-content: space-between;

  color: rgb(228, 50, 1);
  font-size: 30px;
  font-weight: bold;
  background-color: rgb(2, 2, 0);
}

.trendingPrd {
  display: flex;

  align-items: center;
  justify-content: 50%;
  position: relative;
  overflow-x: scroll;
  scroll-behavior: smooth;
  margin-bottom: 50px;
  padding: 10px;
  background-color: rgb(79, 91, 92);
}

.trdImg {
  display: block;
  width: 1500px;
  aspect-ratio: 3/1;
  object-fit: contain;
  position: relative;
  transition: 1s;
}
/* .trdImg:hover{
    transform:scale(1.3);
    z-index: 2;
} */

.trdInfo {
  width: 100%;
  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  position: relative;
}
.trdTitle {
  font-size: 40px;
  text-align: center;
  color: white;
  line-height: 60px;
}

.trdprice {
  position: absolute;
  font-size: 30px;
  top: 120%;
  left: 10%;
  color: #11e6f1;
}
.oldPrice {
  text-decoration: none;
  color: rgb(255, 255, 255);
  opacity: 0.5;
  top: 90%;
  left: 10%;
  position: absolute;
  font-size: 20px;
  text-decoration: line-through;
}

.discount {
  position: absolute;
  top: 81%;
  left: 17%;
  background-color: #ffc80a;
  border-radius: 20px;
  padding: 7px 10px;
  font-size: 20px;
}
.trdBuyBtn {
  /* position: re; */
  cursor: pointer;
  top: 180%;
  left: 10%;
  color: aliceblue;
  background-color: rgb(201, 26, 41);
  font-size: 25px;
  /* z-index: 2; */
}
.trdBuyBtn:hover {
  background-color: #ffc80a;
  color: #000000;
}
.featured {
  font-size: 40px;
  font-weight: bold;
  position: relative;
}

.galleryItem1 {
  display: flex;

  padding: 50px;

  justify-content: center;
}
.gImage {
  /* border-radius: 3%; */
  border: #000000 solid thin;
  width: 700px;
  height: 800px;
}
.desc1 {
  font-size: 70px;
  padding: 10px;
  position: absolute;
  right: 25%;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.offer {
  position: relative;
  top: 100px;
  left: 17px;
  color: #000000;
}
.offerImg1 {
  position: relative;
  /* display: flex; */
  left: 18%;
}
.offerDesc {
  padding: 5px;
  display: grid;
  font-size: 40px;
  top: 30px;
  color: #1f2abf;
}
.navoffer {
  background-color: #84a438;
  display: flex;
  justify-content: center;

  border: #eb1111 solid;
  margin: 10px;
}
.offerimg2 {
  position: relative;
  width: 100px;

  top: 40px;
}
.timeleft {
  font-size: 20px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  right: 10%;
}
.offTitle {
  color: #51bd1c;
}

.offer1st {
  border: #000000 solid;
  position: relative;
  padding: 4%;
  text-align: left;
  display: flex;
  background-color: #5a6345;
}
.offerPrdImg {
  position: relative;
  top: 0px;
  left: 0%;
}
.OfferBuyBtn {
  position: absolute;
  font-size: 20px;
  font-weight: bold;
  color: white;
  padding: 5px 10px;
  top: 53%;
  right: 45%;

  background-color: rgb(194, 36, 36);
  color: rgb(255, 255, 255);
  border: 5px;
  cursor: pointer;
  border-radius: 5px;
}
.OfferBuyBtn:hover {
  background-color: rgb(64, 118, 165);
}
.offersizes {
  position: relative;
  right: -10%;
}
.size1 {
  padding: 5px 22px;
  border: 1px solid rgb(7, 7, 7);
  margin-right: 20px;
  cursor: pointer;
  font-size: 20px;
  background-color: rgb(23, 121, 208);
}
.offoldPrice {
  text-decoration: line-through;
}
.offdiscount {
  background-color: #ffc80a;
  border-radius: 20px;
  padding: 7px 10px;
  font-size: 20px;
}

.payment2 {
  width: 500px;
  height: 500px;
  background-color: rgb(251, 251, 251);
  position: absolute;

  top: 400vh;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 10px 50px;
  display: none;
  flex-direction: column;
  -webkit-box-shadow: 9px 15px 300px 41px rgba(0, 0, 0, 1);
  -moz-box-shadow: 9px 15px 300px 41px rgba(0, 0, 0, 1);
  box-shadow: 9px 15px 300px 41px rgba(0, 0, 0, 1);
}
.close2 {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgb(152, 148, 148);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 2px;
}
.order_placed {
  font-size: 30px;
  display: flex;

  justify-content: center;
  top: 40%;
}

.backTop {
  color: rgb(0, 112, 210);
  position: absolute;
  cursor: pointer;
  font-size: 20px;
  right: 50%;
  scroll-behavior: smooth;
}

footer {
  display: flex;
}
.footerLeft {
  flex: 2;
  display: flex;
  justify-content: space-between;
  padding: 50px;
}
.fMenuItem {
  font-size: 16px;
  color: gray;
  cursor: pointer;
}
.fMenuList {
  padding: 0%;
}
.footerRight {
  flex: 1;
  padding: 50px;
}
.footerRight {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fInput {
  padding: 5px;
}
.fButton {
  padding: 5px;
  background-color: #000000;
  color: white;
}
.fIcon {
  margin-right: 10px;
}
.copyright {
  font-weight: 300;
  font-size: 14px;
}
.addtocard {
  position: absolute;
  top: 30%;
  right: 15%;
}
.trdAddCartBtn {
  border: #11e6f1;
  border-radius: 5px;
  background-color: #eaf111;
  font-size: 15px;
  cursor: pointer;
}
