/* Blur content behind paywall */
.pmp-blur {
    filter: blur(6px);
    pointer-events: none;
}

/* ---------------- LOGIN / PAYWALL OVERLAY ---------------- */

/* Full-page overlay */
body.single .login-gate-wrapper {
    position: fixed;
    inset: 0; /* top:0 right:0 bottom:0 left:0 */
    background: #76b2d8;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
    box-sizing: border-box;
}

/* Hide header intentionally when gate is shown */
body.single .login-gate-wrapper ~ header,
body.single .login-gate-wrapper ~ .td-header-wrap {
    display: none !important;
}

/* Inner container */
.login-gate-inner {
    max-width: 900px;
    width: 100%;
    display: flex;
    gap: 50px;
    padding: 30px;
    box-sizing: border-box;
    background: #76b2d8;
}

/* Left content */
.login-gate-left {
    flex: 1;
    color: #000;
}

.login-gate-left h2,
.login-gate-left h3 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.login-gate-left p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Login links */
.login-links a {
    font-weight: 700;
    color: #000;
    text-decoration: underline;
}

.login-links a:hover {
    color: #222;
}

/* Right form */
.login-gate-right {
    flex: 1;
}

.login-gate-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-gate-form input {
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #fff;
    border-radius: 8px;
    background: #fff;
    color: #000;
}

.login-gate-form input::placeholder {
    font-weight: 700;
    color: #000;
}

.login-gate-form button {
    padding: 18px;
    font-size: 22px;
    font-weight: 900;
    background: #000;
    border: 2px solid #000;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
}

.login-gate-form button:hover {
    background: #111;
    color: #f0f500;
}

/* Scrollbar */
.login-gate-wrapper::-webkit-scrollbar {
    width: 8px;
}

.login-gate-wrapper::-webkit-scrollbar-thumb {
    background-color: #222;
    border-radius: 4px;
}

/* ---------------- PAYPAL POPUP ---------------- */

.alma-popup.payment {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 768px) {
    .login-gate-inner {
        flex-direction: column;
        gap: 25px;
    }

    .login-gate-left h2,
    .login-gate-left h3 {
        font-size: 32px;
    }

    .login-gate-form input,
    .login-gate-form button {
        font-size: 16px;
        padding: 14px;
    }
}

/* payment css start*/

.alma-payment-screen {
    position: fixed;
    top: var(--header-height, 100px);
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-height, 100px));

    background: #76b2d8;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;
    overflow-y: auto;
    box-sizing: border-box;
}


.alma-payment-card {
    background: #ffffff;
    max-width: 460px;
    width: 100%;
    padding: 48px 40px;
    border-radius: 16px;

    text-align: center;

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.alma-payment-card h1 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #111;
}

.alma-payment-card p {
    font-size: 18px;
    color: #444;
    margin-bottom: 28px;
}

.alma-payment-card small {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    color: #777;
}
#paypal-button-container {
    margin-top: 10px;
}
@media (max-width: 480px) {
    .alma-payment-card {
        padding: 32px 24px;
    }

    .alma-payment-card h1 {
        font-size: 26px;
    }
}
.alma-pay-btn {
    width: 100%;
    padding: 14px 20px;
    margin-top: 20px;

    background: #111;
    color: #fff;

    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 10px;

    cursor: pointer;
    transition: all 0.2s ease;
}

.alma-pay-btn:hover {
    background: #000;
    transform: translateY(-1px);
}

.alma-pay-btn:active {
    transform: translateY(0);
}


