:root {
  --color-primary: #1A1A2E;
  --color-secondary: #2D2D44;
  --color-accent: #FF6B35;
}

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

body {
  font-family: 'Outfit', 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 at 2px 2px, var(--color-accent) 1px, transparent 0);
  background-size: 20px 20px;
}

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

.decor-diagonal {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(255, 107, 53, 0.05) 8px,
    rgba(255, 107, 53, 0.05) 16px
  );
}

.decor-mesh {
  background: radial-gradient(ellipse 800px 600px at 50% 0%, rgba(255, 107, 53, 0.1), transparent);
}

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

.decor-gradient-blur::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-accent), transparent);
  filter: blur(60px);
  opacity: 0.1;
  pointer-events: none;
}

.decor-corner-tr::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(-45deg, var(--color-accent), transparent);
  opacity: 0.1;
}

.decor-corner-bl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--color-accent), transparent);
  opacity: 0.1;
}

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

.decor-glow-element::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

/* Form styles */
.form-input {
  @apply w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-accent focus:border-transparent outline-none transition-all;
}

.form-label {
  @apply block text-sm font-medium text-gray-700 mb-2;
}

/* Custom checkbox */
.custom-checkbox {
  @apply relative flex items-start gap-3;
}

.custom-checkbox input[type="checkbox"] {
  @apply sr-only;
}

.custom-checkbox .checkmark {
  @apply flex-shrink-0 w-5 h-5 border-2 border-gray-300 rounded bg-white cursor-pointer transition-all;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
  @apply bg-accent border-accent;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  @apply absolute inset-0 flex items-center justify-center text-white text-xs font-bold;
}

/* Rating stars */
.rating-stars {
  @apply flex items-center gap-1;
}

.rating-star {
  @apply w-4 h-4 text-yellow-400 fill-current;
}

/* Product badge */
.product-badge {
  @apply inline-flex items-center gap-1 px-2 py-1 bg-accent text-white text-xs font-semibold rounded-full;
}

/* Trust indicators */
.trust-indicator {
  @apply flex items-center gap-2 text-sm text-gray-600;
}

.trust-indicator i {
  @apply w-4 h-4 text-green-500;
}

/* Loading state */
.loading {
  @apply opacity-50 pointer-events-none;
}

.spinner {
  @apply animate-spin rounded-full h-4 w-4 border-2 border-gray-300 border-t-accent;
}

/* FAQ accordion */
.faq-item {
  @apply border-b border-gray-200 py-4;
}

.faq-question {
  @apply w-full text-left flex justify-between items-center font-semibold text-gray-900 hover:text-accent transition-colors;
}

.faq-answer {
  @apply mt-3 text-gray-600 leading-relaxed;
}

.faq-icon {
  @apply w-5 h-5 text-gray-400 transition-transform duration-200;
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
  .hero-title {
    @apply text-3xl;
  }
  
  .section-padding {
    @apply px-4 py-8;
  }
  
  .mobile-center {
    @apply text-center;
  }
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
}