:root {
  --primary-color: #5b6b8f;
  --primary-dark: #4a5a7f;
  --secondary-color: #7b8ba5;
  --neutral-100: #ffffff;
  --neutral-200: #f7f8fa;
  --neutral-300: #e5e7eb;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --border-radius: 8px;
  --box-shadow: 0 2px 8px rgba(91, 107, 143, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--neutral-100);
}

.site-header {
  background-color: var(--neutral-100);
  box-shadow: var(--box-shadow);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: var(--transition);
}

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

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  margin-left: 1.5rem;
  transition: var(--transition);
}

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

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

.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.content-section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--neutral-100);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 107, 143, 0.3);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

.rounded-lg {
  border-radius: var(--border-radius);
}

.shadow-sm {
  box-shadow: var(--box-shadow);
}

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

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

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  margin-top: 2rem;
}

.site-footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-title {
  color: var(--neutral-100);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-text {
  color: var(--neutral-400);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

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

.footer-links a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--neutral-100);
}

.footer-bottom {
  border-top: 1px solid var(--neutral-700);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copyright {
  color: var(--neutral-400);
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--neutral-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--neutral-100);
}

.category-filter {
  margin-bottom: 2rem;
}

.filter-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.product-card {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  height: 100%;
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(91, 107, 143, 0.2);
  transform: translateY(-4px);
}

.product-header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--neutral-300);
}

.product-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.product-category {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--neutral-100);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-description {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.product-ingredients {
  background-color: var(--neutral-200);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.25rem;
}

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

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

.product-ingredients li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.product-meta {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.product-meta p {
  margin-bottom: 0.75rem;
}

.product-meta strong {
  color: var(--text-primary);
  font-weight: 600;
}

.collection-tags {
  margin-bottom: 2rem;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  background-color: var(--secondary-color);
  color: var(--neutral-100);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.info-box {
  background-color: var(--neutral-100);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.info-box p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.contact-details {
  background-color: var(--neutral-200);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.contact-details-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

.contact-form-container {
  background-color: var(--neutral-100);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid var(--neutral-300);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(91, 107, 143, 0.25);
}

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

.thank-you-content {
  background-color: var(--neutral-100);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.thank-you-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.thank-you-actions {
  margin-top: 2.5rem;
}

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

.policy-content {
  background-color: var(--neutral-100);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.policy-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-heading:first-child {
  margin-top: 0;
}

.policy-subheading {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-list {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.policy-list li {
  margin-bottom: 0.5rem;
}

.alert {
  padding: 1.25rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.alert-warning {
  background-color: #fff3cd;
  border: 1px solid #ffe69c;
  color: #856404;
}

.alert-info {
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
}

.feature-box {
  background-color: var(--neutral-100);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-text {
  color: var(--text-secondary);
  line-height: 1.7;
}

.transparency-box {
  background-color: var(--neutral-100);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
}

.transparency-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.transparency-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transparency-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: var(--text-secondary);
  position: relative;
  line-height: 1.7;
}

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

.disclaimer-box {
  background-color: var(--neutral-200);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.disclaimer-text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.contact-info-box {
  background-color: var(--neutral-200);
  padding: 2.5rem;
  border-radius: var(--border-radius);
}

.contact-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-800);
  color: var(--neutral-100);
  padding: 1.25rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: var(--neutral-100);
}

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

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

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

  .page-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal {
    justify-content: center;
  }

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

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

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

  .product-card {
    margin-bottom: 1.5rem;
  }

  .policy-content {
    padding: 1.5rem;
  }

  .cookie-banner .row {
    text-align: center;
  }

  .cookie-banner .col-md-4 {
    margin-top: 1rem;
  }
}
