/* LoveStock — Legal pages (Privacy, Terms) */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

.legal-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: rgba(14, 5, 31, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-logo { display: inline-block; }
.legal-logo img { display: block; }

.legal-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px 64px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ls-text-on-dark-muted);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.legal-back:hover { color: #fff; }

.legal-content h1 {
  font-size: var(--ls-fs-h1);
  font-weight: var(--ls-fw-bold);
  letter-spacing: var(--ls-tracking-tight);
  line-height: 1.15;
  margin-bottom: 16px;
}

.legal-meta {
  color: var(--ls-text-on-dark-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.legal-content h2 {
  font-size: var(--ls-fs-h3);
  font-weight: var(--ls-fw-bold);
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: var(--ls-fs-title);
  font-weight: var(--ls-fw-semibold);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: var(--ls-fs-body);
  line-height: 1.7;
  color: var(--ls-text-on-dark-muted);
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: var(--ls-fs-body);
  line-height: 1.7;
  color: var(--ls-text-on-dark-muted);
  margin-bottom: 6px;
}

.legal-content strong {
  color: #fff;
}

.legal-content a {
  color: var(--ls-brand-pink);
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}

.legal-content hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 32px 0;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: var(--ls-fs-body-sm);
}
.legal-content th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-weight: var(--ls-fw-semibold);
}
.legal-content td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--ls-text-on-dark-muted);
  vertical-align: top;
}

.legal-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
}
.legal-footer-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.legal-footer-links {
  display: flex;
  gap: 20px;
}
.legal-footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-footer-links a:hover { color: #fff; }

@media (max-width: 600px) {
  .legal-content table { font-size: 13px; }
  .legal-content th, .legal-content td { padding: 8px 8px; }
  .legal-footer-inner { flex-direction: column; text-align: center; }
}
