/* =============================================
   SHOP'N MAX — PAGES LÉGALES CSS
============================================= */
.legal-hero {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-deep));
  padding: 60px 24px 40px;
  text-align: center;
  color: white;
}
.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: white; margin: 16px 0 8px;
}
.legal-hero p { color: rgba(212,184,150,.7); font-size: .9rem; }

.legal-body {
  max-width: 860px; margin: 0 auto;
  padding: 48px 24px 60px;
}
.legal-alert {
  background: rgba(196,84,10,.08);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 36px;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text);
}
.legal-alert strong { color: var(--orange); display: block; margin-bottom: 6px; }
.legal-alert em { color: var(--text-light); font-style: italic; font-size: .85rem; }

.legal-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--brown-dark);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.legal-section h2::before {
  content: '◆';
  color: var(--orange);
  font-size: .7rem;
}
.legal-section p {
  font-size: .92rem; color: var(--text-light);
  line-height: 1.8; margin-bottom: 12px;
}
.legal-section ul {
  list-style: none; margin: 12px 0;
}
.legal-section ul li {
  font-size: .9rem; color: var(--text-light);
  line-height: 1.7; padding: 6px 0 6px 20px;
  position: relative;
}
.legal-section ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--orange); font-weight: 700;
}
.legal-section a { color: var(--orange); text-decoration: none; font-weight: 600; }
.legal-section a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .legal-body { padding: 32px 16px 40px; }
  .legal-hero { padding: 50px 16px 30px; }
}