:root {
  --primary-green: #28a745;
  --primary-dark: #218838;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

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

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

.text-primary,
.btn-primary {
  background-color: var(--primary-green) !important;
  border-color: var(--primary-green) !important;
}

.btn-primary:hover {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}

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

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.categories-section {
  background-color: var(--white);
}

.category-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background-color: var(--white);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.category-content {
  padding: 20px;
}

.info-section {
  background-color: var(--bg-light);
}

.info-icon {
  font-size: 3rem;
  color: var(--primary-green);
}

.feature-icon {
  font-size: 2.5rem;
}

.product-category-card {
  position: relative;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
  padding: 30px;
  color: var(--white);
}

.product-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.product-features li {
  padding: 5px 0;
  border-bottom: 1px solid #e9ecef;
}

.product-features li:last-child {
  border-bottom: none;
}

.info-box {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-green);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.value-list {
  list-style: none;
  padding-left: 0;
}

.value-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.value-list li:last-child {
  border-bottom: none;
}

.contact-info-box {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
}

.map-placeholder {
  background-color: #e9ecef;
  border-radius: 8px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--primary-green);
  background-color: #d4edda;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.legal-content {
  font-size: 0.95rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.legal-content h4 {
  font-size: 1.1rem;
}

.footer {
  background-color: #343a40;
}

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

.footer a:hover {
  color: var(--white) !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-content a {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .category-overlay {
    padding: 20px;
  }

  .product-category-card {
    height: 300px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .button-group .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
