:root {
  --primary-green: #2d5a27;
  --secondary-green: #4a7c59;
  --light-green: #8fbc8f;
  --accent-green: #90c695;
  --dark-green: #1e3f20;
  --cream: #f8f9fa;
}

* {
  font-family: "Prompt", sans-serif;
}

body {
  background-color: var(--cream);
}

/* Navigation */
.navbar {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: white !important;
}

.nav-link {
  color: white !important;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.nav-link:hover {
  color: var(--accent-green) !important;
  transform: translateY(-2px);
}

/* Hero Carousel */
.carousel-item {
  height: 70vh;
  min-height: 400px;
}

.carousel-item img {
  object-fit: cover;
  filter: brightness(0.8);
}

.carousel-caption {
  background: rgba(45, 90, 39, 0.8);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.carousel-caption h1 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--secondary-green),
    var(--primary-green)
  );
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.4);
}

/* Section Styling */
.section-title {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--secondary-green),
    var(--accent-green)
  );
}

/* Product Cards */
.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(74, 124, 89, 0.2);
}

.product-card img {
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-card .card-body {
  padding: 1.5rem;
}

.product-price {
  color: var(--secondary-green);
  font-weight: 700;
  font-size: 1.2rem;
}

.badge-new {
  background: var(--accent-green);
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
}

/* Promotion Section */
.promo-section {
  background: linear-gradient(135deg, var(--light-green), var(--accent-green));
  color: white;
  padding: 4rem 0;
  margin: 4rem 0;
}

.promo-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 3rem 0 1rem 0;
}

.footer h5 {
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-green);
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-caption {
    padding: 1rem;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
