/* =============================================
   ChariTrip Access Control Styles
   ============================================= */

/* --- Popup Overlay --- */
.charitrip-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Popup Box --- */
.charitrip-popup-box {
    background: #ffffff;
    max-width: 420px;
    width: 90%;
    border-radius: 12px;
    padding: 40px 36px;
    text-align: center;
    position: relative;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.charitrip-popup-box h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.charitrip-popup-box p {
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* --- Popup Close Button --- */
.charitrip-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #9CA3AF;
    line-height: 1;
}

.charitrip-popup-close:hover {
    color: #111827;
}

/* --- Primary Button --- */
.charitrip-btn-primary {
    display: block;
    width: 100%;
    background: #1a4f8a;
    color: #ffffff;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 10px;
    text-align: center;
    transition: background 0.2s ease;
}

.charitrip-btn-primary:hover {
    background: #163d6e;
    color: #ffffff;
}

/* --- Secondary Button --- */
.charitrip-btn-secondary {
    display: block;
    width: 100%;
    background: none;
    color: #374151;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #D1D5DB;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s ease;
}

.charitrip-btn-secondary:hover {
    background: #F9FAFB;
}

/* --- Locked Block --- */
.charitrip-locked-block {
    border: 1px dashed #D1D5DB;
    border-radius: 10px;
    padding: 16px;
    margin: 16px 0;
    position: relative;
    overflow: hidden;
}

.charitrip-locked-label {
    font-weight: 600;
    font-size: 15px;
    color: #111827;
    margin-bottom: 8px;
}

.charitrip-locked-content {
    position: relative;
}

.charitrip-locked-blur {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
    color: #9CA3AF;
    font-size: 14px;
    padding: 8px 0;
}

.charitrip-locked-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 6px;
    gap: 10px;
}

.charitrip-lock-icon {
    font-size: 22px;
}

/* --- Unlock Button --- */
.charitrip-btn-unlock {
    background: #1a4f8a;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.charitrip-btn-unlock:hover {
    background: #163d6e;
}

/* --- Review Gate --- */
.charitrip-review-gate {
    border: 1px dashed #D1D5DB;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    margin: 16px 0;
}

.charitrip-review-gate span {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.charitrip-review-gate p {
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 16px;
}

/* --- Contact Button --- */
.charitrip-btn-contact {
    display: inline-block;
    width: auto;
    padding: 14px 32px;
    font-size: 16px;
}