/* ══════════════════════════════════════════════════
   Legal Pages — Privacy / Terms / Cookies / Refund
   Matches InBloom warm design system
   ══════════════════════════════════════════════════ */

/* ── Page base ── */
body.legal-body {
  background: #c5b684 !important;
  background-color: #c5b684 !important;
  background-image: none !important;
  position: relative;
}
body.legal-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('/images/shop/backgroundoverlay.webp');
  background-repeat: repeat;
  background-size: 1600px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
body.legal-body .main {
  position: relative;
  z-index: 1;
}

/* ── Content container ── */
.legal-page {
  max-width: 780px;
  margin: 2rem auto;
  padding: 2.5rem 3rem 4rem;
  background: #1a1a2e;
  border-radius: 16px;
  border: 3px solid #0d0d1a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.legal-title {
  font-family: 'Moslin', 'IBM Plex Mono', monospace;
  font-size: 2rem;
  color: #ede7d9;
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.legal-updated {
  color: #9090a0;
  font-size: 0.82rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-content {
  color: #c0b8a8;
  line-height: 1.7;
  font-size: 0.9rem;
}

.legal-content h2 {
  color: #ede7d9;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.4rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: #ffde58;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-content a:hover {
  color: #fff1a0;
  text-decoration: underline;
}

.legal-content strong {
  color: #ede7d9;
  font-weight: 600;
}

/* ── Site footer ── */
.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: #9090a0;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #ede7d9;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.15);
  user-select: none;
  font-size: 0.8rem;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .legal-page {
    margin: 1rem;
    padding: 1.5rem 1.25rem 2.5rem;
    border-radius: 12px;
  }
  .legal-title {
    font-size: 1.5rem;
  }
  .site-footer {
    gap: 0.75rem 1rem;
    padding: 1rem;
  }
  .footer-divider {
    display: none;
  }
}
