.mod_socialshare .share-block {
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-radius: 2.5rem;
    padding: 2rem 2.2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}
.share-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.share-title i { color: #3b82f6; }
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    min-width: 3.4rem;
    height: 3.4rem;
    padding: 0 12px;
    border-radius: 2rem;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border: none;
    cursor: pointer;
}
.share-btn.vk { background: #0077FF; }
.share-btn.ok { background: #F4731C; }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #0F1419; }
.share-btn.pinterest { background: #E60023; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.telegram { background: #2AABEE; }
.share-btn.viber { background: #7360F2; }
.share-btn.copy {
    background: #fff;
    color: #334155;
    border: 2px dashed #cbd5e1;
}
.share-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
	text-decoration: none;
}
.share-btn.copy.copied {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}
.share-count {
    background: rgba(255,255,255,0.25);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: bold;
}
@media (max-width: 500px) {
    .share-block { padding: 1.2rem; }
    .share-buttons { gap: 0.6rem; }
    .share-btn { min-width: 2.8rem; height: 2.8rem; font-size: 1rem; }
}