:root {
  --color-primary: #3D2914;
  --color-secondary: #5C4020;
  --color-accent: #FF8C00;
}

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

body { 
  font-family: 'Work Sans', 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%;
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* FAQ Accordion */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content.active {
  max-height: 500px;
}

/* Rotate animation for FAQ arrows */
.rotate-180 { 
  transform: rotate(180deg); 
}

/* Custom backgrounds */
.bg-bg-light {
  background-color: #FFFBF0;
}

.bg-bg-alt {
  background-color: #FEF0C7;
}

/* Rating stars */
.rating-stars {
  color: #FFC107;
}

/* Order form styling */
.order-form {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(61, 41, 20, 0.05) 100%);
}

/* Testimonial border accent */
.testimonial-accent {
  border-left: 4px solid var(--color-accent);
}

/* Mobile menu transition */
#mobile-menu {
  transition: all 0.3s ease-out;
}

/* Loading spinner */
.spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--color-accent);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success message */
.success-message {
  background-color: #10B981;
  color: white;
}

.error-message {
  background-color: #EF4444;
  color: white;
}