:root {
  --color-primary: #1A1A1A;
  --color-secondary: #404040;
  --color-accent: #111111;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
}

button, .btn, [class*="btn-"], a[href="#order_form"] {
  white-space: nowrap;
  min-width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

form button[type="submit"] {
  white-space: normal;
  width: 100%;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rotate-180 {
  transform: rotate(180deg);
}

.hero-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  line-height: 1;
  color: #E5E7EB;
  position: absolute;
  top: -10px;
  left: -10px;
}

.testimonial-quote::after {
  content: '"';
  font-size: 3rem;
  line-height: 1;
  color: #E5E7EB;
  position: absolute;
  bottom: -20px;
  right: -10px;
}

.testimonial-quote {
  position: relative;
  padding: 1.5rem;
}

.star-rating {
  display: flex;
  gap: 0.125rem;
}

.star {
  width: 1rem;
  height: 1rem;
  fill: #FCD34D;
  color: #FCD34D;
}

.star.empty {
  fill: #E5E7EB;
  color: #E5E7EB;
}

.order-form-shadow {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-highlight {
  position: relative;
  overflow: hidden;
}

.product-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.product-highlight:hover::before {
  left: 100%;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bounce-subtle {
  animation: bounceSubtle 2s infinite;
}

@keyframes bounceSubtle {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}