/* Социальные кнопки */
.social-section {
    margin-top: var(--space-2xl);
}

.social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.social-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.social-label {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.qr-code {
    margin-bottom: var(--space-md);

}

.qr-code img {
    width: 100px;  /* Было 120px */
    height: 100px; /* Было 120px */
    border-radius: var(--radius-md);
}

.qr-code img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
}

.social-link {
    display: block;
    font-size: var(--text-base);
    color: var(--text-secondary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}