.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Блок шаринга */
.share-section {
    margin: 2rem 0 1rem;
    text-align: center;
}
.share-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 0.75rem;
}
.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #222130;
    transition: 0.2s;
    text-decoration: none;
    cursor: pointer;
    border: none;
}
.share-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}
.share-btn svg {
    width: 18px;
    height: 18px;
}
@media (max-width: 500px) {
    .share-btn span {
        display: none;
    }
    .share-btn {
        padding: 10px;
    }
}