:root {
  --color-primary: #4A4035;
  --color-secondary: #6A5A4A;
  --color-accent: #F5E6D3;
}

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

body { 
  font-family: 'Manrope', 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: all 0.6s ease-out;
}

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

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

/* Decorative Elements */
.decor-grid-dots {
  background-image: radial-gradient(circle, rgba(74, 64, 53, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.decor-grid-lines {
  background-image: linear-gradient(rgba(74, 64, 53, 0.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(74, 64, 53, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.decor-diagonal {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(74, 64, 53, 0.1) 10px,
    rgba(74, 64, 53, 0.1) 11px
  );
}

.decor-mesh {
  background: linear-gradient(135deg, rgba(245, 230, 211, 0.1), rgba(74, 64, 53, 0.05));
}

.decor-gradient-blur::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 230, 211, 0.6), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.decor-corner-tr::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(245, 230, 211, 0.3), transparent);
  clip-path: polygon(100% 0%, 100% 100%, 0% 0%);
}

.decor-corner-bl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(245, 230, 211, 0.3), transparent);
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
}

.decor-glow-element {
  position: relative;
}

.decor-glow-element::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(245, 230, 211, 0.2), transparent 60%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: -1;
}

.decor-rings-svg {
  background-image: url("data:image/svg+xml,%3csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3cpattern id='rings' x='0' y='0' width='60' height='60' patternUnits='userSpaceOnUse'%3e%3ccircle cx='30' cy='30' r='25' fill='none' stroke='%23F5E6D3' stroke-width='1' opacity='0.1'/%3e%3ccircle cx='30' cy='30' r='15' fill='none' stroke='%23F5E6D3' stroke-width='1' opacity='0.1'/%3e%3c/pattern%3e%3c/defs%3e%3crect width='100%25' height='100%25' fill='url(%23rings)'/%3e%3c/svg%3e");
}

.decor-subtle { opacity: 0.05; }
.decor-moderate { opacity: 0.1; }
.decor-bold { opacity: 0.2; }

/* Order form styling */
.order-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(245, 230, 211, 0.05));
  border: 1px solid rgba(245, 230, 211, 0.2);
}

/* Product badge */
.product-badge {
  background: linear-gradient(135deg, #4A4035, #6A5A4A);
}

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

/* Price styling */
.price-highlight {
  background: linear-gradient(135deg, rgba(245, 230, 211, 0.2), rgba(245, 230, 211, 0.1));
  border: 2px solid rgba(245, 230, 211, 0.3);
}

/* Testimonial quotes */
.quote-marks::before {
  content: '"';
  font-size: 4rem;
  color: rgba(245, 230, 211, 0.3);
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-family: serif;
}

.quote-marks {
  position: relative;
}

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

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

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

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

/* Form validation */
.form-error {
  border-color: #EF4444;
  background-color: rgba(239, 68, 68, 0.05);
}

.form-success {
  border-color: #10B981;
  background-color: rgba(16, 185, 129, 0.05);
}

/* Smooth transitions */
* {
  transition-property: color, background-color, border-color, opacity, transform;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

button, a {
  transition-duration: 200ms;
}