
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: #f4f4f4;
}

.top-bar {
  background: #fff;
  padding: 10px 20px;
  font-size: 14px;
  display: flex;
  gap: 15px;
}

.top-bar a {
  text-decoration: none;
  color: #333;
}

.top {
  width: 50%;
  float: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top a{
  text-decoration: none;
  color: #333;
}

.main-header {
  background: #fff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 32px;
  font-weight: bold;
  color: #3665f3;
}

.search-box {
  display: flex;
  gap: 10px;
  flex: 1;
  margin: 0 20px;
  font-family: 'outfit', sans-serif;
}

.search-box input {
  flex: 1;
  padding: 10px;
  border-radius: 15px;
  font-family: 'outfit', sans-serif;

}


.search-box select, .search-box button {
  padding: 10px;
    border-radius: 15px;
    font-family: 'outfit', sans-serif;
    cursor: pointer;
}

.header-icons span {
  font-size: 20px;
  margin-left: 15px;
  cursor: pointer;
}

.nav-links {
  background: #fff;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.hero {
  display: flex;
  justify-content: space-between;
  background: #fafafa;
  padding: 40px 20px;
  display: flex;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 32px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-text button {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  cursor: pointer;

}

.shop-now {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-family: 'outfit', sans-serif;
}

.hero-carousel {
  position: relative;
}

.hero-carousel img {
  max-width: 400px;
  border-radius: 10px;
}

.carousel-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-controls button {
  background: #000;
  color: #fff;
  border: none;
  margin: 0 5px;
  padding: 5px 10px;
  border-radius: 50%;
  cursor: pointer;
}


 .banner {
      background-color: #e60033;
      color: white;
      padding: 30px 20px;
      text-align: center;
      position: relative;
    }

    .banner h2 {
      margin: 0;
      font-size: 24px;
    }

    .banner p {
      margin: 5px 0 15px;
    }

    .banner button {
      background-color: white;
      color: #e60033;
      border: none;
      padding: 10px 20px;
      border-radius: 20px;
      font-size: 16px;
      cursor: pointer;
    }

    .section {
      padding: 30px 20px;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .section-header h3 {
      margin: 0;
      font-size: 20px;
    }

    .section-header a {
      color: #0077cc;
      text-decoration: none;
      font-weight: bold;
    }

    .sneaker-list {
      display: flex;
      overflow-x: auto;
      gap: 20px;
    }

    .sneaker {
      flex: 0 0 auto;
      width: 150px;
      text-align: center;
    }

    .sneaker img {
      width: 100%;
      background-color: white;
      padding: 10px;
      border-radius: 100%;
    }

    .sneaker-name {
      margin-top: 10px;
      font-size: 14px;
    }

    /* Scrollbar Styling */
    .sneaker-list::-webkit-scrollbar {
      height: 6px;
    }
    .sneaker-list::-webkit-scrollbar-thumb {
      background-color: #ccc;
      border-radius: 10px;
    }

    <!-- Responsive Design-->
    h2 {
      margin-bottom: 20px;
    }

    .carousel-container {
      position: relative;
    }

    .carousel {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 15px;
      padding-bottom: 10px;
    }

    .carousel::-webkit-scrollbar {
      height: 6px;
    }

    .carousel::-webkit-scrollbar-thumb {
      background-color: #ccc;
      border-radius: 10px;
    }

    .sneaker-card {
      min-width: 200px;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      position: relative;
      flex-shrink: 0;
      cursor: pointer;
    }

    .sneaker-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      cursor: pointer;
    }

    .sneaker-info {
      padding: 10px;
    }

    .sneaker-title {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 5px;
    }

    .sneaker-price {
      font-weight: bold;
      color: #000;
    }

    .heart-icon {
      position: absolute;
      top: 10px;
      right: 10px;
      background: white;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 0 3px rgba(0,0,0,0.3);
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: white;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 18px;
      cursor: pointer;
      box-shadow: 0 0 4px rgba(0,0,0,0.3);
      z-index: 1;
    }

    .arrow.left {
      left: -15px;
    }

    .arrow.right {
      right: -15px;
    }

    

     footer {
      background-color: #f7e7e7;
      padding: 40px 20px 20px;
      font-size: 14px;
      color: #333;
    }

    footer a {
      color: #333;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    .social-icons a {
      margin-right: 10px;
      font-size: 18px;
    }

    .language-select {
      border: 1px solid #ccc;
      border-radius: 6px;
      padding: 5px 10px;
      background-color: #fff;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .footer-bottom {
      font-size: 12px;
      color: #666;
      margin-top: 30px;
    }

    .footer-bottom a {
      font-size: 12px;
      color: #666;
      margin-right: 10px;
    }

    @media (max-width: 767px) {
      footer .row > div {
        margin-bottom: 20px;
      }
    }