.site-phone-alert-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2e3192;
    color: #fff;
    z-index: 9999;
    padding: 14px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
    animation: sitePhoneAlertSlideUp .35s ease;
    font-family: Arial, sans-serif;
    border-top: 3px solid #b6e8ff;
}

.site-phone-alert-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    padding-right: 48px;
}

.site-phone-alert-text {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 16px;
}

.site-phone-alert-text strong {
    font-weight: 700;
}

.site-phone-alert-text b {
    color: #b6e8ff;
    font-weight: 700;
}

.site-phone-alert-call-btn {
    background: #ffffff;
    color: #2e3192;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    transition: .25s;
    white-space: nowrap;
}

.site-phone-alert-call-btn:hover {
    background: #edf5fe;
}

.site-phone-alert-close-btn {
    position: absolute;
    right: 0;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: #ee1c23;
    color: white;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: .25s;
}

.site-phone-alert-close-btn:hover {
    background: #d6181f;
}

@keyframes sitePhoneAlertSlideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .site-phone-alert-bar {
        padding: 16px;
    }

    .site-phone-alert-content {
        flex-direction: column;
        gap: 14px;
        padding-right: 0;
    }

    .site-phone-alert-text {
        flex-direction: column;
        text-align: center;
        white-space: normal;
        font-size: 15px;
        line-height: 1.4;
    }

    .site-phone-alert-call-btn {
        width: 100%;
        text-align: center;
    }

    .site-phone-alert-close-btn {
        top: -2px;
        right: 0;
        width: 24px;
        height: 24px;
        font-size: 12px;
        border-radius: 6px;
    }
}