.woo-custom-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.woo-custom-popup {
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 480px;
    width: 90%;
    display: none;
}

.woo-custom-popup-inner {
    position: relative;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}

.woo-custom-popup-title {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.woo-custom-popup-content {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.woo-custom-popup-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.woo-custom-popup-cta {
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    /* Default colors – can override via custom CSS in the settings */
    background: #000;
    color: #fff;
}
