 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: 60px 20px 40px;
}

.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.5rem;
  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;
}

/* ===== CATEGORY BUTTONS ===== */
.promo-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.promo-buttons button {
  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;
}

.promo-buttons button:hover {
  background: linear-gradient(90deg, #ff007f, #00e5ff);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}

/* ===== NOTE ===== */
.promo-note {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .promo-title {
    font-size: 1.8rem;
  }

  .promo-buttons button {
    width: 100%;
  }
}

/* ===== Dark Modern Fashion Carousel ===== */
.asos-dark-section {
  background: radial-gradient(circle at top, #181818, #000);
  padding: 80px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.asos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  margin-bottom: 40px;
}

.asos-header h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f4f4f4;
}

.shop-now-btn {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  letter-spacing: 1px;
  font-weight: 500;
  transition: 0.3s;
}

.shop-now-btn:hover {
  background: #ff4b2b;
  border-color: #ff4b2b;
}

/* ===== Carousel Layout ===== */
.carousel-container {
  overflow: hidden;
  width: 90%;
  margin: auto;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.product-card {
  flex: 0 0 25%;
  padding: 15px;
  position: relative;
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .product-card img {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .product-card {
    flex: 0 0 50%;
  }
  .product-card img {
    height: 180px;
  }
}

.product-card h4 {
  font-size: 16px;
  margin-top: 15px;
  color: #ddd;
}

.product-card p {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}

.discount {
  color: #ff4b2b;
}

/* ===== Navigation Buttons ===== */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  padding: 10px 15px;
  z-index: 10;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.left-btn { left: 40px; }
.right-btn { right: 40px; }

/* ===== Dots ===== */
.carousel-dots {
  margin-top: 30px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #666;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
  background-color: #ff4b2b;
  transform: scale(1.2);
}

.new-in-section {
  background: #fff;
}

.new-in-section h2 {
  font-size: 2.2rem;
  color: #000;
  font-weight: 700;
}

.new-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
  aspect-ratio: 4 / 5;
}

.new-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.new-item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.new-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 1 / 1) {
  .new-item {
    height: 220px;
  }
}

@media (max-width: 992px) {
  @supports not (aspect-ratio: 1 / 1) {
    .new-item { height: 200px; }
  }
}

@media (max-width: 576px) {
  @supports not (aspect-ratio: 1 / 1) {
    .new-item { height: 160px; }
  }
}

.new-item .overlay h5 {
  margin: 0;
  font-weight: 700;
}

.bestseller-section {
  background-color: #fff;
  color: #000;
}

.bestseller-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.bestseller-card {
  background: #fff;
  border: none;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bestseller-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.bestseller-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .bestseller-card img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .bestseller-card img {
    height: 180px;
  }
}

.bestseller-card h6 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #000;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
}

.carousel-indicators [data-bs-target] {
  background-color: #000;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #555;
}

.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;
}
