.site-share-button {
    position: fixed;
    right: 18px;
    bottom: 104px;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 46px;
    padding: 0 15px;
    border: 0;
    border-radius: 999px;
    background: #1f2b3d;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.24);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-share-button:hover,
.site-share-button:focus-visible {
    background: #f28c28;
    box-shadow: 0 14px 32px rgba(242, 140, 40, 0.26);
    transform: translateY(-2px);
}

.site-share-button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

@media (max-width: 575px) {
    .site-share-button {
        right: 14px;
        bottom: 88px;
        width: 48px;
        height: 48px;
        padding: 0;
    }

    .site-share-button span {
        display: none;
    }
}
