.vw-b2b-products__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.vw-b2b-products__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vw-b2b-products__card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.vw-b2b-products__image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.vw-b2b-products__info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.vw-b2b-products__name {
    font-size: 13px;
    font-weight: 500;
    color: #111;
    margin: 0;
    line-height: 1.4;
}

.vw-b2b-products__sku {
    font-size: 11px;
    color: #999;
    font-family: monospace;
    margin: 0;
}

.vw-b2b-products__price {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 8px 0 0;
}

.vw-b2b-products__empty {
    color: #888;
    font-size: 14px;
}

/* Toolbar */
.vw-b2b-products__toolbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 16px;
    padding-left: 12px;
}

.vw-b2b-products__sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.vw-b2b-products__sort-label {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}

.vw-b2b-products__sort-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 6px 32px 6px 10px;
    font-size: 13px;
    color: #111;
    cursor: pointer;
    line-height: 1.4;
}

.vw-b2b-products__sort-select:focus {
    outline: none;
    border-color: #aaa;
}
