.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    z-index: 3000;
    backdrop-filter: blur(2px);
}

.modal {
    background: white;
    max-width: 460px;
    width: 90%;
    padding: 28px 24px;
    border-radius: 28px;
    position: relative;
    box-shadow: 0 25px 40px rgba(0,0,0,0.2);
    text-align: center;
}

.modal h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.info-text {
    font-size: 14px;
    color: #5c6f87;
    margin-bottom: 24px;
    line-height: 1.4;
}

.loc-option-btn {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
    border: none;
    background: #f2f4f8;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #e68a0c;
}

.city-select {
    width: 100%;
    padding: 14px;
    border-radius: 60px;
    border: 1px solid #ddd;
    margin: 8px 0;
    font-size: 14px;
    background: white;
}

.close-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
}