:root {
  --primary-red: #dc2626;
  --dark-gray: #1f2937;
  --medium-gray: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;
}

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

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

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-red) !important;
}

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

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

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.hero-section h1 {
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.hero-section .lead {
  font-size: 20px;
  color: var(--medium-gray);
  margin-bottom: 30px;
}

.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.content-section h3 {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.page-header {
  background-color: var(--light-gray);
  padding: 60px 0 40px 0;
  text-align: center;
}

.page-header h1 {
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.page-header .lead {
  color: var(--medium-gray);
  font-size: 18px;
}

.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.info-card h3 {
  color: var(--primary-red);
  margin-bottom: 15px;
}

.benefit-card {
  text-align: center;
  padding: 30px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px auto;
}

.benefit-card h4 {
  color: var(--dark-gray);
  font-weight: 600;
  margin-bottom: 15px;
}

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

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

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

.product-info {
  padding: 20px;
}

.product-info h4 {
  color: var(--dark-gray);
  font-weight: 600;
  margin-bottom: 10px;
}

.product-card-full {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.product-card-full .product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-full h3 {
  color: var(--dark-gray);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.ingredient-list {
  font-size: 14px;
  color: var(--medium-gray);
  margin-bottom: 20px;
}

.ingredient-list li {
  margin-bottom: 5px;
}

.product-card-full .btn {
  margin-top: auto;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-red);
}

.testimonial-author {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--dark-gray);
  font-weight: 600;
}

.testimonial-author span {
  color: var(--medium-gray);
  font-size: 14px;
}

.quality-info {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quality-info h4 {
  color: var(--primary-red);
  margin-bottom: 15px;
}

.value-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.value-card h4 {
  color: var(--primary-red);
  margin-bottom: 15px;
}

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

.benefits-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

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

.order-form,
.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.contact-info-box {
  background: var(--light-gray);
  padding: 25px;
  border-radius: 8px;
}

.contact-info-box h4 {
  color: var(--primary-red);
  margin-bottom: 20px;
}

.contact-form-container {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
}

.faq-item {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h5 {
  color: var(--primary-red);
  margin-bottom: 10px;
}

.thank-you-section {
  padding: 100px 0;
  min-height: 60vh;
}

.thank-you-content {
  background: var(--white);
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #10b981;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 30px auto;
}

.contact-reminder {
  background: var(--light-gray);
  padding: 25px;
  border-radius: 8px;
}

.legal-content {
  padding: 40px 0;
}

.legal-content h2 {
  color: var(--primary-red);
  font-size: 28px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: var(--dark-gray);
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content ul {
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 10px;
}

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

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

.btn-outline-primary {
  border-color: var(--primary-red);
  color: var(--primary-red);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-outline-dark {
  border-color: var(--dark-gray);
  color: var(--dark-gray);
  font-weight: 600;
}

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

.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 50px 0 20px 0;
  margin-top: 60px;
}

.footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer p {
  color: #d1d5db;
  margin-bottom: 10px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

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

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #374151;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 15px;
  color: #9ca3af;
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-legal a:hover {
  color: var(--primary-red);
}

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

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

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

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

.cookie-banner .btn-light {
  background-color: var(--white);
  color: var(--dark-gray);
  border: none;
  font-weight: 600;
}

.cookie-banner .btn-outline-light {
  border-color: var(--white);
  color: var(--white);
  font-weight: 600;
}

.cookie-banner .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--dark-gray);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .hero-section .lead {
    font-size: 18px;
  }

  .hero-section .btn {
    display: block;
    margin: 10px auto;
    width: 100%;
  }

  .content-section {
    padding: 40px 0;
  }

  .page-header {
    padding: 40px 0 30px 0;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-banner .col-md-4 {
    text-align: center !important;
    margin-top: 15px;
  }

  .cookie-banner .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}
