main {
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.home {
  background-image: url(https://www.jdsports.com.sg/cdn/shop/files/Desktop-Top-Banner_2560_-x-_860-px.gif?v=1758671080&width=2560);
  background-size: cover;
  padding: 80px 80px;
  width: 100%;
  height: 90vh;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home .home-discribe {
  width: 60%;
  background: #636765;
  padding: 100px 50px 180px 50px;
}
.home .home-discribe h2, .home .home-discribe p {
  color: white;
}
.home h1 {
  color: orange;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}
.home h2 {
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}
.home p {
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}
.home .btn-home {
  margin-top: 10px;
  display: flex;
  gap: 20px;
}
.home .btn-home #btn-contactus {
  background: none;
  color: orange;
  padding: 8px 25px;
  font-weight: bold;
  border-radius: 20px;
  border: 2px solid orange;
  cursor: pointer;
  transition: 0.3s;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}
.home .btn-home #btn-contactus:hover {
  background: orange;
  color: white;
}

#btn-buynow {
  background: orange;
  color: white;
  padding: 8px 25px;
  font-weight: bold;
  border-radius: 20px;
  border: none;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}

#btn-buynow:hover {
  background: none;
  color: orange;
  border: 2px solid orange;
}

.top-picks {
  padding: 0px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.top-picks h2 {
  margin-bottom: 30px;
}
.top-picks .product-card {
  background: #fff;
  display: flex;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.top-picks .product-card .product-image {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.top-picks .product-card .product-image img {
  width: 400px;
  border-radius: 8px;
}
.top-picks .product-card .product-info {
  flex: 1;
  padding: 30px;
}
.top-picks .product-card .product-info h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
.top-picks .product-card .product-info .pay-aba-ac {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-picks .product-card .product-info .pay-aba-ac img {
  height: 20px;
}
.top-picks .product-card .product-info .price {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 15px 0;
}
.top-picks .product-card .product-info .colors {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}
.top-picks .product-card .product-info .colors img {
  width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}
.top-picks .product-card .product-info .colors img:hover {
  border-color: orange;
}
.top-picks .product-card .product-info .size-select {
  margin: 15px 0;
}
.top-picks .product-card .product-info .size-select select {
  padding: 8px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.top-picks .product-card .product-info .actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.top-picks .product-card .product-info .actions button {
  background: orange;
  color: white;
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  border: 2px solid orange;
  cursor: pointer;
  transition: 0.3s;
}
.top-picks .product-card .product-info .actions button:hover {
  background: #ffffff;
  color: orange;
}
.top-picks .top-shoes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}
.top-picks .top-shoes #top-nike, .top-picks .top-shoes #top-adidas2, .top-picks .top-shoes #top-adidas {
  width: 350px;
  height: 300px;
  transition: 0.3s;
  cursor: pointer;
}
.top-picks .top-shoes #top-nike:hover, .top-picks .top-shoes #top-adidas2:hover, .top-picks .top-shoes #top-adidas:hover {
  box-shadow: 0px 0px 5px rgb(221, 221, 221);
  transform: scale(1.05);
}
.top-picks .top-shoes #top-adidas {
  width: 450px;
}
.top-picks .top-shoes #top-adidas2 {
  width: 450px;
}
.top-picks hr {
  width: 50%;
  border: 2px solid lightgray;
  margin-bottom: 20px;
}
.top-picks .card-top-picks {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}
.top-picks .card-top-picks .card-top-pick {
  padding: 0px 20px;
  width: 300px;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px lightgray;
  transition: 0.3s;
  cursor: pointer;
  padding: 10px;
}
.top-picks .card-top-picks .card-top-pick .star {
  margin-left: 40px;
}
.top-picks .card-top-picks .card-top-pick .star i {
  color: orange;
}
.top-picks .card-top-picks .card-top-pick:hover {
  box-shadow: 0px 0px 5px rgb(221, 221, 221);
}
.top-picks .card-top-picks .card-top-pick img {
  width: 250px;
  height: 250px;
}
.top-picks .card-top-picks .card-top-pick h3 {
  margin: 10px 0px;
}
.top-picks .card-top-picks .card-top-pick p {
  margin-bottom: 10px;
  color: gray;
  font-size: 14px;
}

.promo-card {
  background: linear-gradient(135deg, #e8edf0 0%, #fdfdfd 100%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 100px;
  overflow: hidden;
  position: relative;
}
.promo-card .promo-text {
  max-width: 50%;
}
.promo-card .promo-text .promo-text h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 28px;
  color: #a3b1bb;
  margin: 0 0 10px;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}
.promo-card .promo-text .promo-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #273444;
  line-height: 1.2;
}
.promo-card .promo-text .promo-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 30px;
}
.promo-card .promo-text .highlight {
  display: inline-block;
  background: #273444;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.promo-card .promo-text .price {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 18px;
  color: #273444;
}
.promo-card .promo-image {
  position: relative;
  max-width: 50%;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}
.promo-card .promo-image img {
  width: 100%;
  max-width: 580px;
  height: 45vh;
}

.promo-card2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 100px;
  overflow: hidden;
  position: relative;
}
.promo-card2 .promo-text {
  background: #ffffff;
  max-width: 50%;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}
.promo-card2 .promo-text .promo-text h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 28px;
  color: #a3b1bb;
  margin: 0 0 10px;
}
.promo-card2 .promo-text .promo-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #273444;
  line-height: 1.2;
}
.promo-card2 .promo-text .promo-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 30px;
}
.promo-card2 .promo-text .highlight {
  display: inline-block;
  background: #273444;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.promo-card2 .promo-text .price {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 18px;
  color: #273444;
}
.promo-card2 .promo-image {
  position: relative;
  max-width: 50%;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}
.promo-card2 .promo-image img {
  width: 100%;
  max-width: 580px;
}

/* tablets */
@media (max-width: 1200px) {
  .home {
    font-size: 20px;
    height: 34vh;
    padding: 20px;
  }
  .home .home-discribe {
    width: 56%;
    background: #636765;
    padding: 15px 40px 50px 60px;
  }
  .home .home-discribe h2, .home .home-discribe p {
    color: white;
  }
  .home .home-discribe .btn-home {
    display: flex;
    gap: 10px;
  }
  .home .home-discribe .btn-home #btn-buynow, .home .home-discribe .btn-home #btn-contactus {
    padding: 8px 20px;
    font-size: 18px;
  }
  .top-picks {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .top-picks .top-shoes {
    display: flex;
  }
  .top-picks .top-shoes #top-adidas {
    width: 300px;
    height: 250px;
  }
  .top-picks .top-shoes #top-adidas2, .top-picks .top-shoes #top-nike {
    height: 190px;
    width: 200px;
  }
  .top-picks .card-top-picks {
    padding: 0px;
    width: 800px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: start;
    flex-wrap: wrap;
  }
  .top-picks .card-top-picks .card-top-pick {
    width: 188px;
    height: 300px;
  }
  .top-picks .card-top-picks .card-top-pick img {
    width: 150px;
    height: 150px;
  }
  .top-picks .product-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    width: 670px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  .top-picks .product-card .product-image {
    flex: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .top-picks .product-card .product-image img {
    width: 300px;
    border-radius: 8px;
  }
  .top-picks .product-card .product-info {
    flex: 1;
    padding: 30px;
  }
  .top-picks .product-card .product-info h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .top-picks .product-card .product-info .pay-aba-ac {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .top-picks .product-card .product-info .pay-aba-ac img {
    width: 200px;
    height: 20px;
  }
  .top-picks .product-card .product-info .price {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 15px 0;
  }
  .top-picks .product-card .product-info .colors {
    display: flex;
    gap: 10px;
    margin: 15px 0;
  }
  .top-picks .product-card .product-info .colors img {
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
  }
  .top-picks .product-card .product-info .colors img:hover {
    border-color: orange;
  }
  .top-picks .product-card .product-info .colors #hide-img {
    display: none;
  }
  .top-picks .product-card .product-info .size-select {
    margin: 15px 0;
  }
  .top-picks .product-card .product-info .size-select select {
    padding: 8px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  .top-picks .product-card .product-info .actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  .top-picks .product-card .product-info .actions button {
    background: orange;
    color: white;
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid orange;
    cursor: pointer;
    transition: 0.3s;
  }
  .top-picks .product-card .product-info .actions button:hover {
    background: #ffffff;
    color: orange;
  }
  .promo-card {
    padding: 40px 50px;
  }
  .promo-card .promo-text {
    max-width: 50%;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.2s;
  }
  .promo-card .promo-image img {
    height: 25vh;
  }
  .promo-card2 {
    display: flex;
    flex-direction: column;
    padding: 40px 0px;
  }
  .promo-card2 .promo-text {
    max-width: 70%;
  }
  .promo-card2 .promo-image {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .promo-card2 .promo-image img {
    width: 900px;
    height: 40vh;
  }
}
/* Phones */
@media (max-width: 480px) {
  main {
    width: 100%;
  }
  .home {
    font-size: 8px;
    height: 30vh;
    padding: 20px;
  }
  .home .home-discribe {
    width: 65%;
    background: #636765;
    padding: 20px 50px 28px 50px;
  }
  .home .home-discribe h2, .home .home-discribe p {
    color: white;
  }
  .home .home-discribe .btn-home {
    display: flex;
    gap: 10px;
  }
  .home .home-discribe .btn-home #btn-buynow, .home .home-discribe .btn-home #btn-contactus {
    padding: 4px 15px;
    font-size: 6px;
  }
  .top-picks {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .top-picks .top-shoes {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .top-picks .top-shoes #top-adidas {
    grid-column: span 2;
    width: 400px;
    height: 250px;
  }
  .top-picks .top-shoes #top-adidas2, .top-picks .top-shoes #top-nike {
    height: 150px;
    width: 175px;
  }
  .top-picks .card-top-picks {
    padding: 10px;
    width: 390px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 15px;
    justify-content: start;
    flex-wrap: wrap;
  }
  .top-picks .card-top-picks .card-top-pick {
    width: 175px;
    height: 300px;
  }
  .top-picks .card-top-picks .card-top-pick img {
    width: 150px;
    height: 150px;
  }
  .promo-card {
    background: linear-gradient(135deg, #e8edf0 0%, #fdfdfd 100%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 0px 0px;
    overflow: hidden;
    position: relative;
  }
  .promo-card .promo-text {
    width: 500px;
  }
  .promo-card .promo-text h3 {
    width: 500px;
    font-size: 20px;
    color: #a3b1bb;
    margin: 0 0 10px;
  }
  .promo-card .promo-text h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #273444;
    line-height: 1.2;
  }
  .promo-card .promo-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
    width: 500px;
  }
  .promo-card .promo-text .highlight {
    display: inline-block;
    background: #273444;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    width: 250px;
  }
  .promo-card .promo-text .price {
    width: 500px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
    color: #273444;
  }
  .promo-card .promo-image {
    position: relative;
    width: 100%;
    margin-top: 20px;
  }
  .promo-card .promo-image img {
    width: 500px;
    height: 40vh;
  }
  .promo-card2 {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
  }
  .promo-card2 .promo-text {
    max-width: 100%;
  }
  .promo-card2 .promo-image {
    max-width: 100%;
  }
}/*# sourceMappingURL=stlye.css.map */