.contact-popup__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.contact-popup__overlay.show {
        display: flex;
    }

.contact-popup {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    min-width: 400px;
    max-width: 480px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-popup h3 {
        margin: 0 0 24px 0;
        font-size: 22px;
        font-weight: 600;
        color: #1a1a1a;
    }

.contact-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-popup__close:hover {
        background: #f0f0f0;
    }

.contact-popup__item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-bottom: 12px;
}

.contact-popup__item:last-child {
        margin-bottom: 0;
    }

.contact-popup__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-popup__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-popup__label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-popup__value {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
    -webkit-text-decoration: none;
    text-decoration: none;
}

.contact-popup__value:hover {
        -webkit-text-decoration: underline;
        text-decoration: underline;
    }

.contact-popup__copy {
    flex-shrink: 0;
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.contact-popup__copy:hover {
        background: #f5f5f5;
        border-color: #ccc;
    }

--copied.contact-popup__copy {
        border-color: #4caf50;
        background: #e8f5e9;
    }

--copied.contact-popup__copy svg path {
            fill: #4caf50;
        }

.contact-popup__success-message {
    width: 100%;
    font-size: 0.795rem;
    color: #3c3;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, margin-top 0.3s ease-in-out;
    margin-top: 0;
}

.contact-popup__success-message.show {
        max-height: 24px;
        opacity: 1;
        margin-top: 4px;
    }
