/* CessionPro — Access Control CSS */

.cpa-access-wrap { position: relative; width: 100%; }

/* ── État déverrouillé ── */
.cpa-access-active { }
.cpa-access-banner {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; border-radius: 8px;
    font-size: 13px; margin-bottom: 16px;
}
.cpa-banner-active  { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.cpa-banner-warning { background: #fffbeb; border: 1px solid #fde68a; color: #854d0e; }
.cpa-banner-warning a { color: #854d0e; font-weight: 600; }

/* ── État verrouillé ── */
.cpa-access-locked { min-height: 420px; border-radius: 12px; overflow: hidden; }

/* Aperçu flou en arrière-plan */
.cpa-locked-preview {
    position: absolute; inset: 0;
    padding: 2rem; filter: blur(6px);
    opacity: .35; pointer-events: none;
    background: #f9fafb;
}
.cpa-preview-bar {
    height: 18px; background: #e5e7eb;
    border-radius: 6px; margin-bottom: 12px; width: 70%;
}
.cpa-preview-bar--short { width: 45%; }
.cpa-preview-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px;
}
.cpa-preview-card {
    height: 120px; background: #e5e7eb; border-radius: 10px;
}

/* Overlay central */
.cpa-locked-overlay {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    min-height: 420px; padding: 2rem 1rem;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(2px);
}

.cpa-locked-box {
    background: #fff; border: 1px solid #e5e7eb;
    border-radius: 16px; padding: 2.5rem 2rem;
    max-width: 480px; width: 100%; text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.cpa-lock-icon { font-size: 36px; margin-bottom: 14px; }

.cpa-locked-title {
    font-size: 20px; font-weight: 700; color: #111;
    margin: 0 0 10px; line-height: 1.3;
}

.cpa-locked-sub {
    font-size: 14px; color: #555; line-height: 1.65;
    margin: 0 0 20px;
}

.cpa-locked-features {
    list-style: none; padding: 0; margin: 0 0 22px;
    text-align: left; display: inline-block;
}
.cpa-locked-features li {
    font-size: 13px; color: #374151; padding: 5px 0;
    border-bottom: 1px solid #f3f4f6;
}
.cpa-locked-features li:last-child { border-bottom: none; }

.cpa-locked-price {
    font-size: 26px; font-weight: 800; color: #111;
    margin-bottom: 20px; line-height: 1;
}
.cpa-price-label {
    display: block; font-size: 12px; font-weight: 400;
    color: #9ca3af; margin-top: 4px;
}

.cpa-locked-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #111; color: #fff; border-radius: 9px;
    padding: 13px 28px; font-size: 15px; font-weight: 600;
    text-decoration: none; transition: opacity .15s; width: 100%;
    justify-content: center;
}
.cpa-locked-btn:hover { opacity: .85; color: #fff; }

.cpa-already-member {
    font-size: 13px; color: #9ca3af; margin: 14px 0 0;
}
.cpa-already-member a { color: #6366f1; }

@media (max-width: 480px) {
    .cpa-locked-box { padding: 1.5rem 1rem; }
    .cpa-locked-title { font-size: 17px; }
}
