:root {
  --primary-color: #d4a017;
  --primary-dark: #b8860b;
  --secondary-color: #2c3e50;
  --text-dark: #1a1a1a;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
}

* {
  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;
  padding-top: 76px;
}

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--secondary-color);
  letter-spacing: 1px;
}

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

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  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 12px rgba(212, 160, 23, 0.3);
}

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

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

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

.hero-image {
  position: relative;
}

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

.section-title {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.category-card,
.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

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

.product-detail-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.info-card {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
}

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

.ingredients-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.ingredients-list li:last-child {
  border-bottom: none;
}

.feature-box,
.value-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.feature-icon,
.value-icon {
  font-size: 3rem;
}

.testimonial-card {
  background: #fff;
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-header {
  background: var(--bg-light);
  padding: 5rem 0 3rem;
  margin-top: -76px;
  padding-top: calc(5rem + 76px);
}

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

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

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
  font-weight: bold;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2,
.legal-content h3 {
  color: var(--secondary-color);
  margin-top: 2rem;
}

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

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

.custom-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary-color);
  color: #fff;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

.cookie-banner a:hover {
  color: #fff;
}

footer {
  margin-top: 4rem;
}

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

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

.min-vh-50 {
  min-height: 50vh;
}

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

  .page-header {
    padding: 3rem 0 2rem;
    padding-top: calc(3rem + 76px);
  }

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

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

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .hero-section {
    margin-top: -70px;
    padding-top: 70px;
  }
}
