:root {
  --primary-color: #5a6d57;
  --primary-dark: #4a5d47;
  --primary-light: #7a8d77;
  --accent-color: #8b9b88;
  --text-dark: #2c2c2c;
  --text-light: #6c6c6c;
  --bg-light: #f8f9f8;
  --bg-white: #ffffff;
  --border-color: #e0e4e0;
}

* {
  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;
  background-color: var(--bg-white);
}

.site-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-secondary {
  padding: 3rem 0;
}

.info-section {
  padding: 4rem 0;
}

.info-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.info-section p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.info-section ul {
  margin: 1.5rem 0;
}

.info-section ul li {
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.category-list,
.format-list {
  list-style: none;
  padding-left: 0;
}

.category-list li,
.format-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.category-list li:last-child,
.format-list li:last-child {
  border-bottom: none;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: var(--bg-white);
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  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 12px rgba(90, 109, 87, 0.3);
}

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

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

.btn-secondary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--bg-white);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
}

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

.site-footer {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.site-footer h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bg-white);
}

.site-footer p {
  color: var(--bg-light);
  font-size: 0.95rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--bg-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: var(--accent-color);
  margin-top: 1rem;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.products-section {
  padding: 4rem 0;
}

.category-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 3rem 0 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary-color);
}

.product-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

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

.product-tag {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.product-ingredients {
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.product-ingredients h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.product-ingredients ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.product-ingredients li {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.lifestyle-fit {
  font-size: 0.95rem;
  color: var(--text-light);
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.about-content {
  padding: 4rem 0;
}

.about-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.transparency-list,
.not-list {
  list-style: none;
  padding-left: 0;
}

.transparency-list li,
.not-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
}

.transparency-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.not-list li:before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.25rem;
}

.about-location {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.about-location h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-section {
  padding: 4rem 0;
}

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

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.form-control {
  border-color: var(--border-color);
  border-radius: 6px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(90, 109, 87, 0.25);
}

.thank-you-section {
  padding: 5rem 0;
  min-height: 60vh;
}

.thank-you-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.thank-you-section .lead {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.policy-content {
  padding: 4rem 0;
}

.policy-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.policy-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.policy-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.policy-content li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.rounded {
  border-radius: 8px;
}

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

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .info-section h2 {
    font-size: 1.75rem;
  }

  .page-header h1 {
    font-size: 2.25rem;
  }

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

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0;
  }

  .info-section {
    padding: 3rem 0;
  }

  .page-header {
    padding: 3rem 0;
  }

  .btn-primary,
  .btn-outline-primary {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
}
