:root {
  --primary-yellow: #f4c542;
  --primary-yellow-dark: #d4a622;
  --text-dark: #2c2c2c;
  --text-light: #6c6c6c;
  --background-light: #f9f9f9;
  --background-white: #ffffff;
  --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;
  background-color: var(--background-white);
}

.site-header {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-dark) 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand img {
  height: 40px;
}

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

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--background-white);
}

.navbar-light .navbar-nav .nav-item.active .nav-link {
  color: var(--background-white);
  font-weight: 600;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(244, 197, 66, 0.9) 0%, rgba(212, 166, 34, 0.9) 100%);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

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

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

.content-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

.feature-card,
.category-card,
.ingredient-card,
.info-card,
.routine-card {
  background: var(--background-white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.category-card:hover,
.ingredient-card:hover,
.info-card:hover,
.routine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.feature-card h3,
.category-card h3,
.ingredient-card h3,
.info-card h3,
.routine-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p,
.category-card p,
.ingredient-card p,
.info-card p,
.routine-card p {
  color: var(--text-light);
}

.testimonial-card {
  background: var(--background-white);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-yellow);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary-yellow-dark);
}

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

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

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

.btn-primary:hover {
  background-color: #1c1c1c;
  border-color: #1c1c1c;
  transform: scale(1.05);
}

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

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

.page-header {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-dark) 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--text-dark);
}

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

.product-card {
  background: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card img {
  border-radius: 8px;
  margin-bottom: 1rem;
}

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

.product-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.ingredients-block {
  background-color: var(--background-light);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.ingredients-block h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.ingredients-block ul {
  margin: 0;
  padding-left: 1.5rem;
  color: var(--text-light);
}

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

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

.info-section {
  padding: 3rem 0;
  background-color: var(--background-light);
}

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

.approach-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.approach-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-yellow-dark);
  font-weight: 700;
  font-size: 1.25rem;
}

.value-card {
  background: var(--background-white);
  padding: 2rem;
  border-radius: 10px;
  border-top: 4px solid var(--primary-yellow);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
  color: var(--text-light);
}

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

.contact-form {
  background: var(--background-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-details {
  background: var(--background-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
}

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

.policy-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

.policy-content p,
.policy-content ul {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.policy-content ul {
  padding-left: 2rem;
}

.site-footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1c1c1c 100%);
  color: var(--background-white);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.site-footer h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--background-white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

.footer-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
}

.footer-contact p {
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--text-dark) 0%, #1c1c1c 100%);
  color: var(--background-white);
  padding: 1.5rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

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

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--background-white);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--background-white);
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-radius: 10px;
}

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

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

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

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

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

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

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

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