/**
 * =====================================================================================
 * HELLA 3D MANAGEMENT SUITE: UNIFIED POLICY PAGES STYLESHEET
 * =====================================================================================
 * @file        policy_page.css
 * @description Governs typography and layout scaling for returns, shipping, and privacy.
 * @version     1.0.0
 * @cleared     Jul 5, 2026
 * * ARCHITECTURE OVERVIEW:
 * 1. Typography Optimization: Sets elevated line-heights and max-widths to optimize 
 * readability for dense legal text.
 * 2. Performance Overrides: Disables background blob animations to keep static text 
 * rendering computationally cheap.
 * 3. Viewport Constraints: Uses calc(100vh - 300px) to prevent the footer from riding 
 * up on short policy documents.
 * =====================================================================================
 */

.smooth-scroll { scroll-behavior: smooth; }

/* --- PERFORMANCE OVERRIDES --- */
.h3d-liquid-bg {
    isolation: isolate; 
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.h3d-liquid-bg .blob {
    animation: none !important;
    transition: none !important;
    transform: translate3d(0, 0, 0); 
}

/* --- LEGAL & POLICY PAGE STYLES --- */
.legal-main-content {
    position: relative;
    z-index: 10;
    padding: 60px 20px 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 300px);
}

.glass-document-card {
    width: 100%;
    max-width: 900px;
    background-color: var(--glass-bg);
    background-image: var(--glass-noise);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
    padding: 4rem 4rem;
    color: #b0b0b0;
    line-height: 1.8;
}

.glass-document-card h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.glass-document-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.glass-document-card strong { color: #ffffff; }
.glass-document-card ul { margin-left: 1.5rem; margin-bottom: 1.5rem; }
.glass-document-card li { margin-bottom: 0.5rem; }

.glass-document-card a {
    color: #ff3b3b;
    text-decoration: none;
    font-weight: 600;
}

.glass-document-card a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .legal-main-content { padding: 40px 10px 80px 10px; }
    .glass-document-card { padding: 2.5rem 1.5rem; }
    .glass-document-card h1 { font-size: 2.2rem; }
}