/* ═══════════════════════════════════════════
   LEGAL PAGES — Shared CSS
   (Terms, Privacy, Refund, Shipping)
═══════════════════════════════════════════ */

.legal-page {
    padding: 40px 0 60px;
}

.legal-page .container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page main heading (H1) */
.legal-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 6px;
}

.legal-updated {
    display: block;
    text-align: center;
    font-size: 12.5px;
    color: #999;
    margin-bottom: 30px;
}

/* Divider under heading */
.legal-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 0 0 30px;
}

/* Section headings (H2) */
.legal-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 28px 0 12px;
}

.legal-section-title:first-of-type {
    margin-top: 0;
}

/* Sub-section headings (H3) — used in Privacy Policy sections */
.legal-subsection-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 22px 0 8px;
}

/* Body text */
.legal-text {
    font-size: 14.5px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 14px;
    text-align: left; /* justify hata diya — mobile pe better readability */
}

.legal-text strong {
    color: #1a1a1a;
}

.legal-text a {
    color: #e63946;
    font-weight: 600;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #c1121f;
}

/* Bullet lists */
.legal-list {
    margin: 0 0 16px;
    padding-left: 20px;
}

.legal-list li {
    font-size: 14.5px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 10px;
}

/* Highlight box (used for Shipping policy content block) */
.legal-highlight-box {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px 22px;
    margin: 20px 0;
}

/* Brand clarification note */
.legal-brand-note {
    background: #fff8f0;
    border-left: 3px solid #e63946;
    padding: 12px 16px;
    font-size: 13px;
    color: #666;
    margin-bottom: 24px;
    border-radius: 4px;
}

/* ── Mobile responsive ── */
@media (max-width: 768px) {
    .legal-page {
        padding: 28px 0 40px;
    }

    .legal-title {
        font-size: 1.4rem;
    }

    .legal-section-title {
        font-size: 1.05rem;
    }

    .legal-subsection-title {
        font-size: 0.95rem;
    }

    .legal-text,
    .legal-list li {
        font-size: 13.5px;
    }

    .legal-highlight-box {
        padding: 16px;
    }
}