:root {
  --primary-color: #2d5f3f;
  --primary-dark: #1e4029;
  --primary-light: #3f7a52;
  --accent-color: #5c8a6f;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(45, 95, 63, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 95, 63, 0.85) 0%, rgba(30, 64, 41, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 400px;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(45, 95, 63, 0.95) 0%, rgba(45, 95, 63, 0.7) 70%, transparent 100%);
  padding: 2rem;
  color: white;
  text-align: center;
}

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

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

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

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

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

.feature-box,
.info-card,
.value-card,
.audience-box,
.routine-card,
.help-card,
.ingredient-card,
.routine-suggestion {
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-box:hover,
.info-card:hover,
.value-card:hover,
.audience-box:hover,
.help-card:hover,
.ingredient-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.disclaimer-box,
.guideline-box,
.info-box {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.faq-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
}

.cta-section .btn-primary {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border-color: var(--bg-white);
}

.cta-section .btn-primary:hover {
  background-color: var(--bg-light);
  border-color: var(--bg-light);
}

.footer {
  background-color: #212529 !important;
}

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-color) !important;
  text-decoration: none;
}

.page-header {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
}

.contact-form-container {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.thank-you-section {
  min-height: 60vh;
}

.policy-content h3 {
  color: var(--primary-color);
  margin-top: 2rem;
}

.policy-content h5 {
  color: var(--primary-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  color: white;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner a {
  color: white;
  text-decoration: underline;
}

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

  .hero-content h1 {
    font-size: 2rem;
  }

  .category-card {
    height: 300px;
  }

  .product-card img,
  .product-detail-card img {
    height: 200px;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0 !important;
  }
}
