.buyer-product-list {
    min-block-size: 680px;
    color: var(--gmx-ink);
    background: var(--gmx-surface);
}

.buyer-product-list__shell {
    padding-block: 28px 64px;
}

.buyer-product-list__breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-inline-size: 0;
    margin-block-end: 10px;
}

.buyer-product-list__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-block-end: 22px;
}

.buyer-product-list__heading > div {
    min-inline-size: 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.buyer-product-list__heading h1 {
    margin: 0;
    overflow: hidden;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
}

.buyer-product-list__heading p {
    margin: 0;
    color: var(--gmx-muted);
    font-size: 13px;
    white-space: nowrap;
}

.buyer-product-list__rfq {
    flex: 0 0 auto;
    min-block-size: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 14px;
    color: #d66d00 !important;
    background: #fffaf0;
    border: 1px solid var(--gmx-orange);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
}

.buyer-product-list__rfq:hover,
.buyer-product-list__rfq:focus-visible {
    background: #fff3dc;
    outline: 0;
}

/*.buyer-product-list__toolbar {
    min-block-size: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-block-end: 16px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--gmx-line);
    border-radius: 8px;
}*/

.buyer-product-list__mobile-toolbar {
    display: none;
}

.buyer-product-list__mobile-controls {
    display: none;
}

.buyer-product-list__sorts {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gmx-muted);
    font-size: 12px;
}

.buyer-product-list__sorts > span {
    margin-inline-end: 4px;
}

.buyer-product-list__sorts a {
    min-block-size: 32px;
    display: inline-flex;
    align-items: center;
    padding-inline: 12px;
    border-radius: 5px;
    color: var(--gmx-body);
    font-weight: 600;
}

.buyer-product-list__sorts a:hover,
.buyer-product-list__sorts a:focus-visible {
    color: var(--gmx-navy-2);
    background: #f3f6f9;
    outline: 0;
}

.buyer-product-list__sorts a.is-active {
    color: #fff;
    background: var(--gmx-navy-2);
}

.buyer-product-list__layout {
    position: relative;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.buyer-product-list__layout.is-full {
    grid-template-columns: minmax(0, 1fr);
}

.buyer-product-list__filters {
    min-inline-size: 0;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--gmx-line);
    border-radius: 8px;
}

.buyer-product-list__filters-heading {
    display: none;
}

.buyer-product-list__category-section h2 {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 800;
}

.buyer-product-list__all-products {
    display: block;
    margin-block-end: 6px;
    color: var(--gmx-navy-2) !important;
    font-size: 14px;
    font-weight: 700;
}

.buyer-product-categories,
.buyer-product-categories ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.buyer-product-categories__item + .buyer-product-categories__item {
    margin-block-start: 2px;
}

.buyer-product-categories__row {
    min-block-size: 32px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.buyer-product-categories__item--level-2 > .buyer-product-categories__row {
    padding-inline-start: 12px;
}

.buyer-product-categories__item--level-3 > .buyer-product-categories__row {
    padding-inline-start: 24px;
}

.buyer-product-categories__row > a,
.buyer-product-categories__label {
    min-inline-size: 0;
    flex: 1;
    overflow: hidden;
    color: var(--gmx-body);
    font-size: 13px;
    line-height: 1.35;
    text-overflow: ellipsis;
}

.buyer-product-categories__item--level-1 > .buyer-product-categories__row .buyer-product-categories__label,
.buyer-product-categories__item--level-2 > .buyer-product-categories__row .buyer-product-categories__label {
    font-weight: 700;
}

.buyer-product-categories__item--level-3 > .buyer-product-categories__row > a {
    font-weight: 400;
}

.buyer-product-categories__row > a:hover,
.buyer-product-categories__row > a:focus-visible,
.buyer-product-categories li.is-current > .buyer-product-categories__row > a,
.buyer-product-categories li.is-current > .buyer-product-categories__row .buyer-product-categories__label {
    color: var(--gmx-orange);
    outline: 0;
}

.buyer-product-categories__toggle {
    inline-size: 100%;
    min-block-size: 32px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 2px 0 0;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    text-align: start;
}

.buyer-product-categories__toggle:hover,
.buyer-product-categories__toggle:focus-visible {
    background: #f3f6f9;
    outline: 0;
}

.buyer-product-categories__chevron {
    inline-size: 28px;
    block-size: 28px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
}

.buyer-product-categories__toggle img {
    inline-size: 12px;
    block-size: 12px;
    transition: rotate .18s ease;
}

.buyer-product-categories__toggle[aria-expanded="true"] img {
    rotate: 180deg;
}

.buyer-product-categories--depth-1,
.buyer-product-categories--depth-2 {
    margin-block: 2px 4px;
    border: 0;
}

.buyer-product-list__results {
    min-inline-size: 0;
}

.buyer-product-list__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.buyer-product-top-ad {
    min-inline-size: 0;
    display: grid;
    grid-template-columns: 228px minmax(0, 1fr);
    gap: 18px;
    margin-block-end: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--gmx-line);
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
}

.buyer-product-top-ad__media {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #eef2f6;
}

.buyer-product-top-ad__media a,
.buyer-product-top-ad__media video,
.buyer-product-top-ad__media img {
    display: block;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
}

.buyer-product-top-ad__play {
    position: absolute;
    inset: 50% auto auto 50%;
    inline-size: 56px;
    block-size: 56px;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, .92);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .22);
    cursor: pointer;
    translate: -50% -50%;
    z-index: 2;
}

.buyer-product-top-ad__play::before {
    content: '';
    position: absolute;
    inset: 50% auto auto 52%;
    border-block: 10px solid transparent;
    border-inline-start: 16px solid #111827;
    translate: -40% -50%;
}

.buyer-product-top-ad__play:hover,
.buyer-product-top-ad__play:focus-visible {
    outline: 0;
    scale: 1.04;
}

.buyer-product-top-ad__body {
    min-inline-size: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.buyer-product-top-ad__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.buyer-product-top-ad__identity {
    min-inline-size: 0;
}

.buyer-product-top-ad__name {
    display: block;
    overflow: hidden;
    color: var(--gmx-ink) !important;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.buyer-product-top-ad__name:hover,
.buyer-product-top-ad__name:focus-visible {
    color: var(--gmx-orange) !important;
    outline: 0;
}

.buyer-product-top-ad__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-block-start: 10px;
}

.buyer-product-top-ad__level {
    margin: 0;
}

.buyer-product-top-ad__chip {
    display: inline-flex;
    align-items: center;
    min-block-size: 24px;
    padding: 2px 10px;
    color: #475467;
    background: #f2f4f7;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.buyer-product-top-ad__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.buyer-product-top-ad__contact,
.buyer-product-top-ad__chat {
    min-block-size: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.buyer-product-top-ad__contact {
    color: #fff !important;
    background: var(--gmx-orange);
    border: 1px solid var(--gmx-orange);
}

.buyer-product-top-ad__chat {
    color: var(--gmx-navy-2) !important;
    background: #fff;
    border: 1px solid var(--gmx-navy-2);
}

.buyer-product-top-ad__chat::before {
    content: '';
    inline-size: 14px;
    block-size: 14px;
    flex: 0 0 auto;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M3.2 2.4h9.6c.88 0 1.6.72 1.6 1.6v6c0 .88-.72 1.6-1.6 1.6H8.1L4.4 13.7a.6.6 0 0 1-.96-.48V11.6H3.2c-.88 0-1.6-.72-1.6-1.6v-6c0-.88.72-1.6 1.6-1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M3.2 2.4h9.6c.88 0 1.6.72 1.6 1.6v6c0 .88-.72 1.6-1.6 1.6H8.1L4.4 13.7a.6.6 0 0 1-.96-.48V11.6H3.2c-.88 0-1.6-.72-1.6-1.6v-6c0-.88.72-1.6 1.6-1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.buyer-product-top-ad__contact:hover,
.buyer-product-top-ad__contact:focus-visible,
.buyer-product-top-ad__chat:hover,
.buyer-product-top-ad__chat:focus-visible {
    box-shadow: 0 6px 14px rgba(11, 26, 48, .14);
    outline: 0;
    translate: 0 -1px;
}

.buyer-product-top-ad__products {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.buyer-product-top-ad__product {
    min-inline-size: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: inherit;
}

.buyer-product-top-ad__product-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f8fafc;
    border: 1px solid var(--gmx-line);
    border-radius: 6px;
}

.buyer-product-top-ad__product-media img {
    display: block;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
}

.buyer-product-top-ad__product strong {
    overflow: hidden;
    color: var(--gmx-body);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.buyer-product-top-ad__product b {
    color: var(--gmx-orange);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.buyer-product-top-ad__product:hover strong,
.buyer-product-top-ad__product:focus-visible strong {
    color: var(--gmx-orange);
    outline: 0;
}

.buyer-product-card {
    min-inline-size: 0;
    min-block-size: 224px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--gmx-line);
    border-radius: 8px;
    transition: border-color .18s ease, box-shadow .18s ease, translate .18s ease;
}

.buyer-product-card:hover,
.buyer-product-card:focus-within {
    border-color: #d5dce5;
    box-shadow: 0 10px 26px rgba(11, 26, 48, .08);
    translate: 0 -1px;
}

.buyer-product-card__media {
    inline-size: 220px;
    block-size: 190px;
    display: block;
    overflow: hidden;
    background: #f4f6f8;
    border-radius: 6px;
}

.buyer-product-card__media img {
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    transition: scale .24s ease;
}

.buyer-product-card:hover .buyer-product-card__media img {
    scale: 1.025;
}

.buyer-product-card__body {
    min-inline-size: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
}

.buyer-product-card__main {
    min-inline-size: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding-block: 2px;
}

.buyer-product-card__title {
    max-inline-size: 100%;
    display: -webkit-box;
    overflow: hidden;
    color: var(--gmx-ink) !important;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.buyer-product-card__title:hover,
.buyer-product-card__title:focus-visible {
    color: var(--gmx-orange) !important;
    outline: 0;
}

.buyer-product-card__number {
    margin-block-start: 6px;
    color: var(--gmx-muted);
    font-size: 12px;
}

.buyer-product-card__price {
    margin-block-start: 14px;
    color: var(--gmx-orange);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.buyer-product-card__supplier {
    max-inline-size: 100%;
    margin: auto 0 0;
    overflow: hidden;
    color: var(--gmx-body);
    font-size: 14px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.buyer-product-card__actions {
    inline-size: 148px;
    display: flex;
    flex: 0 0 148px;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}

.buyer-product-card__actions a,
.buyer-product-card__actions button {
    min-block-size: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.buyer-product-card__details {
    color: var(--gmx-navy-2) !important;
    background: #fff;
    border: 1px solid var(--gmx-navy-2);
}

.buyer-product-card__contact {
    color: #fff !important;
    background: var(--gmx-navy-2);
    border: 1px solid var(--gmx-navy-2);
}

.buyer-product-card__details:hover,
.buyer-product-card__details:focus-visible,
.buyer-product-card__contact:hover,
.buyer-product-card__contact:focus-visible {
    box-shadow: 0 6px 14px rgba(11, 26, 48, .14);
    outline: 0;
    translate: 0 -1px;
}

.buyer-product-card__contact:disabled {
    cursor: wait;
    opacity: .66;
    translate: 0;
}

.buyer-product-list__pagination {
    display: flex;
    justify-content: center;
    padding-block-start: 24px;
}

.buyer-product-list .dropdown_loading {
    block-size: 44px;
    display: grid;
    place-items: center;
    margin-block-start: 12px;
}

.buyer-product-list .dropdown_loading.is-loading::before {
    content: '';
    inline-size: 22px;
    block-size: 22px;
    border: 2px solid #dce2e9;
    border-block-start-color: var(--gmx-navy-2);
    border-radius: 50%;
    animation: buyer-product-list-spin .7s linear infinite;
}

@keyframes buyer-product-list-spin {
    to { rotate: 360deg; }
}

.buyer-product-list__related {
    margin-block-start: 28px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--gmx-line);
    border-radius: 8px;
}

.buyer-product-list__related h2 {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 800;
}

.buyer-product-list__related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.buyer-product-list__related-card {
    min-inline-size: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.buyer-product-list__related-card img {
    inline-size: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #f4f6f8;
    border-radius: 6px;
}

.buyer-product-list__related-card > span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.buyer-product-list__related-card > small {
    overflow: hidden;
    color: var(--gmx-muted);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.buyer-product-list__related-card:hover > span,
.buyer-product-list__related-card:focus-visible > span {
    color: var(--gmx-orange);
}

.buyer-product-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.buyer-product-pagination > li > a,
.buyer-product-pagination > li > span {
    min-inline-size: 34px;
    block-size: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 10px;
    color: var(--gmx-body);
    background: #fff;
    border: 1px solid var(--gmx-line);
    border-radius: 5px;
    font-size: 12px;
}

.buyer-product-pagination > li.is-active > a,
.buyer-product-pagination > li.is-active > span {
    color: #fff;
    background: var(--gmx-navy-2);
    border-color: var(--gmx-navy-2);
}

.buyer-product-pagination > li:not(.is-disabled) > a:hover,
.buyer-product-pagination > li:not(.is-disabled) > a:focus-visible {
    color: var(--gmx-navy-2);
    border-color: var(--gmx-navy-2);
    outline: 0;
}

.buyer-product-pagination > li.is-disabled > span {
    color: #aab2bd;
    cursor: default;
}

.buyer-product-list__empty {
    min-block-size: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--gmx-line);
    border-radius: 8px;
}

.buyer-product-list__empty h2 {
    margin: 0;
    font-size: 20px;
}

.buyer-product-list__empty p {
    margin: 10px 0 20px;
    color: var(--gmx-muted);
}

.buyer-product-list__empty a {
    min-block-size: 40px;
    display: inline-flex;
    align-items: center;
    padding-inline: 18px;
    color: #fff;
    background: var(--gmx-navy-2);
    border-radius: 5px;
    font-weight: 700;
}

.buyer-product-list__description {
    margin-block-start: 32px;
    padding: 24px;
    color: var(--gmx-body);
    background: #fff;
    border: 1px solid var(--gmx-line);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.7;
}

.buyer-product-list__drawer-backdrop {
    display: none;
}

@media (max-width: 1100px) {
    .buyer-product-list__layout {
        grid-template-columns: 230px minmax(0, 1fr);
        gap: 18px;
    }

    .buyer-product-card {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 16px;
    }

    .buyer-product-card__media {
        inline-size: 190px;
        block-size: 174px;
    }

    .buyer-product-card__actions {
        inline-size: 128px;
        flex-basis: 128px;
    }
}

@media (max-width: 900px) {
    .buyer-product-list__heading {
        align-items: flex-start;
    }

    .buyer-product-list__heading > div {
        display: block;
    }

    .buyer-product-list__heading p {
        margin-block-start: 5px;
    }

    .buyer-product-list__layout {
        grid-template-columns: 1fr;
    }

    .buyer-product-list__filters {
        position: fixed;
        z-index: 100010;
        inset-block: 0;
        inset-inline-start: 0;
        inline-size: min(360px, 88vw);
        overflow-y: auto;
        border: 0;
        border-radius: 0;
        box-shadow: 18px 0 40px rgba(11, 26, 48, .2);
        translate: -105% 0;
        transition: translate .22s ease;
    }

    [dir="rtl"] .buyer-product-list__filters {
        translate: 105% 0;
    }

    .buyer-product-list__filters.is-open {
        translate: 0;
    }

    .buyer-product-list__filters-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-block-end: 14px;
        margin-block-end: 16px;
        border-block-end: 1px solid var(--gmx-line);
    }

    .buyer-product-list__filters-heading strong {
        font-size: 17px;
    }

    .buyer-product-list__filters-heading button {
        inline-size: 38px;
        block-size: 38px;
        padding: 0;
        color: var(--gmx-body);
        background: #f3f6f9;
        border: 0;
        border-radius: 50%;
        cursor: pointer;
        font-size: 24px;
        line-height: 1;
    }

    .buyer-product-list__drawer-backdrop {
        position: fixed;
        z-index: 100005;
        inset: 0;
        display: block;
        visibility: hidden;
        padding: 0;
        background: rgba(11, 26, 48, .44);
        border: 0;
        opacity: 0;
        transition: opacity .22s ease, visibility .22s ease;
    }

    .has-buyer-product-filters .buyer-product-list__drawer-backdrop {
        visibility: visible;
        opacity: 1;
    }

    .has-buyer-product-filters {
        overflow: hidden;
    }

    /*.buyer-product-list__toolbar {
        justify-content: space-between;
        gap: 12px;
    }*/
    .buyer-product-list__mobile-toolbar {
        min-block-size: 52px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-block-end: 16px;
        padding: 8px 14px;
        background: #fff;
        border: 1px solid var(--gmx-line);
        border-radius: 8px;
        gap: 12px;
    }

    .buyer-product-list__mobile-controls {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .buyer-product-list__mobile-controls > button {
        min-block-size: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 12px;
        color: var(--gmx-navy-2);
        background: #fff;
        border: 1px solid var(--gmx-line);
        border-radius: 5px;
        cursor: pointer;
        font-size: 12px;
        font-weight: 700;
    }
}

@media (max-width: 720px) {
    .buyer-product-list__shell {
        padding-block: 20px 44px;
    }

    .buyer-product-list__heading {
        display: block;
        margin-block-end: 18px;
    }

    .buyer-product-list__heading h1 {
        font-size: 22px;
    }

    .buyer-product-list__rfq {
        inline-size: 100%;
        margin-block-start: 14px;
    }

    .buyer-product-list__toolbar {
        align-items: stretch;
        flex-direction: column;
        padding: 10px;
    }

    .buyer-product-list__mobile-controls {
        justify-content: flex-start;
    }

    .buyer-product-list__sorts {
        overflow-x: auto;
        padding-block-start: 4px;
        scrollbar-width: none;
    }

    .buyer-product-list__sorts::-webkit-scrollbar {
        display: none;
    }

    .buyer-product-list__sorts > span {
        display: none;
    }

    .buyer-product-list__sorts a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .buyer-product-list__related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .buyer-product-list__breadcrumbs {
        margin-block-end: 8px;
    }

    .buyer-product-list__heading h1 {
        font-size: 20px;
    }

    .buyer-product-card__actions a,
    .buyer-product-card__actions button {
        min-block-size: 42px;
        padding-inline: 8px;
        font-size: 12px;
    }

    .buyer-product-pagination > li > a,
    .buyer-product-pagination > li > span {
        min-inline-size: 32px;
        block-size: 32px;
        padding-inline: 8px;
    }

    .buyer-product-list__related {
        padding: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .buyer-product-list__filters,
    .buyer-product-list__drawer-backdrop,
    .buyer-product-card,
    .buyer-product-card__media img,
    .buyer-product-categories__toggle img {
        transition: none;
    }

    .buyer-product-list .dropdown_loading.is-loading::before {
        animation: none;
    }
}

/* 4140: 2026-08-22 product-list design alignment. */
.buyer-product-list-hero {
    --buyer-list-hero-fade: #163560;
    block-size: 280px;
    color: #fff;
    background: #163560;
}

.buyer-product-list-hero__content {
    position: relative;
    z-index: 2;
    block-size: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.buyer-product-list-hero__content h1 {
    max-inline-size: 720px;
    margin: 0;
    font-size: clamp(34px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.14;
}

.buyer-product-list-hero__content p {
    margin: 18px 0 14px;
    color: #c2d7ff;
    font-size: 14px;
}

.buyer-product-list-hero__content a {
    color: var(--gmx-orange) !important;
    font-size: 14px;
    font-weight: 700;
}

.buyer-product-card__commercial {
    max-inline-size: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 12px;
    margin-block-start: 3px;
}

.buyer-product-card__commercial .buyer-product-card__price {
    margin: 0;
}

.buyer-product-card__commercial > span {
    color: var(--gmx-muted);
    font-size: 13px;
}

.buyer-product-card__details-footer {
    inline-size: 100%;
    display: flex;
    flex-direction: column;
    margin-block-start: 10px;
}

.buyer-product-card__params-slot {
    flex: 0 0 56px;
    inline-size: 100%;
    block-size: 56px;
    overflow: hidden;
}

.buyer-product-card__params {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 6px 8px;
    max-inline-size: 100%;
    block-size: 100%;
    overflow: hidden;
}

.buyer-product-card__param {
    max-inline-size: 100%;
    padding: 4px 10px;
    overflow: hidden;
    color: var(--gmx-body);
    background: #f3f6f9;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.buyer-product-card__supplier-divider {
    flex: 0 0 auto;
    inline-size: 100%;
    block-size: 1px;
    background: var(--gmx-line);
    margin: 12px 0;
}

.buyer-product-card__supplier-block {
    max-inline-size: 100%;
}

.buyer-product-card__supplier-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-inline-size: 0;
    max-inline-size: 100%;
}

.buyer-product-card__supplier-row .buyer-product-card__supplier {
    min-inline-size: 0;
    flex: 0 1 auto;
    display: block;
    margin: 0;
    overflow: hidden;
    color: var(--gmx-navy-2) !important;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: unset;
}

.buyer-product-card__supplier-facts {
    margin: 6px 0 0;
    overflow: hidden;
    color: var(--gmx-muted);
    font-size: 12px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.buyer-product-card__level {
    flex: 0 0 auto;
    margin: 0;
}

.buyer-product-card__actions {
    inline-size: 166px;
    flex-basis: 166px;
    justify-content: center;
    padding-inline-start: 20px;
    border-inline-start: 1px solid var(--gmx-line);
}

.buyer-product-card__inquiry {
    color: var(--gmx-navy) !important;
    background: var(--gmx-orange);
    border: 1px solid var(--gmx-orange);
}

.buyer-product-card__contact {
    color: var(--gmx-navy-2) !important;
    background: #fff;
    border-color: var(--gmx-navy-2);
}

.buyer-product-card__inquiry:hover,
.buyer-product-card__inquiry:focus-visible,
.buyer-product-card__contact:hover,
.buyer-product-card__contact:focus-visible {
    box-shadow: 0 6px 14px rgba(11, 26, 48, .14);
    outline: 0;
    translate: 0 -1px;
}

@media (max-width: 900px) {
    .buyer-product-card__actions {
        inline-size: 148px;
        flex-basis: 148px;
        padding-inline-start: 14px;
    }
}

@media (max-width: 767px) {
    .buyer-product-list-hero {
        height: 188px;
        block-size: 188px;
        display: flex;
        align-items: flex-start;
    }

    .buyer-product-list-hero .buyer-shell {
        padding: 16px 16px 0;
        justify-content: flex-start;
    }

    .buyer-product-list-hero__content h1 {
        margin-bottom: 7px;
        font-size: 28px;
        line-height: 1.25;
        text-shadow: 0 1px 12px rgba(11, 26, 48, .55);
    }

    .buyer-product-list-hero__content p {
        margin: 0;
        font-size: 13px;
        text-shadow: 0 1px 12px rgba(11, 26, 48, .45);
    }

    .buyer-product-list-hero__content a {
        margin-block-start: 8px;
        font-size: 13px;
    }
}

@media (max-width: 720px) {
    .buyer-product-list__heading {
        margin-block-end: 12px;
    }

    .buyer-product-list__heading > div {
        display: flex;
        flex-wrap: wrap;
    }

    .buyer-product-list__rfq {
        display: none;
    }

    .buyer-product-card {
        min-block-size: 0;
        grid-template-columns: 112px minmax(0, 1fr);
        align-items: start;
        gap: 8px 12px;
        padding: 12px;
    }

    .buyer-product-card__media {
        grid-column: 1;
        grid-row: 1 / span 3;
        align-self: start;
        inline-size: 112px;
        block-size: 112px;
        border-radius: 8px;
    }

    .buyer-product-card__body,
    .buyer-product-card__main,
    .buyer-product-card__details-footer {
        display: contents;
    }

    .buyer-product-card__main {
        min-inline-size: 0;
        padding: 0;
    }

    .buyer-product-card__title {
        grid-column: 2;
        min-inline-size: 0;
        font-size: 16px;
        line-height: 1.35;
        -webkit-line-clamp: 2;
    }

    .buyer-product-card__number {
        display: none;
    }

    .buyer-product-card__commercial {
        grid-column: 2;
        min-inline-size: 0;
        flex-wrap: wrap;
        gap: 2px 0;
        overflow: hidden;
        color: var(--gmx-orange);
        font-size: 14px;
        font-weight: 800;
        line-height: 1.3;
    }

    .buyer-product-card__commercial .buyer-product-card__price {
        flex: 1 1 100%;
        min-inline-size: 0;
        overflow: hidden;
        font-size: inherit;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .buyer-product-card__commercial > span {
        flex: 1 1 100%;
        color: var(--gmx-body);
        font-size: 12px;
        font-weight: 600;
        line-height: 1.35;
    }

    .buyer-product-card__commercial > span::before {
        content: none;
    }

    .buyer-product-card__details-footer {
        margin: 0;
    }

    .buyer-product-card__params-slot {
        grid-column: 2;
        min-inline-size: 0;
        flex: 0 0 auto;
        block-size: auto;
        overflow: hidden;
    }

    .buyer-product-card__params {
        display: block;
        max-block-size: none;
        overflow: hidden;
        color: var(--gmx-muted);
        font-size: 12px;
        line-height: 1.4;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .buyer-product-card__param {
        padding: 0;
        background: none;
        border-radius: 0;
        color: inherit;
        font-size: inherit;
    }

    .buyer-product-card__param + .buyer-product-card__param::before {
        content: ' | ';
    }

    .buyer-product-card__supplier-divider {
        display: none;
    }

    .buyer-product-card__supplier-block {
        grid-column: 1 / -1;
        min-inline-size: 0;
        margin-block-start: 4px;
        padding: 0;
    }

    .buyer-product-card__supplier-row {
        justify-content: space-between;
        gap: 8px;
        margin: 0;
    }

    .buyer-product-card__supplier-row .buyer-product-card__supplier {
        min-inline-size: 0;
        flex: 1 1 auto;
        color: var(--gmx-body) !important;
        font-size: 13px;
        font-weight: 500;
    }

    .buyer-product-card__supplier-facts {
        display: block;
        margin-block-start: 4px;
        font-size: 12px;
    }

    .buyer-product-card__level {
        flex: 0 0 auto;
        padding: 3px 6px;
    }

    .buyer-product-card__level img {
        inline-size: 10px;
        block-size: 10px;
    }

    .buyer-product-card__actions {
        grid-column: 1 / -1;
        inline-size: auto;
        display: grid;
        flex-basis: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-block-start: 8px;
        padding: 0;
        border: 0;
    }

    .buyer-product-card__inquiry,
    .buyer-product-card__contact {
        inline-size: 100%;
    }

    .buyer-product-card__contact {
        gap: 6px;
    }

    .buyer-product-card__contact::before {
        content: '';
        inline-size: 14px;
        block-size: 14px;
        flex: 0 0 auto;
        background: currentColor;
        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M3.2 2.4h9.6c.88 0 1.6.72 1.6 1.6v6c0 .88-.72 1.6-1.6 1.6H8.1L4.4 13.7a.6.6 0 0 1-.96-.48V11.6H3.2c-.88 0-1.6-.72-1.6-1.6v-6c0-.88.72-1.6 1.6-1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
        -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M3.2 2.4h9.6c.88 0 1.6.72 1.6 1.6v6c0 .88-.72 1.6-1.6 1.6H8.1L4.4 13.7a.6.6 0 0 1-.96-.48V11.6H3.2c-.88 0-1.6-.72-1.6-1.6v-6c0-.88.72-1.6 1.6-1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
    }
}

@media (max-width: 480px) {
    .buyer-product-list__shell {
        inline-size: min(calc(100% - 24px), 1280px);
    }

    .buyer-product-card {
        display: grid;
    }

    .buyer-product-card__media {
        inline-size: 112px;
        block-size: 112px;
        margin: 0;
    }
}

@media (max-width: 1100px) {
    .buyer-product-top-ad {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 14px;
    }
}

@media (max-width: 900px) {
    .buyer-product-top-ad {
        grid-template-columns: 1fr;
    }

    .buyer-product-top-ad__media {
        max-inline-size: 280px;
    }

    .buyer-product-top-ad__header {
        flex-wrap: wrap;
    }

    .buyer-product-top-ad__products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .buyer-product-top-ad {
        gap: 12px;
        padding: 12px;
    }

    .buyer-product-top-ad__media {
        max-inline-size: none;
    }

    .buyer-product-top-ad__name {
        white-space: normal;
    }

    .buyer-product-top-ad__actions {
        inline-size: 100%;
    }

    .buyer-product-top-ad__contact,
    .buyer-product-top-ad__chat {
        flex: 1;
    }

    .buyer-product-top-ad__products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
