#cp-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 9998;
}

#cp-popup {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: none;
    z-index: 9999;
}

#cp-popup h2 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
}

#cp-popup p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.cp-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cp-btn {
    display: block;
    padding: 12px;
    background: #e4002b;
    color: #fff !important;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s;
    text-align: center;
}

.cp-btn:hover {
    background: #c20024;
}

#cp-close {
    position: absolute;
    top: 12px; left: 12px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}
