/* ─── Pagina Politică de Confidențialitate (GDPR) ───────────────────────── */

.gdpr-page {
    background-color: #fdf9f4;
    min-height: calc(100vh - 90px);
}

.gdpr {
    padding: 80px 20px 100px;
}

.gdpr__inner {
    max-width: 820px;
    margin: 0 auto;
}

/* ─── Titlu principal ─── */
.gdpr__title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #1a1400;
    margin: 0 0 10px;
    line-height: 1.2;
}

.gdpr__title::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: #c8a97e;
    margin-top: 16px;
    margin-bottom: 48px;
}

/* ─── Secțiuni ─── */
.gdpr__section {
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid #e0d4c0;
}

.gdpr__section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.gdpr__section-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c8a97e;
    margin: 0 0 20px;
}

/* ─── Subsecțiuni ─── */
.gdpr__subsection {
    margin: 28px 0 0;
    padding: 24px 24px 24px 20px;
    background: #fff;
    border-left: 3px solid #e0d4c0;
    border-radius: 0 4px 4px 0;
}

.gdpr__subsection-title {
    font-size: 14px;
    font-weight: 700;
    color: #2e2e2e;
    margin: 0 0 10px;
    letter-spacing: 0.3px;
}

/* ─── Paragraphe ─── */
.gdpr__section p,
.gdpr__subsection p {
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin: 0 0 12px;
}

.gdpr__section p:last-child,
.gdpr__subsection p:last-child {
    margin-bottom: 0;
}

/* ─── Liste ─── */
.gdpr__list {
    list-style: none;
    margin: 12px 0 12px;
    padding: 0;
}

.gdpr__list li {
    position: relative;
    padding: 6px 0 6px 20px;
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    border-bottom: 1px solid #f0e8dc;
}

.gdpr__list li:last-child {
    border-bottom: none;
}

.gdpr__list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #c8a97e;
}

/* Liste imbricate */
.gdpr__list--nested {
    margin: 10px 0 4px;
    padding-left: 16px;
}

.gdpr__list--nested li {
    font-size: 14px;
}

.gdpr__list--nested li::before {
    width: 4px;
    height: 4px;
    background-color: #bbb;
    top: 14px;
}

/* Liste ordonate (ol) */
.gdpr__list--ordered {
    list-style: none;
    counter-reset: gdpr-counter;
}

.gdpr__list--ordered li {
    counter-increment: gdpr-counter;
    padding-left: 32px;
}

.gdpr__list--ordered li::before {
    content: counter(gdpr-counter) '.';
    position: absolute;
    left: 0;
    top: 6px;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    font-size: 14px;
    font-weight: 700;
    color: #c8a97e;
}

/* ─── Linkuri ─── */
.gdpr__section a,
.gdpr__subsection a {
    color: #c8a97e;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-all;
}

.gdpr__section a:hover,
.gdpr__subsection a:hover {
    color: #b8936a;
}

/* ─── Notice box ─── */
.gdpr__notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: #fff9f0;
    border: 1px solid #e0d4c0;
    border-left: 4px solid #c8a97e;
    border-radius: 4px;
}

.gdpr__notice svg {
    flex-shrink: 0;
    color: #c8a97e;
    margin-top: 2px;
}

.gdpr__notice p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ─── Liste definiții ─── */
.gdpr__list--definitions li {
    align-items: flex-start;
    padding: 12px 4px;
    padding-left: 0;
    line-height: 1.75;
}

.gdpr__list--definitions li::before {
    display: none;
}

/* ─── Butoane politici conexe ─── */
.gdpr__section--links {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.gdpr__policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.gdpr__policy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #fff;
    border: 2px solid #c8a97e;
    border-radius: 4px;
    color: #c8a97e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.gdpr__policy-btn:hover {
    background: #c8a97e;
    color: #fff;
    text-decoration: none !important;
}

.gdpr__policy-btn svg {
    flex-shrink: 0;
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
    .gdpr {
        padding: 48px 16px 72px;
    }

    .gdpr__subsection {
        padding: 18px 16px;
    }

    .gdpr__policy-links {
        flex-direction: column;
    }

    .gdpr__policy-btn {
        justify-content: center;
    }
}
