#homy-contact-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

#homy-contact-popup.is-visible {
    display: block;
}

.homy-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(44, 25, 45, 0.55);
    backdrop-filter: blur(3px);
}

.homy-popup-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 460px;
    width: calc(100% - 40px);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: homyPopupIn 0.3s ease;
}

@keyframes homyPopupIn {
    from { opacity: 0; transform: translate(-50%, -46%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
}

.homy-popup-icon {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1;
}

.homy-popup-box h2 {
    font-size: 22px;
    font-weight: 700;
    color: #2C192D;
    margin: 0 0 12px 0;
}

.homy-popup-box p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

.homy-popup-close {
    display: inline-block;
    background: #A17DB3;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.homy-popup-close:hover {
    background: #2C192D;
}

body.homy-popup-open {
    overflow: hidden;
}