:root {
  --color-primary: #4A4035;
  --color-secondary: #6A5A4A;
  --color-accent: #F5E6D3;
  --color-bg-light: #FFFDFB;
  --color-bg-alt: #FDF8F3;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: #FFFDFB;
  color: #1a1a1a;
}

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

html.js-anim html.js-anim [data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

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

/* ── Decorative Backgrounds ── */
.decor-grid-dots {
  background-image: radial-gradient(circle, var(--color-secondary) 1px, transparent 1px);
  background-size: 24px 24px;
}

.decor-grid-lines {
  background-image:
    linear-gradient(var(--color-accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-accent) 1px, transparent 1px);
  background-size: 40px 40px;
}

.decor-diagonal {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    var(--color-accent) 10px,
    var(--color-accent) 11px
  );
}

.decor-mesh {
  background-image:
    radial-gradient(at 40% 20%, rgba(74, 64, 53, 0.12) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(106, 90, 74, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(245, 230, 211, 0.15) 0px, transparent 50%);
}

/* ── Accent Elements ── */
.decor-gradient-blur::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 230, 211, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  top: -100px;
  right: -100px;
  z-index: 0;
}

.decor-gradient-blur::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 64, 53, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  bottom: -80px;
  left: -80px;
  z-index: 0;
}

.decor-corner-tr::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(225deg, rgba(245, 230, 211, 0.3) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.decor-corner-bl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(74, 64, 53, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.decor-glow-element {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 230, 211, 0.35) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.decor-rings-svg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='%234A4035' stroke-width='0.5' opacity='0.15'/%3E%3Ccircle cx='100' cy='100' r='60' fill='none' stroke='%234A4035' stroke-width='0.5' opacity='0.12'/%3E%3Ccircle cx='100' cy='100' r='40' fill='none' stroke='%234A4035' stroke-width='0.5' opacity='0.10'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Intensity Modifiers ── */
.decor-subtle { opacity: 0.05; }
.decor-moderate { opacity: 0.10; }
.decor-bold { opacity: 0.20; }

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

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

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

/* ── Form Elements ── */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: #ffffff;
  color: #111827;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: #4A4035;
  box-shadow: 0 0 0 3px rgba(74, 64, 53, 0.1);
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ── Star Rating ── */
.star-filled { color: #f59e0b; }
.star-empty { color: #d1d5db; }

/* ── Trust Badges ── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background-color: #FDF8F3;
  border: 1px solid #F5E6D3;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #4A4035;
}

/* ── Product Badge ── */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  background-color: #4A4035;
  color: #F5E6D3;
  border-radius: 0.375rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Testimonial Minimal Style ── */
.testimonial-minimal {
  border-left: 4px solid #F5E6D3;
  padding-left: 1.5rem;
}

/* ── Section Divider ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #F5E6D3, transparent);
}

/* ── Mobile menu transition ── */
#mobile-menu {
  transition: opacity 0.2s ease;
}

/* ── Scroll fade utility ── */
html.js-anim [data-animate] {
  will-change: opacity, transform;
}

/* ── Order form highlight ── */
#order_form {
  scroll-margin-top: 5rem;
}

/* ── Guarantee badge ── */
.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: #FDF8F3;
  border: 1px solid #F5E6D3;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  color: #4A4035;
  font-weight: 500;
}

/* ── Price display ── */
.price-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4A4035;
  line-height: 1;
}

.price-per-day {
  font-size: 0.8rem;
  color: #9ca3af;
}