:root {
  --primary-color: #c8a165;
  --secondary-color: #2c3e50;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
}





.btn-custom {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border: none;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #b08950;
  color: white;
  transform: translateY(-2px);
}

.feature-box {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
}

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

.product-card {
  border: none;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

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

.product-card img {
  height: 300px;
  object-fit: cover;
}

.testimonial {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin: 1rem 0;
}

.stats-section {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('/api/placeholder/1920x400');
  background-attachment: fixed;
  color: white;
  padding: 4rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}



.newsletter-form {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  padding: 15px 20px;
  border-radius: 30px;
  border: none;
  width: 100%;
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 10px 20px;
  border-radius: 25px;
  background-color: var(--primary-color);
  border: none;
  color: white;
}


.btn-primary {
  background-color: #c8a165;
  border-color: #c8a165;
  padding: 0.5rem 1.5rem;
}

.btn-primary:hover {
  background-color: #b08950;
  border-color: #b08950;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #c8a165;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}