/* Overlay */
#wc-login-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 20px;
}

/* Popup container */
.wc-login-popup-inner {
    max-width: 420px;
    width: 100%;
    background: #fff;
    padding: 25px;
    position: relative;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Close button */
.wc-login-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    border-radius: 50%;
    transition: background 0.2s;
}

.wc-login-close:hover {
    background: rgba(0,0,0,0.1);
}

.close-icon {
    font-size: 28px;
    line-height: 1;
    pointer-events: none;
}

/* Mobile-friendly adjustments */
@media (max-width: 480px) {
    .wc-login-close {
        width: 100px;
        height: 100px;
    }

    .close-icon {
        font-size: 36px;
    }
}
