.social-share-block {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.share-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px;
    color: #2f3947;
}

.social-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s, opacity 0.3s;
    position: relative;
}

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-icon {
    font-size: 14px;
    margin-bottom: 5px;
}

.share-count {
    font-size: 12px;
    background: rgba(0,0,0,0.2);
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
}

/* Цвета кнопок */
.vk-btn { background: #4a76a8; }
.tg-btn { background: #0088cc; }
.wa-btn { background: #25d366; }
.vb-btn { background: #7360f2; }
.ok-btn { background: #ee8208; }

.total-shares {
    font-size: 14px;
    color: #666;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.total-count {
    font-weight: bold;
    color: #333;
}

/* Адаптивность */
@media (max-width: 768px) {
    .share-btn {
        width: 40px;
        height: 40px;
    }
    
    .social-icon {
        font-size: 12px;
    }
    
    .share-count {
        font-size: 11px;
    }
}