/**
 * Privacy Policy Page Styles
 * Furious Fight Gear Theme
 */

/* =============================================
   PAGE HERO — light background (not dark image)
   ============================================= */
.pp-hero {
    background: linear-gradient(160deg, var(--off-white) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-light);
    padding: 52px 0 44px;
    position: relative;
    overflow: hidden;
}

.pp-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,57,43,.05) 0%, transparent 65%);
    pointer-events: none;
}

.pp-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,26,46,.04) 0%, transparent 65%);
    pointer-events: none;
}

.pp-hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter-desktop);
    position: relative;
    z-index: 1;
}

.pp-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 18px;
}

.pp-hero .breadcrumb a {
    color: var(--text-soft);
    text-decoration: none;
    transition: color .2s;
}

.pp-hero .breadcrumb a:hover { color: var(--red); }
.pp-hero .breadcrumb-sep { color: var(--gray-mid); }
.pp-hero .breadcrumb-cur { color: var(--navy); }

.pp-hero-tag {
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.pp-hero-title {
    font-family: var(--font-h);
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 14px;
}

.pp-hero-sub {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 22px;
}

.pp-hero-updated {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 13px;
    color: var(--text-soft);
}

.pp-hero-updated svg { color: var(--red); flex-shrink: 0; }
.pp-hero-updated strong { color: var(--navy); font-weight: 600; }

/* =============================================
   MAIN LAYOUT
   ============================================= */
.pp-wrap {
    padding: var(--gutter-desktop) 0;
    background: var(--white);
}

.pp-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter-desktop);
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 64px;
    align-items: start;
}

/* =============================================
   TABLE OF CONTENTS SIDEBAR
   ============================================= */
.pp-toc {
    position: sticky;
    top: 88px;
}

.pp-toc-label {
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
}

.pp-toc-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pp-toc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-left: 2px solid transparent;
    font-size: 13px;
    color: var(--text-soft);
    cursor: pointer;
    transition: color .2s, border-color .2s, background .2s;
    border-radius: 0 var(--radius) var(--radius) 0;
    line-height: 1.4;
    text-decoration: none;
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 2px solid transparent;
    width: 100%;
    text-align: left;
}

.pp-toc-link:hover {
    color: var(--navy);
    background: var(--off-white);
    border-left-color: var(--gray-mid);
}

.pp-toc-link.active {
    color: var(--red);
    border-left-color: var(--red);
    background: rgba(192,57,43,.04);
    font-weight: 600;
}

.pp-toc-num {
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-dark);
    flex-shrink: 0;
    width: 18px;
}

.pp-toc-link.active .pp-toc-num { color: var(--red); }

/* Sidebar contact card — same style as FAQs sidebar CTA */
.pp-toc-contact {
    margin-top: 28px;
    padding: 22px;
    background: var(--navy);
    border-radius: 6px;
}

.pp-tc-title {
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.pp-tc-text {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    line-height: 1.55;
    margin-bottom: 16px;
}

.pp-tc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    transition: gap .2s;
}

.pp-tc-btn:hover { gap: 10px; }

/* =============================================
   POLICY CONTENT
   ============================================= */
.pp-content {
    max-width: 800px;
}

.pp-section {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--gray-light);
}

.pp-section:last-child {
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 0;
    padding-bottom: 56px;
}

.pp-section-num {
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

/* Section headings */
.pp-section h2 {
    font-family: var(--font-h);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.05;
}

.pp-section h3 {
    font-family: var(--font-h);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    letter-spacing: .04em;
    margin: 28px 0 12px;
}

/* Paragraphs */
.pp-section p {
    font-size: 15px;
    line-height: 1.88;
    color: var(--text-soft);
    margin-bottom: 16px;
}

.pp-section p:last-child { margin-bottom: 0; }
.pp-section p strong { color: var(--text); font-weight: 600; }
.pp-section p a {
    color: var(--red);
    font-weight: 500;
    border-bottom: 1px solid rgba(192,57,43,.25);
    transition: border-color .2s;
}
.pp-section p a:hover { border-bottom-color: var(--red); }

/* Bullet lists from WYSIWYG */
.pp-section ul {
    margin: 12px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.pp-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.72;
}

.pp-section ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.pp-section ul li strong { color: var(--text); font-weight: 600; }

/* Ordered lists */
.pp-section ol {
    margin: 12px 0 18px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pp-section ol li {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.72;
}

/* Blockquotes as highlight boxes */
.pp-section blockquote {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-left: 3px solid var(--navy);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin: 24px 0;
}

.pp-section blockquote p {
    font-size: 14px;
    line-height: 1.72;
    color: var(--text-soft);
    margin: 0;
}

.pp-section blockquote p strong { color: var(--navy); }

/* Section highlight box — shown below WYSIWYG content */
.pp-highlight-box {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-left: 3px solid var(--red);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin: 24px 0 0;
}

.pp-highlight-label {
    font-family: var(--font-h);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

.pp-highlight-box p {
    font-size: 14px !important;
    line-height: 1.72 !important;
    color: var(--text-soft) !important;
    margin: 0 !important;
}

.pp-highlight-box p strong { color: var(--navy) !important; }
.pp-highlight-box p a { color: var(--red) !important; }

/* ── Fix 3: Contact cards section ── */
.pp-contact-section {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.pp-contact-heading {
    font-family: var(--font-h);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.05;
}

.pp-contact-cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 20px 0 24px;
}

.pp-cr-card {
    flex: 1;
    min-width: 200px;
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    padding: 18px 20px;
    transition: border-color .25s, box-shadow .25s;
}

.pp-cr-card:hover {
    border-color: var(--red);
    box-shadow: 0 4px 16px rgba(192,57,43,.08);
}

.pp-cr-icon {
    width: 44px;
    height: 44px;
    background: rgba(192,57,43,.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 12px;
    font-family: var(--font-h);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .04em;
    transition: background .3s, color .3s;
}

.pp-cr-card:hover .pp-cr-icon {
    background: var(--red);
    color: var(--white);
}

.pp-cr-label {
    font-family: var(--font-h);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 4px;
}

.pp-cr-val {
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.5;
}

.pp-cr-val a {
    color: var(--red) !important;
    border-bottom: 1px solid rgba(192,57,43,.2) !important;
}

.pp-cr-val a:hover {
    border-bottom-color: var(--red) !important;
}

.pp-contact-section .pp-section-note {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.88;
    margin-top: 20px;
}

.pp-contact-section .pp-section-note strong { color: var(--text); font-weight: 600; }
.pp-contact-section .pp-section-note a {
    color: var(--red);
    border-bottom: 1px solid rgba(192,57,43,.25);
}

@media (max-width: 700px) {
    .pp-contact-cards { flex-direction: column; }
}

/* Links in content */
.pp-section a {
    color: var(--red);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(192,57,43,.25);
    transition: border-color .2s;
}

.pp-section a:hover { border-bottom-color: var(--red); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .pp-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pp-toc {
        position: static;
        margin-bottom: 40px;
    }

    .pp-toc-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }

    .pp-toc-link {
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: var(--radius);
        padding: 6px 12px;
        font-size: 12px;
        width: auto;
    }

    .pp-toc-link.active {
        border-bottom-color: var(--red);
        border-left: none;
    }

    .pp-toc-contact { display: none; }

    .pp-content { max-width: 100%; }
}

@media (max-width: 768px) {
    .pp-hero { padding: 36px 0 32px; }

    .pp-hero-inner { padding: 0 var(--gutter-mobile); }

    .pp-hero-title { font-size: clamp(34px, 9vw, 48px); }

    .pp-hero-sub { font-size: 15px; }

    .pp-wrap { padding: var(--gutter-tablet) 0; }

    .pp-grid { padding: 0 var(--gutter-mobile); }

    .pp-section h2 { font-size: clamp(22px, 6vw, 30px); }

    .pp-section h3 { font-size: 16px; }

    .pp-section p,
    .pp-section ul li,
    .pp-section ol li { font-size: 14px; }

    .pp-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .pp-hero-title { font-size: clamp(30px, 9vw, 40px); }

    .pp-hero-sub { font-size: 14px; }

    .pp-toc-link { font-size: 11px; padding: 5px 10px; }
}
