/* Shared by the initial marketplace grid and its filtered HTMX results. */
.marketplace-seller-name {
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10.5px;
    line-height: 1.4;
    min-height: 1.4em;
}

.marketplace-seller-details {
    min-height: 2rem;
    align-content: center;
}

.product-card :is(a, button):focus-visible {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
    border-radius: 4px;
}

@media (max-width: 639px) {
    .marketplace-seller-name {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        white-space: normal;
        overflow-wrap: anywhere;
        min-height: 2.8em;
    }
}
