:root {
  --primary-color: #d4a017;
  --secondary-color: #2c3e50;
  --text-dark: #1a1a1a;
  --text-muted: #6c757d;
  --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;
}

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.75rem;
}

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

.navbar {
  padding: 1rem 0;
}

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

.navbar-brand strong {
  color: var(--secondary-color);
}

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

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

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

.btn-primary:hover {
  background-color: #b8860b;
  border-color: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--shadow);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
  font-weight: 500;
  padding: 0.75rem 2rem;
}

.hero-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.hero-title {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

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

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

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

.page-header {
  padding: 4rem 0 2rem;
  background-color: var(--bg-light);
}

.product-card {
  border: none;
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.product-card .card-title {
  color: var(--secondary-color);
  font-weight: 600;
}

.ritual-step h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.combination-tip h5 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

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

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

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

.testimonial-author {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0;
}

.faq-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.faq-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

.value-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

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

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

.contact-info-box h4 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.contact-form .form-control {
  border: 1px solid #ced4da;
  padding: 0.75rem;
  border-radius: 4px;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(212, 160, 23, 0.25);
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-details .contact-item h5 {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.thank-you-section {
  padding: 6rem 0;
  text-align: center;
}

.footer {
  margin-top: 4rem;
}

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

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

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px var(--shadow);
  z-index: 9999;
  display: none;
}

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

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

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

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

.rounded {
  border-radius: 8px;
}

.alert {
  border-radius: 8px;
  padding: 1.5rem;
}

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

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

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

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

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

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