/* ==========================================================
   LEGAL & POLICY PAGES (Privacy, Terms, Returns)
   ========================================================== */

/* --- Legal Hero Section --- */
.legal-hero {
    padding: 8rem 5% 3rem; /* Extra top padding to account for your sticky header */
    background-color: #0a0a0a;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-hero-container h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.title-divider {
    height: 4px;
    width: 60px;
    background-color: #ff3333; /* Signature Brand Red */
    margin: 0 auto;
}

/* --- Main Content Wrapper --- */
.legal-page-wrapper {
    background-color: #121212;
    padding: 5rem 5%;
}

/* Constrain the width for optimal reading (prevents eye fatigue) */
.legal-content {
    max-width: 850px;
    margin: 0 auto;
}

/* --- Typography & RTE (Rich Text Editor) Styling --- */
.legal-content .shopify-policy__body,
.legal-content .rte {
    color: #cccccc; /* Soft light gray for readability */
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Headings */
.legal-content h2 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

/* Remove top margin from the very first heading if there is one */
.legal-content .rte h2:first-child {
    margin-top: 0;
}

/* Paragraphs */
.legal-content p {
    margin-bottom: 1.5rem;
}

/* Bold Text */
.legal-content strong,
.legal-content b {
    color: #ffffff;
    font-weight: 700;
}

/* Links */
.legal-content a {
    color: #ff3333;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    font-weight: 600;
}

.legal-content a:hover {
    border-bottom-color: #ff3333;
}

/* --- Lists (Unordered & Ordered) --- */
.legal-content ul,
.legal-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 1rem;
}

/* Custom Bullet Colors */
.legal-content ul li::marker {
    color: #ff3333;
}

.legal-content ol li::marker {
    color: #aaaaaa;
    font-weight: bold;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .legal-hero {
        padding: 6rem 5% 2.5rem;
    }

    .legal-hero-container h1 {
        font-size: 2.2rem;
    }

    .legal-page-wrapper {
        padding: 3rem 5%;
    }

    .legal-content h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }

    .legal-content .shopify-policy__body,
    .legal-content .rte {
        font-size: 1rem; /* Slightly smaller on phones */
    }
}