:root {
  --primary-color: #ffc107;
  --primary-dark: #ffa000;
  --secondary-color: #2c3e50;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
}

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

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

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

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

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

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.9) 0%, rgba(255, 160, 0, 0.8) 100%), url("/images/hero.jpg")
    center / cover no-repeat;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-header {
  background-color: var(--bg-light);
  border-bottom: 3px solid var(--primary-color);
}

.page-header h1 {
  color: var(--text-dark);
  font-weight: 700;
}

section {
  scroll-margin-top: 70px;
}

h2 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h3,
h4,
h5 {
  color: var(--text-dark);
  font-weight: 600;
}

.card {
  border: 1px solid var(--border-color);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

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

.category-box {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
  height: 100%;
  transition: all 0.3s;
}

.category-box:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

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

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

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

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

.selection-factors .factor {
  margin-bottom: 2rem;
}

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

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

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

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

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

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

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

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

.bg-primary {
  background-color: var(--primary-color) !important;
}

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

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

.product-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
}

.product-image-1 {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.3) 0%, rgba(255, 160, 0, 0.3) 100%),
    url("/images/product-1.jpg") center / cover no-repeat;
}

.product-image-2 {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.3) 0%, rgba(255, 160, 0, 0.3) 100%),
    url("/images/product-2.jpg") center / cover no-repeat;
}

.product-image-3 {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.3) 0%, rgba(255, 160, 0, 0.3) 100%),
    url("/images/product-3.jpg") center / cover no-repeat;
}

.product-image-4 {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.3) 0%, rgba(255, 160, 0, 0.3) 100%),
    url("/images/product-4.jpg") center / cover no-repeat;
}

.product-image-5 {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.3) 0%, rgba(255, 160, 0, 0.3) 100%),
    url("/images/product-5.jpg") center / cover no-repeat;
}

.product-image-6 {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.3) 0%, rgba(255, 160, 0, 0.3) 100%),
    url("/images/product-6.jpg") center / cover no-repeat;
}

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

.product-category {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.product-features {
  list-style: none;
  padding-left: 0;
  margin-top: auto;
}

.product-features li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
}

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

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

.policy-content h2 {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border-color);
}

.policy-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

footer {
  margin-top: 4rem;
}

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

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

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

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

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

.cookie-banner h5 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

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

.cookie-banner .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--secondary-color);
}

.cookie-banner .btn-primary {
  background-color: var(--primary-color);
  color: var(--text-dark);
  border: none;
}

.cookie-banner .btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

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

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

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

  .product-image {
    height: 200px;
  }
}
