/* ===== Navbar & General Styles (existing) ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.nav-logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.cart-icon {
  position: relative;
  margin-right: 20px; /* Desktop margin */
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: red;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  padding: 2px 6px;
}

/* ===== Mobile Navbar ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .cart-icon {
    margin-right: 0;
  }
}

/* ===== Banner Carousel ===== */
.banner-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .banner-section {
    height: 440px;
  }
}

.banner-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: opacity 0.6s ease-in-out;
  opacity: 0;
  z-index: 1;
}

.banner-slide.active {
  opacity: 1;
  z-index: 2;
}

.banner-slide video,
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Controls */
.banner-prev,
.banner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 300;
}

.banner-prev:hover,
.banner-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.banner-prev {
  left: 20px;
}

.banner-next {
  right: 20px;
}

/* Hide arrows on mobile for cleaner look */
@media (max-width: 768px) {
  .banner-prev,
  .banner-next {
    display: none;
  }
}

/* Dots */
.banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.banner-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.banner-dots span:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.banner-dots span.active {
  background: white;
  border-color: rgba(191, 161, 74, 0.8);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
