:root1 {
  --primary-color: #0d6efd;
  --primary-gradient-end: #0a58ca;
  --secondary-color: #6c757d;
  --accent-color: #198754;
  --dark-color: #212529;
  --light-color: #f8f9fa;
}


:root {
  --primary-color: #c5a059;
  /* Muted Gold */
  --primary-gradient-end: #8a6e35;
  /* Dark Gold/Bronze */
  --secondary-color: #495057;
  /* Dark Gray */
  --accent-color: #e0c097;
  /* Light Beige */
  --dark-color: #121212;
  /* Deep Black */
  --light-color: #f4f4f4;
  /* Soft Gray */
}


:root3 {
  --primary-color: #6f42c1;
  /* Vibrant Purple */
  --primary-gradient-end: #4e2a96;
  /* Deep Purple */
  --secondary-color: #adb5bd;
  /* Silver */
  --accent-color: #0dcaf0;
  /* Cyan */
  --dark-color: #0f0f0f;
  /* Jet Black */
  --light-color: #f8f9fa;
  /* White */
}



body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--dark-color);
}

/* Header & Nav */
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 500;
}

/* Hero Section Styles Removed - Replaced by Carousel */

/* Product Cards */
.card {
  border: none;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.card-img-top {
  height: 200px;
  object-fit: contain;
  padding: 1rem;
  background-color: #fff;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.original-price {
  text-decoration: line-through;
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

/* Categories */
.category-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--dark-color);
  display: block;
  height: 100%;
}

.category-card:hover {
  background: var(--light-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* Features/Benefits */
.feature-box {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: white;
}

footer h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Responsive */
/* Hero Carousel */
.hero-carousel {
  position: relative;
}

.hero-carousel .carousel-item {
  height: 600px;
  background-color: var(--dark-color);
}

.hero-carousel .carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-carousel .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-carousel .overlay.bg-light-gradient {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.hero-carousel .carousel-caption {
  z-index: 3;
  padding-bottom: 3rem;
  bottom: 0;
  right: 0;
  left: 0;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  z-index: 4;
  width: 5%;
}

@media (max-width: 768px) {
  .hero-carousel .carousel-item {
    height: 500px;
  }

  .hero-carousel h1 {
    font-size: 2.5rem;
  }

  /* Adjust caption alignment for mobile if needed */
  .hero-carousel .carousel-caption {
    text-align: center !important;
    align-items: center !important;
  }

  .hero-carousel .carousel-caption .row {
    justify-content: center !important;
  }
}