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

html { scroll-behavior: smooth; scroll-padding-top: 6.5rem; }
body { font-family: 'Plus Jakarta 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%;
}

img { max-width: 100%; height: auto; }
a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(255, 107, 53, 0.20); }

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Premium focus ring */
:focus-visible {
  outline: 2px solid rgba(255, 107, 53, 0.55);
  outline-offset: 2px;
  border-radius: 10px;
}

/* Subtle card hover */
.card-hover {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card-hover:hover {
  transform: translateY(-2px);
}

/* Decorative backgrounds (used via utility classes) */
.decor-grid-dots {
  background-image: radial-gradient(rgba(26,26,46,0.16) 1px, transparent 1px);
  background-size: 18px 18px;
}
.decor-grid-lines {
  background-image:
    linear-gradient(to right, rgba(26,26,46,0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26,26,46,0.10) 1px, transparent 1px);
  background-size: 28px 28px;
}
.decor-diagonal {
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,107,53,0.16) 0,
    rgba(255,107,53,0.16) 1px,
    transparent 1px,
    transparent 10px
  );
}
.decor-mesh {
  background:
    radial-gradient(900px 350px at 20% 10%, rgba(255,107,53,0.35), transparent 55%),
    radial-gradient(700px 320px at 70% 20%, rgba(255,237,213,0.32), transparent 60%),
    radial-gradient(800px 420px at 60% 90%, rgba(255,107,53,0.22), transparent 55%);
}

.decor-subtle { opacity: 0.06; }
.decor-moderate { opacity: 0.10; }
.decor-bold { opacity: 0.18; }

/* Gradient blur blobs */
.decor-gradient-blur {
  position: relative;
}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width: 520px;
  height: 520px;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events:none;
  transform: translateZ(0);
}
.decor-gradient-blur::before{
  top: -240px;
  left: -240px;
  background: radial-gradient(circle at 30% 30%, rgba(255,107,53,0.95), transparent 60%);
}
.decor-gradient-blur::after{
  bottom: -260px;
  right: -260px;
  background: radial-gradient(circle at 40% 40%, rgba(255,237,213,0.85), transparent 60%);
}

/* Corner accents */
.decor-corner-tr { position: relative; }
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:-1px; right:-1px;
  width: 110px; height: 110px;
  background: radial-gradient(circle at top right, rgba(255,107,53,0.28), transparent 65%);
  pointer-events:none;
}
.decor-corner-bl { position: relative; }
.decor-corner-bl::after{
  content:"";
  position:absolute;
  bottom:-1px; left:-1px;
  width: 140px; height: 140px;
  background: radial-gradient(circle at bottom left, rgba(255,237,213,0.35), transparent 65%);
  pointer-events:none;
}

/* Glow element behind product */
.decor-glow-element { position: relative; }
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset: auto;
  width: 380px;
  height: 380px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  background: radial-gradient(circle, rgba(255,107,53,0.30), transparent 60%);
  filter: blur(30px);
  pointer-events:none;
  z-index: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}