#gds-share-popup {
    position: fixed;
    top: 0;
    left: 0;
    /* width: 100%;
    height: 100%; */
    z-index: 9999;
}

/* .gds-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    pointer-events: auto;

    z-index: 1;   
} */

.gds-popup {
    position: fixed;              /* 🔥 change from relative */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);  /* 🔥 perfect centering */

    background: #F2E2FC;
    color: #000;                  /* better contrast */
    width: 320px;
    max-width: 90%;               /* mobile safe */

    padding: 20px;
    border-radius: 10px;

    z-index: 2;
}

.gds-share-options a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #444;
    color: #fff;
    text-decoration: none;
}

.gds-close {
    float: right;
    background-color: var(--e-global-color-secondary);
    border: none;
    color: #fff;
    font-size: 20px;
}

.lost_password{
    display: none;
}

.woocommerce-LostPassword{
    display: block !important;
}