:root {
  --color-primary: #2D3A2D;
  --color-secondary: #4A5D4A;
  --color-accent: #9C27B0;
}

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

body { 
  font-family: 'Source Sans 3', 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: 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); 
}

/* Decorative elements */
.decor-grid-dots {
  background-image: radial-gradient(circle, rgba(156, 39, 176, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.decor-grid-lines {
  background-image: linear-gradient(rgba(156, 39, 176, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(156, 39, 176, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.decor-diagonal {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(156, 39, 176, 0.03) 10px,
    rgba(156, 39, 176, 0.03) 20px
  );
}

.decor-subtle { opacity: 0.3; }
.decor-moderate { opacity: 0.5; }
.decor-bold { opacity: 0.7; }

.decor-gradient-blur::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -20%;
  width: 40%;
  height: 60%;
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.1), rgba(74, 93, 74, 0.1));
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}

.decor-corner-tr::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(225deg, rgba(156, 39, 176, 0.1), transparent);
  border-radius: 0 0 0 100px;
}

.decor-glow-element::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(156, 39, 176, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: -1;
}

/* Order form */
.order-form {
  background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 100%);
  border: 1px solid rgba(156, 39, 176, 0.1);
}

/* Product badge */
.product-badge {
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.9), rgba(156, 39, 176, 1));
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

/* Trust badges */
.trust-badge {
  background: rgba(45, 58, 45, 0.05);
  border: 1px solid rgba(45, 58, 45, 0.1);
}

/* Guarantee badge */
.guarantee-badge {
  background: linear-gradient(135deg, #10b981, #059669);
}

/* Country origin */
.country-origin {
  background: rgba(74, 93, 74, 0.1);
  border: 1px solid rgba(74, 93, 74, 0.2);
}

/* Security indicators */
.security-indicator {
  color: #10b981;
}