﻿:root {
    --shames-main: #4B1B35;
    --shames-soft: #F7E6EC;
    --shames-bg: #f8f5f9;
    --shames-text: #2b2b2b;
}

.privacy-page {
    background: var(--shames-bg);
    padding: 30px 0 50px;
    direction: rtl;
    font-family: 'Tajawal', sans-serif;
}

.privacy-hero {
    background: linear-gradient( #4B1B35, #4B1B35);
    color: #fff;
    border-radius: 18px;
    padding: 28px 22px;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
}

    /* Sun on the left (north) */
    .privacy-hero::after {
        content: "";
        position: absolute;
        top: -90px;
        left: -90px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient(circle at center, rgba(255,255,255,.98) 0%, rgba(255,225,170,.9) 25%, rgba(255,195,130,.6) 45%, rgba(255,195,130,.3) 60%, rgba(255,195,130,0) 72% );
        filter: blur(1px);
        z-index: 0;
    }

    .privacy-hero::before {
        content: "";
        position: absolute;
        top: -120px;
        left: -120px;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: repeating-conic-gradient( from 0deg, rgba(255,215,150,.35) 0deg, rgba(255,215,150,.35) 6deg, transparent 6deg, transparent 16deg );
        opacity: .35;
        z-index: 0;
    }

    .privacy-hero * {
        position: relative;
        z-index: 1;
    }

    .privacy-hero h1 {
        margin: 0 0 8px;
        font-weight: 800;
        letter-spacing: .2px;
        font-size: 28px;
    }

    .privacy-hero p {
        margin: 0;
        opacity: .95;
        font-size: 15px;
        line-height: 1.9;
    }

.privacy-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
}

.shames-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 22px rgba(0,0,0,.06);
    border: 1px solid rgba(75,27,53,.08);
    overflow: hidden;
}

    .shames-card .card-head {
        background: var(--shames-soft);
        padding: 14px 16px;
        border-bottom: 1px solid rgba(75,27,53,.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

        .shames-card .card-head h3 {
            margin: 0;
            color: var(--shames-main);
            font-weight: 800;
            font-size: 16px;
        }

.badge-soft {
    background: rgba(75,27,53,.08);
    color: var(--shames-main);
    border: 1px solid rgba(75,27,53,.12);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.shames-card .card-body {
    padding: 16px;
    color: var(--shames-text);
    line-height: 2;
    font-size: 15px;
}

.policy-list {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.policy-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(247,230,236,.55);
    border: 1px solid rgba(75,27,53,.10);
    border-radius: 14px;
    padding: 12px 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--shames-main);
    margin-top: 7px;
    flex: 0 0 auto;
}

.policy-item b {
    color: var(--shames-main);
}

.note-box {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(75,27,53,.10);
    box-shadow: 0 10px 22px rgba(0,0,0,.06);
    overflow: hidden;
}

    .note-box .note-head {
        background: var(--shames-soft);
        padding: 14px 16px;
        border-bottom: 1px solid rgba(75,27,53,.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

        .note-box .note-head h4 {
            margin: 0;
            color: var(--shames-main);
            font-weight: 800;
            font-size: 16px;
        }

    .note-box .note-body {
        padding: 16px;
        line-height: 2;
        color: var(--shames-text);
        font-size: 15px;
    }

.btn-shames {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--shames-main);
    color: #fff;
    border: 0;
    padding: 11px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: .15s ease-in-out;
}

    .btn-shames:hover {
        transform: translateY(-1px);
        opacity: .95;
        color: #fff;
    }

@media (max-width: 992px) {
    .privacy-grid

{
    grid-template-columns: 1fr;
}
}

/* Brand inside Privacy note */
.privacy-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.privacy-brand-text {
    font-family: 'Pacifico', cursive;
    font-size: 50px;
    color: #4B1B35;
    letter-spacing: .5px;
}
