/* ═══════════════════════════════════════════════════════════
   SH Global Pricing — styles
   ═══════════════════════════════════════════════════════════ */

/* ─── Overlay backdrop ─── */
.shgp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

/* Prevent background scroll when popup is open */
body.shgp-body-locked {
    overflow: hidden;
}

/* ─── Login popup card ─── */
.shgp-login-card {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    border-radius: 20px;
    padding: 36px 28px 32px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: shgp-slide-in 0.28s ease;
}

@keyframes shgp-slide-in {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* Close button */
.shgp-close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.shgp-close-btn:hover {
    background: rgba(255,255,255,0.25);
}

/* Icon badge */
.shgp-login-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e91e8c, #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(233, 30, 140, 0.4);
}
.shgp-login-icon svg {
    width: 34px;
    height: 34px;
}

/* Title */
.shgp-login-title {
    font-size: 1.55rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
}

/* Subtitle */
.shgp-login-sub {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    margin: 0 0 20px;
    line-height: 1.5;
}

/* Feature list */
.shgp-login-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    text-align: left;
}
.shgp-login-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}
.shgp-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: linear-gradient(135deg, #e91e8c, #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shgp-check svg {
    width: 13px;
    height: 13px;
}

/* CTA button */
.shgp-login-cta {
    display: block;
    background: linear-gradient(90deg, #e91e8c, #ff5722);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 12px;
}
.shgp-login-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(233, 30, 140, 0.55);
    color: #fff !important;
}

/* Hint text */
.shgp-login-hint {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

/* ─── Mobile ─── */
@media (max-width: 420px) {
    .shgp-login-card {
        padding: 28px 18px 24px;
    }
    .shgp-login-title {
        font-size: 1.3rem;
    }
}

/* ─── Apply Now button (second CTA) ─── */
.shgp-apply-btn {
    display: block;
    background: transparent;
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 11px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.3);
    margin-top: 10px;
    margin-bottom: 12px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    text-align: center;
}
.shgp-apply-btn:hover {
    border-color: rgba(255,255,255,0.7);
    color: #fff !important;
    background: rgba(255,255,255,0.08);
}
