body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #000;
}

.navbar-brand {
  letter-spacing: 1px;
}

.nav-link {
  color: #fff !important;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffcc00 !important;
}

/* ===== PROMO SECTION ===== */
.promo-section {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 70px 20px 50px;
  font-family: 'Poppins', sans-serif;
}

.promo-content {
  margin-bottom: 40px;
}

.promo-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.promo-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.promo-title span {
  color: #00e5ff;
}

.promo-code {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 8px;
}

.promo-code span {
  font-weight: 700;
  text-decoration: underline;
  color:  #ff007f;
}

/* ===== BUTTONS ===== */
.promo-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.promo-btn {
  background-color: #fff;
  color: #000;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.promo-btn:hover {
  background: linear-gradient(90deg, #ff007f, #00e5ff);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}

/* ===== FOOTNOTE ===== */
.promo-footnote {
  font-size: 0.85rem;
  color: #bbb;
  margin-top: 40px;
  letter-spacing: 0.3px;
}

/* ===== ASOS COLLECTIVE SECTION ===== */
.collective-section {
  background: linear-gradient(135deg, #111 0%, #1b1b1b 60%, #2a2a2a 100%);
  background-image: url('../img/M1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 40px;
  text-align: center;
}

.collective-content {
  max-width: 1000px;
  margin: 0 auto;
}

.collective-logo {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.collective-logo span {
  color: #00e5ff;
}

.collective-subtitle {
  font-size: 1.2rem;
  color: #ccc;
}

/* ===== MEN COLLECTION SECTION ===== */
.men-collection {
  padding: 60px 40px;
  text-align: center;
  background: #fff;
}

.collection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.collection-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.shop-btn {
  border: 2px solid #000;
  padding: 10px 18px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.shop-btn:hover {
  background: #000;
  color: #fff;
}

/* Carousel */
.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.card {
  flex: 0 0 25%;
  box-sizing: border-box;
  padding: 10px;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  transition: transform 0.4s;
}

.card img:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .card { flex: 0 0 33.3333%; }
  .card img { height: 220px; }
}

@media (max-width: 576px) {
  .card { flex: 0 0 50%; }
  .card img { height: 180px; }
}

.card .title {
  font-size: 0.9rem;
  color: #333;
  margin: 10px 0 5px;
}

.card .price {
  font-weight: 700;
  color: #000;
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 40%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
  color: #000;
}

.carousel-btn:hover {
  background: #000;
  color: #fff;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* Dots */
.dots {
  margin-top: 20px;
}

.dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active,
.dot:hover {
  background-color: #000;
}

/* ===== NEW IN SECTION ===== */
.new-in-section {
  text-align: center;
  padding: 70px 40px;
  background-color: #fff;
}

.new-in-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}

.new-in-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.new-in-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.new-in-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.new-in-card:hover img {
  transform: scale(1.05);
}

.overlay-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .new-in-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .new-in-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .new-in-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BESTSELLERS SECTION ===== */
.bestsellers-section {
  text-align: center;
  padding: 70px 30px;
  background-color: #fff;
}

.bestsellers-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.bestsellers-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bestsellers-slider {
  display: flex;
  transition: transform 0.6s ease;
}

.bestseller-card {
  min-width: 25%;
  box-sizing: border-box;
  padding: 0 15px;
}

.bestseller-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.bestseller-card p {
  margin: 10px 0 5px;
  color: #000;
  font-size: 0.95rem;
}

.bestseller-card span {
  font-weight: 700;
  color: #000;
}

/* Arrows */
.slide-btn {
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: #888;
  padding: 10px;
  position: absolute;
  top: 40%;
  z-index: 2;
  transition: color 0.3s;
}

.slide-btn:hover {
  color: #000;
}

.prev {
  left: 5px;
}
.next {
  right: 5px;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.slider-dots span {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.slider-dots span.active {
  background-color: #000;
}

/* Shop Button */
.shop-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  margin-top: 30px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

.shop-btn:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 1024px) {
  .bestseller-card {
    min-width: 33.33%;
  }
  .bestseller-card img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .bestseller-card {
    min-width: 50%;
  }
  .bestseller-card img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .bestseller-card {
    min-width: 100%;
  }
  .bestseller-card img {
    height: 180px;
  }
}

.footer-section {
  background: #111;
  color: #bbb;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff007f, #00e5ff, #6a11cb);
}

.footer-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff007f, #6a11cb);
  border-radius: 2px;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #00e5ff;
  text-decoration: underline;
}

.play-badge {
  width: 150px;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.play-badge:hover {
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid #333;
  background-color: #0d0d0d;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
}

.footer-bottom span {
  color: #00e5ff;
  font-weight: 600;
}