:root{
  --color-primary:#4A4035;
  --color-secondary:#6A5A4A;
  --color-accent:#F5E6D3;
}

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { font-family: 'DM Sans', system-ui, sans-serif; }

::selection { background: rgba(245, 230, 211, .9); color: #1f2937; }

a, button { -webkit-tap-highlight-color: transparent; }

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; }

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  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); }

.glass {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(17, 24, 39, .08);
}

.section-bg-soft {
  background: linear-gradient(180deg, rgba(253,248,243,1) 0%, rgba(255,253,251,1) 100%);
}

.input-base {
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  outline: none;
  width: 100%;
}
.input-base:focus {
  border-color: rgba(74, 64, 53, .55);
  box-shadow: 0 0 0 4px rgba(245, 230, 211, .55);
}

.badge-soft {
  border-radius: 9999px;
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(255,255,255,.7);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-animate] { opacity: 1; transform: none; transition: none; }
}