/* Pluso Local - CSS для локальных кнопок социальных сетей */

/* Основной контейнер кнопок */
.pluso {
    display: inline-block;
    line-height: 1;
    margin-top: 10px;
}

.pluso-buttons {
    display: flex;
    gap: 4px;
    align-items: center;
}

/* Базовые стили для всех кнопок */
.pluso-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.pluso-btn:hover {
    text-decoration: none;
}

.pluso-btn svg {
    pointer-events: none;
}

/* Стили для Facebook */
.pluso-facebook {
    background-color: #1877f2 !important;
}

.pluso-facebook:hover {
    background-color: #166fe5 !important;
}

/* Адаптивность */
@media (max-width: 480px) {
    .pluso-buttons {
        gap: 2px;
    }
    
    .pluso-btn {
        width: 28px !important;
        height: 28px !important;
    }
    
    .pluso-btn svg {
        width: 14px !important;
        height: 14px !important;
    }
}

/* Анимации для лучшего UX */
@keyframes plusoBounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

.pluso-btn:active {
    animation: plusoBounce 0.6s ease;
}
