/**
 * Chat Modal — Social Links
 * Shared across shop profile + account detail buy modal
 * Extracted from shop.css for DRY reuse
 */
.market-chat-notice {
    text-align: center;
    padding: var(--market-space-md) 0;
}

.market-chat-notice p {
    margin: var(--market-space-sm) 0 0;
    color: var(--market-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.market-chat-notice-icon {
    font-size: 2.5rem;
    color: var(--market-primary-text);
}

.market-chat-socials {
    display: flex;
    flex-direction: column;
    gap: var(--market-space-sm);
}

.market-chat-social-link {
    display: flex;
    align-items: center;
    gap: var(--market-space-sm);
    padding: 12px 16px;
    min-height: 44px;
    border-radius: var(--market-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: var(--market-transition);
}

.market-chat-social-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    .market-chat-social-link:hover {
        transform: none;
    }
}

.market-chat-social-link:focus-visible {
    outline: 2px solid var(--market-focus-ring);
    outline-offset: 2px;
}

.market-chat-social-link .iconify {
    font-size: 1.4em;
}

.market-chat-social--facebook {
    background: #1877f2;
}

.market-chat-social--zalo {
    background: #0068ff;
}

.market-chat-social--phone {
    background: #22c55e;
}

.market-chat-social--telegram {
    background: #26a5e4;
}

.market-chat-social--discord {
    background: #5865f2;
}

.market-chat-social--shop {
    background: var(--market-primary);
}

/* Reset trust-warning margin inside modal body */
.community-modal-body .market-shop-trust {
    margin-bottom: 0;
}
