:root {
  --primary-color: #ff8c42;
  --primary-dark: #e67a32;
  --secondary-color: #2c3e50;
  --light-bg: #f8f9fa;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #dee2e6;
  --white: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

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

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

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

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

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

.hero-overlay h1,
.hero-overlay p {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

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

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

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

.feature-box,
.value-card {
  padding: 2rem;
  transition: transform 0.3s ease;
}

.feature-box:hover,
.value-card:hover {
  transform: translateY(-5px);
}

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

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

.faq-item {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.cta-section {
  background: linear-gradient(135deg, #ff8c42 0%, #e67a32 100%);
  color: var(--white);
}

.cta-section h2,
.cta-section p {
  color: var(--white);
}

.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background-color: var(--light-bg);
  border-color: var(--light-bg);
}

.cta-section .btn-outline-primary {
  border-color: var(--white);
  color: var(--white);
}

.cta-section .btn-outline-primary:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.footer {
  background-color: var(--secondary-color);
}

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

.footer-link:hover {
  color: var(--white);
  text-decoration: none;
}

.page-header {
  background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
}

.product-detail {
  padding: 2rem;
}

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

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

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

.info-section,
.info-block {
  background: var(--white);
  border-left: 4px solid var(--primary-color);
}

.contact-form-wrapper {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.help-topic {
  background: var(--white);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.help-topic:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thank-you-content .success-icon svg {
  animation: checkmark 0.8s ease-in-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.legal-content {
  font-size: 0.95rem;
}

.legal-content h3 {
  color: var(--primary-color);
  font-weight: 600;
}

.legal-content h5 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--primary-color);
  padding: 1rem 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 0;
}

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

.cookie-banner .btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.routine-step {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.difference-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

  .product-card img {
    height: 200px;
  }

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

@media (max-width: 576px) {
  .hero-section {
    height: 300px;
  }

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