:root {
  --primary-color: #c84646;
  --primary-dark: #a83535;
  --primary-light: #e57373;
  --text-dark: #2c2c2c;
  --text-light: #5a5a5a;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  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;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.site-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  box-shadow: 0 2px 10px var(--shadow);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand .brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: opacity 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
  opacity: 0.8;
  color: var(--white);
}

.hero-section {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)),
    url("/placeholder.svg?height=600&width=1200") center / cover;
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(200, 70, 70, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

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

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

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px var(--shadow);
}

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

.feature-box,
.info-card,
.selection-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  height: 100%;
}

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

.page-header h1 {
  margin-bottom: 1rem;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff5f5, #ffe8e8);
  padding: 2rem;
  border-radius: 12px;
  border-left: 5px solid var(--primary-color);
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  height: 100%;
}

.testimonial-author {
  font-style: italic;
  color: var(--text-light);
  margin-top: 1rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
}

.faq-item h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

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

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px var(--shadow);
}

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

.product-info {
  padding: 2rem;
}

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

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

.ingredients-block h5 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

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

.ingredients-block li {
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.info-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

.info-section {
  background: var(--bg-light);
  padding: 4rem 0;
}

.approach-card,
.benefit-item,
.commitment-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  height: 100%;
}

.commitment-box {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.contact-form-container {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
}

.form-control {
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

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

.thankyou-section {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.thankyou-content {
  text-align: center;
  max-width: 600px;
}

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

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
}

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

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

.policy-content ul {
  margin-bottom: 1.5rem;
}

.site-footer {
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.site-footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0 0.5rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 15px var(--shadow);
  z-index: 1000;
  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: 1rem;
}

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

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

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

.cookie-buttons button {
  white-space: nowrap;
}

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

  .hero-content p {
    font-size: 1.1rem;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }

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

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

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

  .policy-content {
    padding: 2rem 1rem;
  }
}

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

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

  .hero-content p {
    font-size: 1rem;
  }

  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}

.img-fluid.rounded {
  border-radius: 12px;
}

.shadow-sm {
  box-shadow: 0 2px 10px var(--shadow);
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.text-center {
  text-align: center;
}

.mr-3 {
  margin-right: 1rem;
}
