:root {
  --primary-color: #7b4fd1;
  --primary-dark: #5a3a9e;
  --secondary-color: #9b7dd1;
  --text-dark: #2d2d2d;
  --text-light: #6c6c6c;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --white: #ffffff;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
}

* {
  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(--white);
}

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

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

.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 {
  position: relative;
  margin-top: -1px;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
}

.hero-content {
  color: var(--white);
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  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 8px rgba(123, 79, 209, 0.3);
}

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

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

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

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

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

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

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

.product-body p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.customer-name {
  font-weight: 600;
  color: var(--primary-color);
  font-style: normal;
}

.faq-section {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

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

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

.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background-color: var(--bg-light);
  border-color: var(--bg-light);
}

.cta-section .btn-outline-primary {
  color: var(--white);
  border-color: var(--white);
}

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

.footer {
  margin-top: 4rem;
}

.footer h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer ul {
  padding: 0;
}

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

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

.footer a:hover {
  color: var(--white);
  text-decoration: none;
}

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

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

.product-detail {
  padding: 3rem 0;
  border-bottom: 2px solid var(--border-color);
}

.product-detail:last-child {
  border-bottom: none;
}

.product-detail h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.product-detail h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.product-detail ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-detail ul li {
  margin-bottom: 0.5rem;
}

.product-note {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.important-note {
  background: #fff3cd;
  border-left: 4px solid var(--warning);
  padding: 1.5rem;
  border-radius: 8px;
}

.important-note h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.ingredient-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
}

.featured-product {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

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

.featured-content {
  padding: 2rem;
}

.featured-content h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
}

.value-card h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.recommendation-section {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
}

.recommendation-section h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.audience-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
}

.audience-info h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

.disclaimer-section h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

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

.contact-info h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-note {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
}

.faq-contact {
  background: var(--white);
}

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

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

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

.contact-reminder h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.policy-content h3 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.policy-content table {
  margin: 1.5rem 0;
}

.disclaimer-important .alert {
  border-radius: 8px;
}

.disclaimer-important h3 {
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 1.5rem 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-bottom: 0;
}

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

.cookie-banner a:hover {
  color: var(--secondary-color);
}

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

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

  .hero-image img {
    height: 400px;
  }

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

  .product-detail {
    padding: 2rem 0;
  }

  .cookie-banner .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }
}

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

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

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

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0 !important;
  }
}
