body {
  box-sizing: border-box;
}

.hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f8f9fa" width="1200" height="600"/><circle cx="300" cy="300" r="80" fill="%23dee2e6"/><circle cx="900" cy="200" r="60" fill="%23ced4da"/></svg>');
  background-size: cover;
  background-position: center;
  min-height: 500px;
  color: white;
}

.product-card {
  transition: transform 0.2s;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 300px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #6c757d;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}

.feature-icon {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0d6efd;
}

.original-price {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 1rem;
}

.brand-carousel-container {
  position: relative;
  height: 60px;
}

.brand-carousel {
  animation: slide 30s linear infinite;
  white-space: nowrap;
  width: fit-content;
}

.brand-item {
  display: inline-block;
  font-weight: bold;
  font-size: 1.2rem;
  color: #6c757d;
  margin: 0 3rem;
  letter-spacing: 2px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.brand-item:hover {
  opacity: 1;
  color: #0d6efd;
}

.category-carousel-container {
  position: relative;
  height: 400px;
}

.category-carousel {
  animation: slideCategories 40s linear infinite;
  width: fit-content;
  gap: 2rem;
}

.category-slide {
  flex: 0 0 280px;
  transition: transform 0.3s ease;
}

.category-slide:hover {
  transform: translateY(-5px);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideCategories {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* PRODUCTS LISTING */
.product-card {
 background: #fff;
  overflow: hidden;
  position: relative;
  margin: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.product-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

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


.product-card:hover .wishlist-btn {
  opacity: 1;
  transform: scale(1.1);
}

/* Product Details */
.product-details2 {
  padding: 10px 12px;
  text-align: center;
}

.product-details2 h4 {
  font-size: 1rem;
  margin: 5px 0;
  color: #333;
}

.product-price {
  font-size: 0.95rem;
  color: #333;

  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  font-family: -apple-system, sans-serif;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  margin-left: 6px;
  font-weight: normal;
}

.discount {
  color: #ff5722;
  margin-left: 4px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .product-image img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .product-image img {
    height: 180px;
  }
  .product-details h4 {
    font-size: 0.95rem;
  }
}
/* PRODUCTS LISTING */