

:root {
    --icon-size: 24px;
}

.sticky-social-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 15px;
    min-width: 160px;
    border-radius: 8px 0 0 8px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-button:hover {
    transform: translateX(-8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.telegram-button {
    background: linear-gradient(135deg, #0088cc, #005f99);
}

.social-icon {
    width: var(--icon-size);
    height: var(--icon-size);
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon svg {
    width: var(--icon-size);
    height: var(--icon-size);
    fill: white;
}

.social-text {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .social-button {
        min-width: 140px;
        font-size: 13px;
        padding: 8px 12px;
    }

    .social-icon {
        margin-right: 8px;
    }
}