/* suppliers4.css — small additions on top of goods4.css for the Suppliers tab. */

/* Inline logo next to supplier name */
.mic-supplier-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mic-supplier-logo {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3px;
    box-sizing: border-box;
    text-decoration: none;
}

.mic-supplier-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.mic-supplier-logo-empty {
    border-color: transparent;
    background: transparent;
    pointer-events: none;
}

.mic-supplier-name {
    margin: 0;
    line-height: 1.2;
}

.mic-supplier-title-block {
    flex: 1;
    min-width: 0;
}

.mic-supplier-meta {
    margin-top: 2px;
    font-size: 12px;
    color: #6b7280;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.mic-supplier-meta-sep {
    opacity: 0.5;
}

.mic-supplier-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.mic-meta-ico {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: #2563eb;
}

/* Anchor variant of supplier action buttons (no underline) */
.mic-supplier-actions a.mic-contact-btn,
.mic-supplier-actions a.mic-chat-btn {
    text-decoration: none;
}

/* Main Products — inherit text color, hint with hover only */
.mic-top-cat-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: color 0.15s, border-color 0.15s;
}
.mic-top-cat-link:hover {
    color: #2563eb;
    border-bottom-color: #2563eb;
}
