:root {
  --color-primary: #2C1810;
  --color-secondary: #4A2C20;
  --color-accent: #DC2626;
}

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

body { 
  font-family: 'Inter', system-ui, sans-serif; 
}

/* Button fixes */
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%;
}

/* Custom gradient backgrounds */
.bg-gradient-light {
  background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
}

/* Hero animations */
.hero-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* Scroll animations */
[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);
}

/* FAQ animations */
.rotate-180 { 
  transform: rotate(180deg); 
}

/* Order form enhancements */
.order-form {
  background: linear-gradient(135deg, #FEF2F2 0%, white 100%);
}

.form-input:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1);
}

/* Trust badges */
.trust-badge {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
}

/* Product image hover effects */
.product-image {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 20px 40px rgba(44, 24, 16, 0.2));
}

/* Star ratings */
.star-rating {
  color: #FBBF24;
}

/* Mobile optimizations */
@media (max-width: 640px) {
  .hero-text {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.1;
  }
  
  .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #DC2626;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}