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;
}

 .accessories-section {
      padding: 40px 80px;
    }

    .accessories-section h1 {
      font-size: 36px;
      font-weight: 600;
      margin-bottom: 25px;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 25px;
    }

    .product-card {
      border: 1px solid #ddd;
      border-radius: 10px;
      text-align: center;
      padding: 10px;
      background-color: #fff;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .product-card img {
      width: 100%;
      height: 270px;
      object-fit: cover;
      border-radius: 10px;
    }

    .product-card h3 {
      font-size: 16px;
      margin: 10px 0;
    }

    .product-card button {
      background-color: #111;
      color: white;
      border: none;
      padding: 8px 15px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
      transition: 0.3s;
    }

    .product-card button:hover {
      background-color: #f39c12;
    }

    /* ===== PAGINATION ===== */
    .pagination {
      text-align: center;
      margin-top: 40px;
      justify-content: center;
      align-items: center;
    }

    .pagination button {
      margin: 5px;
      padding: 8px 15px;
      border: none;
      background-color: #111;
      color: white;
      cursor: pointer;
      border-radius: 5px;
       
    }

    .pagination button.active {
      background-color: #f39c12;
    }

    /* ===== MINI CART MODAL ===== */
    .cart-modal {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 320px;
      height: 100%;
      background: #fff;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
      padding: 20px;
      overflow-y: auto;
      z-index: 1000;
      transition: transform 0.3s ease-in-out;
    }

    .cart-modal.active {
      display: block;
    }

    .cart-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 2px solid #111;
      padding-bottom: 10px;
      margin-bottom: 15px;
    }

    .cart-header h2 {
      margin: 0;
      font-size: 22px;
    }

    .close-cart {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
    }

    .cart-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      border-bottom: 1px solid #ddd;
      padding-bottom: 10px;
    }

    .cart-item img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 8px;
      margin-right: 10px;
    }

    .cart-item h4 {
      font-size: 14px;
      margin: 0 0 5px 0;
    }

    .cart-item p {
      margin: 0;
      font-size: 13px;
      color: #555;
    }

    .checkout-btn {
      width: 100%;
      padding: 10px;
      border: none;
      background-color: #111;
      color: white;
      font-size: 16px;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 10px;
    }

    .checkout-btn:hover {
      background-color: #f39c12;
    }

    .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;
}