/* ═══════════════════════════════════════════════════
   LEGAL PAGES — terms.php / privacy.php
═══════════════════════════════════════════════════ */

.legal-hero {
    background: var(--dark, #0a0a0a);
    padding: 100px 0 52px;
    text-align: center;
}
.legal-hero .lh-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red, #c0392b);
    margin-bottom: 12px;
}
.legal-hero h1 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.legal-hero .lh-meta {
    font-size: 13px;
    color: rgba(255,255,255,.45);
}

/* ── Page body ── */
.legal-body {
    padding: 64px 0 80px;
    background: #fff;
}
.legal-body .container {
    max-width: 820px;
}

/* ── Lang switcher tabs ── */
.legal-lang-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
    padding-bottom: 0;
}
.legal-lang-tab {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: none;
    color: #888;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .2s, border-color .2s;
}
.legal-lang-tab.active,
.legal-lang-tab:hover {
    color: var(--red, #c0392b);
    border-bottom-color: var(--red, #c0392b);
}

/* ── Content panels ── */
.legal-panel { display: none; }
.legal-panel.active { display: block; }

/* ── Typography ── */
.legal-panel h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark, #0a0a0a);
    margin: 40px 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}
.legal-panel h2:first-child { margin-top: 0; }
.legal-panel h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark, #0a0a0a);
    margin: 22px 0 6px;
}
.legal-panel p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #444;
    margin: 0 0 14px;
}
.legal-panel ul {
    padding-left: 20px;
    margin: 0 0 14px;
}
.legal-panel ul li {
    font-size: 14.5px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 4px;
}
.legal-panel strong { color: #222; }

/* ── Info box ── */
.legal-infobox {
    background: #f7f7f7;
    border-left: 3px solid var(--red, #c0392b);
    border-radius: 0 6px 6px 0;
    padding: 16px 20px;
    margin: 24px 0;
}
.legal-infobox p { margin: 0; font-size: 13.5px; }
.legal-infobox strong { color: var(--dark, #0a0a0a); }

/* ── Table (for structured info) ── */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 13.5px;
}
.legal-table th {
    background: #0a0a0a;
    color: #fff;
    text-align: left;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .5px;
}
.legal-table td {
    border-bottom: 1px solid #eee;
    padding: 10px 14px;
    color: #444;
    vertical-align: top;
}
.legal-table tr:last-child td { border-bottom: none; }

/* ── Business info strip (footer) ── */
.ft-biz-strip {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 18px 0;
    margin-top: 8px;
}
.ft-biz-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 28px;
    align-items: flex-start;
}
.ft-biz-title {
    width: 100%;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 4px;
}
.ft-biz-item {
    font-size: 12px;
    color: rgba(255,255,255,.45);
    white-space: nowrap;
}
.ft-biz-item strong {
    color: rgba(255,255,255,.65);
    font-weight: 600;
}
.ft-biz-item a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
}
.ft-biz-item a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 600px) {
    .ft-biz-item { white-space: normal; }
}
