* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* TOP BAR */
.top-bar {
  background: #0d1b2a;
  text-align: center;
  padding: 8px;
  font-size: 12px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
  color: #000;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.logo span {
  font-size: 12px;
  display: block;
}

.nav-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #000;
}

.icons span {
  margin-left: 15px;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.hero h1 {
  font-size: 60px;
}

.hero h1 span {
  font-weight: bold;
}

.hero button {
  margin-top: 20px;
  padding: 12px 30px;
  border: none;
  background: #fff;
  color: #000;
  border-radius: 30px;
  cursor: pointer;
}

/* SPOTLIGHT */
.spotlight {
  text-align: center;
  padding: 60px 20px;
  background: radial-gradient(circle, #222, #000);
}

.spotlight h2 {
  margin-bottom: 10px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  text-align: left;
}

.card img {
  width: 100%;
}

.price {
  color: green;
}

.price span {
  text-decoration: line-through;
  color: gray;
}

.card button {
  margin-top: 10px;
  padding: 8px 15px;
  border: none;
  background: black;
  color: white;
  cursor: pointer;
}
.sneakers-section {
  background: #fff;
  padding: 60px 40px;
  color: #000;
}

/* TITLE */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.section-title h2 {
  margin: 0 20px;
  font-size: 28px;
  letter-spacing: 2px;
}

.section-title .line {
  flex: 1;
  height: 1px;
  background: #ccc;
}

/* GRID */
.products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* CARD */
.product {
  text-align: center;
  position: relative;
  transition: 0.3s;
}

.product img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* BADGES */
.badge {
  position: absolute;
  top: -10px;
  left: 10px;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 6px;
  color: #fff;
}

.ship {
  background: #000;
}

.sale {
  background: #c40000;
}

/* TEXT */
.name {
  font-size: 14px;
  margin-bottom: 5px;
}

.price {
  font-size: 14px;
}

.price span {
  text-decoration: line-through;
  color: red;
  margin-left: 5px;
}

/* HOVER */
.product:hover {
  transform: translateY(-5px);
}
.product img {
  transition: 0.3s;
}

.product:hover img {
  transform: scale(1.05);
}

.view-all-container {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

/* Hover effect so it feels “premium” */
.view-all-btn:hover {
  background: #222;
  transform: translateY(-2px);
}
.view-all-btn {
  letter-spacing: 1px;
  font-weight: 500;
}
/* SECTION */
.category-section {
  background: #f5f5f5;
  padding: 60px 40px;
  text-align: center;
  color: #000;
}

/* WRAPPER */
.category-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SLIDER */
.categories {
  display: flex;
  gap: 40px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 20px;
}

/* ITEM */
.category-item {
  text-align: center;
  min-width: 150px;
  transition: 0.3s;
}

/* CIRCLE */
.circle {
  width: 140px;
  height: 140px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: 0.3s;
}

.circle img {
  width: 100px;
  object-fit: contain;
}

/* ACTIVE CENTER */
.category-item.active .circle {
  background: #bbb;
  transform: scale(1.1);
}

/* TEXT */
.category-item p {
  margin-top: 10px;
  font-size: 14px;
}

/* NAV BUTTONS */
.nav-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 2;
}

.nav-btn.left {
  left: 0;
}

.nav-btn.right {
  right: 0;
}

/* HOVER */
.category-item:hover .circle {
  background: #ddd;
  transform: scale(1.05);
}
/* RESPONSIVE */
@media (max-width: 1024px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

.streetwear-section {
  background: #fff;
  padding: 60px 40px;
  color: #000;
}

/* GRID */
.streetwear-section .products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* PRODUCT */
.streetwear-section .product {
  text-align: center;
  position: relative;
  transition: 0.3s;
}

.streetwear-section .product img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* BADGES */
.badge {
  position: absolute;
  top: -10px;
  left: 10px;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 6px;
  color: #fff;
}

.badge.ship {
  background: #000;
}

.badge.sale {
  background: #c40000;
}

.badge.right {
  left: auto;
  right: 10px;
}

/* TEXT */
.name {
  font-size: 14px;
  margin-bottom: 5px;
}

.price {
  font-size: 14px;
}

.price span {
  text-decoration: line-through;
  color: red;
  margin-left: 5px;
}

/* HOVER */
.product:hover {
  transform: translateY(-5px);
}

.product img {
  transition: 0.3s;
}

.product:hover img {
  transform: scale(1.05);
}

/* VIEW ALL BUTTON */
.view-all-container {
  text-align: center;
  margin-top: 50px;
}

.view-all-btn {
  background: #000;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.view-all-btn:hover {
  background: #222;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .streetwear-section .products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .streetwear-section .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* banner section */
.running-banner {
  height: 80vh;
  background: url('images/running-banner.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY for readability */
.running-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(assets/banner.jpg) center/cover no-repeat;
}

/* CONTENT */
.banner-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
}

/* LOGO */
.logo {
  border: 1px solid #fff;
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 20px;
  font-weight: bold;
  filter: drop-shadow(0 0 10px #000);
}

.logo span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  filter: drop-shadow(0 0 10px #000);
}

/* TITLE */
.banner-content h2 {
  letter-spacing: 6px;
  font-size: 28px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 10px #000);

}

/* BRANDS */
.brands {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  font-weight: 600;
  filter: drop-shadow(0 0 2px #000);
}

/* BUTTON */
.shop-btn {
  background: #fff;
  color: #000;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.shop-btn:hover {
  background: #ddd;
  transform: translateY(-2px);
}

/* COPYRIGHT */
.copyright {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .banner-content h2 {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .brands {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.image-slider {
  position: relative;
  padding: 40px;
  background: #f5f5f5;
  overflow: hidden;
}

/* TRACK */
.slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* HIDE SCROLLBAR */
.slider-track::-webkit-scrollbar {
  display: none;
}

/* ITEM */
.slide-item {
  min-width: 45%;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.slide-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.3s;
}

/* HOVER */
.slide-item:hover img {
  transform: scale(1.05);
}

/* NAV BUTTONS */
.img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 2;
}

.img-nav.prev {
  left: 10px;
}

.img-nav.next {
  right: 10px;
}

/* faqs */
.faq-section {
  background: #fff;
  padding: 60px 40px;
  color: #000;
}

/* CONTAINER */
.faq-container {
  max-width: 900px;
  margin: auto;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
}

/* ICON */
.icon {
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  font-size: 14px;
  color: #555;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 100px;
  margin-top: 10px;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}
.faq-answer {
  transition: max-height 0.4s ease;
}
/* footer */
.footer {
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: #fff;
  padding: 60px 40px 20px;
  font-size: 14px;
}

/* TOP */
.footer-top {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 14px;
}

/* LINKS */
.footer-col a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer-col a:hover {
  color: #fff;
}

/* SOCIAL */
.socials {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.socials span {
  width: 35px;
  height: 35px;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* GRID INSIDE */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-grid h4 {
  margin-bottom: 10px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.footer-logo {
  border: 1px solid #fff;
  padding: 6px 12px;
  font-weight: bold;
}

.footer-logo span {
  display: block;
  font-size: 12px;
  font-weight: normal;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-col a {
  position: relative;
}

.footer-col a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #fff;
  transition: 0.3s;
}

.footer-col a:hover::after {
  width: 100%;
}
/* FLOATING BUTTONS */
.floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.whatsapp, .help {
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.help {
  background: white;
  color: black;
}