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

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }
img { height: auto; }

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

/* Focus styles */
:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid rgba(255, 107, 53, 0.55);
  outline-offset: 2px;
  border-radius: 0.75rem;
}

/* Animations (context: zoom_in) */
.animation-css,
[data-animate] {
  opacity: 0;
  transform: scale(0.95);
  transition: all 500ms ease-out;
}
.animation-active,
[data-animate].is-visible {
  opacity: 1;
  transform: scale(1);
}

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

/* Decorative backgrounds (used by classes referenced in spec) */
.decor-grid-dots {
  background-image: radial-gradient(rgba(255,255,255,0.22) 1px, transparent 1px);
  background-size: 18px 18px;
}
.decor-grid-lines {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}
.decor-diagonal {
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.10) 0, rgba(255,255,255,0.10) 2px, transparent 2px, transparent 10px);
}
.decor-mesh {
  background-image:
    radial-gradient(700px 350px at 15% 20%, rgba(255,107,53,0.18), transparent 55%),
    radial-gradient(700px 350px at 85% 25%, rgba(255,247,237,0.10), transparent 60%),
    radial-gradient(900px 450px at 60% 80%, rgba(45,45,68,0.35), transparent 60%);
}
.decor-gradient-blur::before,
.decor-gradient-blur::after {
  content: "";
  position: absolute;
  inset: -20%;
  filter: blur(45px);
  opacity: 0.25;
  pointer-events: none;
}
.decor-gradient-blur::before {
  background: radial-gradient(circle at 20% 30%, rgba(255,107,53,0.6), transparent 55%);
}
.decor-gradient-blur::after {
  background: radial-gradient(circle at 70% 70%, rgba(26,26,46,0.55), transparent 55%);
}

.decor-corner-tr::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle at top right, rgba(255,107,53,0.35), transparent 65%);
  pointer-events: none;
}
.decor-corner-bl::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at bottom left, rgba(255,237,213,0.45), transparent 60%);
  pointer-events: none;
}

.decor-glow-element {
  position: relative;
}
.decor-glow-element::before {
  content: "";
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle, rgba(255,107,53,0.25), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.decor-subtle { opacity: 0.05; }
.decor-moderate { opacity: 0.10; }
.decor-bold { opacity: 0.20; }

/* Slider helpers (testimonial style) */
.slider-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}
.slider-snap {
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.slider-snap > * {
  scroll-snap-align: start;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animation-css, [data-animate] { transition: none; }
}