:root {
  --color-primary: #1A1A2E;
  --color-secondary: #2D2D44;
  --color-accent: #FF6B35;
  --color-bg-light: #FFF7ED;
  --color-bg-alt: #FFEDD5;
}

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ─── Button / CTA normalization ─────────────────────────────────────────── */
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%;
  display: flex;
}

/* ─── Scroll animations ──────────────────────────────────────────────────── */
html.js-anim html.js-anim [data-animate] {
  opacity: 0;
  transform: translateX(-2rem);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ─── Utility ────────────────────────────────────────────────────────────── */
.rotate-180 { transform: rotate(180deg); }

/* ─── Decorative backgrounds ─────────────────────────────────────────────── */
.decor-grid-dots {
  background-image: radial-gradient(circle, rgba(255, 107, 53, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}

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

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

.decor-mesh {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(26, 26, 46, 0.06) 0%, transparent 50%);
}

/* ─── Accent elements ────────────────────────────────────────────────────── */
.decor-gradient-blur::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 107, 53, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.decor-gradient-blur::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(26, 26, 46, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.decor-corner-tr::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.2), transparent 70%);
  pointer-events: none;
}

.decor-corner-bl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at bottom left, rgba(255, 107, 53, 0.15), transparent 70%);
  pointer-events: none;
}

.decor-glow-element {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.decor-rings-svg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* ─── Intensity modifiers ────────────────────────────────────────────────── */
.decor-subtle { opacity: 0.5; }
.decor-moderate { opacity: 0.75; }
.decor-bold { opacity: 1; }

/* ─── Product image glow ─────────────────────────────────────────────────── */
.product-glow {
  filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.25));
}

/* ─── FAQ accordion ──────────────────────────────────────────────────────── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.2s ease-out;
}

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

/* ─── Rating stars ───────────────────────────────────────────────────────── */
.star-filled { color: #FF6B35; }
.star-empty  { color: #D1D5DB; }

/* ─── Order form focus ───────────────────────────────────────────────────── */
.form-input:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

/* ─── Testimonial minimal style ──────────────────────────────────────────── */
.testimonial-card {
  border-left: 4px solid #FF6B35;
  padding-left: 1.5rem;
}

/* ─── Badge pulse ────────────────────────────────────────────────────────── */
@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}
.badge-pulse { animation: badge-pulse 2.5s ease-in-out infinite; }

/* ─── Smooth transitions ─────────────────────────────────────────────────── */
a, button { transition-property: color, background-color, border-color, box-shadow, opacity, transform; transition-duration: 150ms; }

/* ─── Sticky header scroll shadow ────────────────────────────────────────── */
.header-scrolled {
  box-shadow: 0 2px 20px rgba(26, 26, 46, 0.1);
}

/* ─── Mobile menu animation ──────────────────────────────────────────────── */
#mobile-menu {
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

#mobile-menu.menu-open {
  display: block;
}

/* ─── Gradient text utility ──────────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, #FF6B35 0%, #ff9a6e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Section divider wave ───────────────────────────────────────────────── */
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ─── Scroll indicator ───────────────────────────────────────────────────── */
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}
.bounce-down { animation: bounce-down 1.8s ease-in-out infinite; }

/* ─── Checkbox custom ────────────────────────────────────────────────────── */
input[type="checkbox"] {
  accent-color: #FF6B35;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

/* ─── Print ──────────────────────────────────────────────────────────────── */
@media print {
  header, footer, #cookie-consent { display: none !important; }
}