:root {
  --primary-color: #c84343;
  --primary-dark: #a33636;
  --primary-light: #e05555;
  --text-dark: #2c2c2c;
  --text-medium: #5a5a5a;
  --text-light: #8e8e8e;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --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(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

.header-main {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
}

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

.brand-logo:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

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

.hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200, 67, 67, 0.85) 0%, rgba(163, 54, 54, 0.75) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  color: var(--white);
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 67, 67, 0.3);
}

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

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

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

.content-section p {
  color: var(--text-medium);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.content-section img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

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

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

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--text-medium);
  line-height: 1.6;
}

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

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

.disclaimer-box p {
  margin-bottom: 1rem;
}

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

.testimonial-text {
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  text-align: right;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
}

.cta-section .lead {
  color: var(--white);
  opacity: 0.9;
}

.footer-main {
  background: var(--text-dark);
  color: var(--white);
  margin-top: 4rem;
}

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

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

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 1rem 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(--white);
  font-weight: 600;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
}

.page-header .lead {
  color: var(--white);
  opacity: 0.9;
}

.product-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.product-description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.product-ingredients h6 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.product-ingredients ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-medium);
}

.product-ingredients li {
  margin-bottom: 0.25rem;
}

.product-details {
  margin-top: auto;
}

.product-details p {
  margin-bottom: 0.5rem;
  color: var(--text-medium);
}

.disclaimer-section {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
}

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

.contact-info-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

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

.form-control {
  border: 1px solid 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(200, 67, 67, 0.15);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  color: var(--primary-color);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.legal-section h4 {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section ul,
.list-structured {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  color: var(--text-medium);
}

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

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.thank-you-icon {
  display: flex;
  justify-content: center;
}

.icon-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-checkmark::after {
  content: "✓";
  color: var(--white);
  font-size: 3rem;
  font-weight: bold;
}

.value-card,
.why-choose-item,
.recommendation-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-icon .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto;
}

.commitment-text {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.disclaimer-notice .alert {
  border-left: 4px solid var(--primary-color);
}

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

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

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

  .content-section h2 {
    font-size: 1.5rem;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .btn-primary,
  .btn-outline-primary {
    padding: 0.65rem 1.5rem;
    font-size: 1rem;
  }

  .cookie-banner .col-md-3 {
    text-align: left;
    margin-top: 1rem;
  }
}
