:root {
  --primary-color: #f4c430;
  --primary-dark: #d4a520;
  --primary-light: #fff8dc;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --border-color: #dee2e6;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--text-dark);
}

.navbar {
  padding: 1rem 0;
  background: var(--white);
}

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

.navbar-brand:hover {
  color: var(--primary-dark);
}

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

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

.hero-section {
  position: relative;
  margin-top: -1px;
}

.hero-image {
  position: relative;
  width: 100%;
  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(135deg, rgba(244, 196, 48, 0.9) 0%, rgba(212, 165, 32, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-content h1 {
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--light-bg) 100%);
  padding: 4rem 0;
}

.section-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin-top: 1rem;
  border-radius: 2px;
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.info-card,
.product-card,
.testimonial-card,
.faq-item,
.tip-card,
.selection-card,
.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover,
.product-card:hover,
.tip-card:hover,
.selection-card:hover,
.value-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.info-card img,
.tip-card img,
.selection-card img {
  border-radius: 8px;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card img {
  border-radius: 12px 12px 0 0;
  margin: -2rem -2rem 1.5rem -2rem;
  width: calc(100% + 4rem);
}

.ingredients-box {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: auto;
}

.ingredients-box h6 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.ingredients-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.ingredients-list li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

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

.serving-info {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  border-left: 4px solid var(--primary-color);
}

.testimonial-card p:first-child {
  font-style: italic;
  margin-bottom: 1rem;
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.faq-item h5 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.disclaimer-text {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
}

.disclaimer-box,
.info-box {
  background: var(--primary-light);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
}

.info-box h5 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

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

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

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

.cta-section h2 {
  font-weight: 700;
}

.footer {
  background: var(--dark-bg);
  color: var(--white);
}

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

.footer a {
  color: var(--white);
  transition: color 0.3s ease;
}

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

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

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

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

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

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

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

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

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
}

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}

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

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

.form-control {
  border-radius: 8px;
  border: 2px solid var(--border-color);
  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(244, 196, 48, 0.25);
}

.contact-item {
  padding: 0.75rem 0;
}

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

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

.thank-you-box {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

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

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

.policy-content h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

.philosophy-point {
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.philosophy-point h5 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.value-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

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

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

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .product-card,
  .info-card,
  .testimonial-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .display-4 {
    font-size: 2rem;
  }
}
