#vpsm-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0,0,0,.55);
    align-items: center;
    justify-content: center;
    padding: 16px;
    /* overflow: hidden; */
}
#vpsm-overlay.vpsm-open { display: flex; }

#vpsm-box {
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 880px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

#vpsm-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px 16px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}
#vpsm-title { margin: 0; font-size: 18px; font-weight: 600; color: #1a1a1a; }

#vpsm-close {
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background .15s, color .15s;
}
#vpsm-close:hover { background: #f0f0f0; color: #333; }

#vpsm-bd {padding: 20px 24px 24px;/* overflow-y: auto; */flex: 1;}

.vpsm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.vpsm-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #999;
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.vpsm-loc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .12s;
}
.vpsm-loc:hover:not(.vpsm-soon) { background: #f5f5f5; color: inherit; }
.vpsm-city  {color: #000;font-size: 16px;}
.vpsm-price { font-weight: 600; color: var(--fs-color); margin-left: 10px; white-space: nowrap; }
.vpsm-soon  {cursor: default;opacity: .5;}
.vpsm-soon .vpsm-price { font-weight: 400; color: #aaa;  }

.vpsm-dots { display: flex; justify-content: center; gap: 8px; padding: 48px 0; }
.vpsm-dots span { width: 9px; height: 9px; border-radius: 50%; background: #ddd; animation: vpsm-p 1.2s infinite ease-in-out; }
.vpsm-dots span:nth-child(2) { animation-delay: .2s; }
.vpsm-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes vpsm-p {
    0%,80%,100% { transform: scale(.7); opacity:.4; }
    40%         { transform: scale(1);  opacity:1;  }
}

.vpsm-err { text-align: center; color: #c0392b; padding: 32px 0; font-size: 14px; }

@media (max-width: 600px) {
    .vpsm-grid { grid-template-columns: 1fr; }
    #vpsm-bd, #vpsm-hd { padding: 14px 16px; }
}
