:root {
    --catalog-orange: #f58220;
    --catalog-orange-dark: #e66d08;
    --catalog-orange-soft: #fff2e4;
    --catalog-ink: #333438;
    --catalog-muted: #777b82;
    --catalog-border: #e6e7e9;
    --catalog-page: #f5f5f6;
    --catalog-card: #fff;
    --catalog-success: #269b5c;
    --catalog-blue: #3a7be0;
    --catalog-radius: 15px;
    --catalog-shadow: 0 1px 3px rgba(23, 28, 34, .08);
}

body.is-category-page {
    color: var(--catalog-ink);
    background: var(--catalog-page);
}

/* DNS-inspired catalog directory: navigation levels stay separate from leaf
   product listings while the Forte palette and identity remain intact. */
.forte-directory {
    min-height: 70vh;
    padding: 18px 0 24px;
    color: var(--catalog-ink);
    background: var(--catalog-page);
    font-family: Roboto, "PT Sans", Arial, sans-serif;
}

.forte-directory,
.forte-directory * {
    box-sizing: border-box;
}

.forte-directory__container {
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
}

.forte-directory__breadcrumb {
    display: flex;
    align-items: center;
    min-height: 30px;
    margin: 0 0 12px;
    overflow-x: auto;
    color: #8b8f94;
    font-size: 12px;
    white-space: nowrap;
    scrollbar-width: none;
}

.forte-directory__breadcrumb::-webkit-scrollbar {
    display: none;
}

.forte-directory__breadcrumb > a,
.forte-directory__breadcrumb .breadcrumb-item {
    flex: 0 0 auto;
    padding: 0;
    color: #51555a !important;
    background: transparent;
}

.forte-directory__breadcrumb > span::before,
.forte-directory__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 8px;
    color: #aeb1b5;
    content: "›";
}

.forte-directory__breadcrumb .breadcrumb-item:last-child,
.forte-directory__breadcrumb > span {
    color: #93979c !important;
    pointer-events: none;
}

.forte-directory__heading {
    margin: 0 0 18px;
}

.forte-directory__heading h1 {
    margin: 0;
    color: #2d3034;
    font-size: clamp(29px, 2.45vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.forte-directory__heading p {
    margin: 7px 0 0;
    color: #7e8288;
    font-size: 13px;
}

.forte-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.forte-directory-card {
    position: relative;
    min-width: 0;
    min-height: 236px;
    overflow: hidden;
    border: 1px solid #dfe1e4;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(24, 28, 34, .025);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.forte-directory-card:hover,
.forte-directory-card:focus-within {
    border-color: rgba(245, 130, 32, .46);
    box-shadow: 0 8px 24px rgba(25, 29, 34, .08);
    transform: translateY(-2px);
}

.forte-directory-card__main {
    display: flex;
    min-height: 234px;
    padding: 20px 18px 24px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #3c3f43;
    text-align: center;
}

.forte-directory-card__main:hover,
.forte-directory-card__main:focus {
    color: var(--catalog-orange-dark);
    text-decoration: none;
}

.forte-directory-card__visual {
    display: flex;
    width: 100%;
    height: 158px;
    margin-bottom: 13px;
    align-items: center;
    justify-content: center;
}

.forte-directory-card__visual img {
    width: 88%;
    height: 88%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .22s ease;
}

.forte-directory-card:hover .forte-directory-card__visual img {
    transform: scale(1.035);
}

.forte-directory-card__main strong {
    display: -webkit-box;
    min-height: 21px;
    overflow: hidden;
    color: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.forte-directory-card__quick {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    padding: 16px;
    flex-direction: column;
    overflow: auto;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
}

.forte-directory-card.has-children:hover .forte-directory-card__quick,
.forte-directory-card.has-children:focus-within .forte-directory-card__quick {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.forte-directory-card__quick-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 9px;
    color: #292c30;
    font-size: 14px;
    line-height: 1.3;
}

.forte-directory-card__quick-title i {
    margin-top: 3px;
    color: var(--catalog-orange);
    font-size: 11px;
}

.forte-directory-card__quick-title:hover {
    color: var(--catalog-orange-dark);
    text-decoration: none;
}

.forte-directory-card__quick > div {
    display: flex;
    flex-direction: column;
}

.forte-directory-card__quick > div a {
    display: flex;
    min-height: 29px;
    padding: 5px 0;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid #eff0f1;
    color: #5d6166;
    font-size: 11px;
    line-height: 1.3;
}

.forte-directory-card__quick > div a i {
    flex: 0 0 auto;
    color: #a4a7ab;
    font-size: 8px;
}

.forte-directory-card__quick > div a:hover {
    color: var(--catalog-orange-dark);
    text-decoration: none;
}

.forte-directory-card__quick > small {
    margin-top: auto;
    padding-top: 7px;
    color: #a0a3a7;
    font-size: 9px;
}

.forte-popular-categories {
    margin-top: 38px;
}

.forte-popular-categories__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 14px;
}

.forte-popular-categories__heading span {
    display: block;
    margin-bottom: 3px;
    color: var(--catalog-orange-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.forte-popular-categories__heading h2 {
    margin: 0;
    color: #303338;
    font-size: 24px;
    font-weight: 700;
}

.forte-popular-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.forte-popular-categories__grid > a {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 20px;
    min-height: 88px;
    padding: 13px;
    align-items: center;
    gap: 11px;
    border: 1px solid #e0e2e4;
    border-radius: 10px;
    color: #45484d;
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.forte-popular-categories__grid > a:hover {
    border-color: rgba(245, 130, 32, .46);
    box-shadow: 0 7px 18px rgba(25, 29, 34, .07);
    color: var(--catalog-orange-dark);
    text-decoration: none;
    transform: translateY(-2px);
}

.forte-popular-categories__grid img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.forte-popular-categories__grid span,
.forte-popular-categories__grid strong,
.forte-popular-categories__grid small {
    display: block;
    min-width: 0;
}

.forte-popular-categories__grid strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.forte-popular-categories__grid small {
    margin-top: 4px;
    color: #999da2;
    font-size: 9px;
}

.forte-popular-categories__grid > a > i {
    color: #b0b3b7;
    font-size: 9px;
}

@media (max-width: 1100px) {
    .forte-directory__container { padding: 0 28px; }
    .forte-directory-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .forte-popular-categories__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .forte-directory { padding-top: 12px; }
    .forte-directory__container { padding: 0 12px; }
    .forte-directory__breadcrumb { margin-bottom: 8px; }
    .forte-directory__heading { margin-bottom: 14px; }
    .forte-directory__heading h1 { font-size: 25px; }
    .forte-directory__heading p { font-size: 11px; line-height: 1.45; }
    .forte-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
    .forte-directory-card { min-height: 188px; border-radius: 9px; }
    .forte-directory-card__main { min-height: 186px; padding: 13px 10px 16px; }
    .forte-directory-card__visual { height: 124px; margin-bottom: 8px; }
    .forte-directory-card__main strong { font-size: 12px; }
    .forte-directory-card__quick { display: none; }
    .forte-directory-card:hover,
    .forte-directory-card:focus-within { transform: none; }
    .forte-popular-categories { margin-top: 28px; }
    .forte-popular-categories__heading h2 { font-size: 21px; }
    .forte-popular-categories__grid { display: flex; gap: 9px; overflow-x: auto; scroll-snap-type: x proximity; }
    .forte-popular-categories__grid > a { flex: 0 0 250px; scroll-snap-align: start; }
}

@media (max-width: 380px) {
    .forte-directory-card { min-height: 172px; }
    .forte-directory-card__main { min-height: 170px; }
    .forte-directory-card__visual { height: 110px; }
}

.is-category-page .container-navbar .bg-dark {
    margin-bottom: 0 !important;
}

.forte-catalog,
.forte-catalog button,
.forte-catalog input,
.forte-catalog select {
    font-family: Roboto, "PT Sans", Arial, sans-serif;
}

.forte-catalog {
    min-height: 70vh;
    padding: 20px 0 8px;
    background: var(--catalog-page);
}

.forte-catalog * {
    box-sizing: border-box;
}

.forte-catalog button,
.forte-catalog select,
.forte-catalog input {
    outline: none;
}

.forte-catalog button:focus-visible,
.forte-catalog a:focus-visible,
.forte-catalog select:focus-visible,
.forte-catalog summary:focus-visible {
    outline: 3px solid rgba(245, 130, 32, .28);
    outline-offset: 2px;
}

.forte-catalog__container {
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
}

.forte-catalog__breadcrumb {
    display: flex;
    align-items: center;
    min-height: 32px;
    margin: 0 0 12px;
    overflow-x: auto;
    color: #858990;
    font-size: 12px;
    white-space: nowrap;
    scrollbar-width: none;
}

.forte-catalog__breadcrumb::-webkit-scrollbar {
    display: none;
}

.forte-catalog__breadcrumb .breadcrumb-item {
    flex: 0 0 auto;
    padding: 0;
    color: #5d6269 !important;
    background: transparent;
}

.forte-catalog__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding: 0 8px;
    color: #aeb1b5;
}

.forte-catalog__breadcrumb .breadcrumb-item:last-child {
    color: #999da2 !important;
    pointer-events: none;
}

.forte-catalog__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.forte-catalog__eyebrow {
    margin: 0 0 4px;
    color: var(--catalog-orange-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.forte-catalog__heading h1 {
    margin: 0;
    color: var(--catalog-ink);
    font-size: clamp(28px, 2.5vw, 38px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.forte-catalog__heading h1 small {
    font-size: inherit;
    font-weight: inherit;
}

.forte-catalog__mobile-filter {
    display: none;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 15px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(180deg, #fa922f, var(--catalog-orange));
    font-weight: 700;
}

.forte-catalog__mobile-filter b {
    display: grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    color: var(--catalog-orange-dark);
    background: #fff;
    font-size: 11px;
}

.forte-subcategory-rail {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 4px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
}

.forte-subcategory-rail a {
    display: flex;
    flex: 0 0 180px;
    align-items: center;
    gap: 10px;
    min-height: 68px;
    padding: 10px;
    border: 1px solid var(--catalog-border);
    border-radius: 13px;
    color: var(--catalog-ink);
    background: #fff;
    box-shadow: var(--catalog-shadow);
    scroll-snap-align: start;
}

.forte-subcategory-rail a:hover {
    color: var(--catalog-orange-dark);
    border-color: rgba(245, 130, 32, .5);
    text-decoration: none;
}

.forte-subcategory-rail img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.forte-catalog__layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
}

.forte-filter {
    position: sticky;
    z-index: 20;
    top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.forte-filter__mobile-head {
    display: none;
}

.forte-filter__search {
    position: relative;
    display: flex;
    align-items: center;
    height: 44px;
    margin: 0;
    padding: 0 42px 0 15px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--catalog-shadow);
}

.forte-filter__search:focus-within {
    border-color: rgba(245, 130, 32, .7);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, .11);
}

.forte-filter__search > i {
    margin-right: 10px;
    color: #a0a4aa;
    font-size: 14px;
}

.forte-filter__search input {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    color: var(--catalog-ink);
    background: transparent;
    font-size: 13px;
}

.forte-filter__search input:focus,
.forte-filter__search input:focus-visible {
    outline: 0 !important;
    box-shadow: none !important;
}

.forte-filter__search input::placeholder {
    color: #a5a8ad;
}

.forte-filter__search button {
    position: absolute;
    right: 8px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 8px;
    color: #999da2;
    background: #f2f3f4;
}

.forte-consultant {
    position: relative;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    min-height: 126px;
    padding: 16px;
    overflow: hidden;
    border-radius: var(--catalog-radius);
    background: linear-gradient(135deg, #fff 0%, #f0fff1 100%);
    box-shadow: var(--catalog-shadow);
}

.forte-consultant::after {
    position: absolute;
    right: -24px;
    bottom: -38px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(63, 199, 108, .09);
    content: "";
}

.forte-consultant__person {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #2f9652;
    background: #e2f8e8;
}

.forte-consultant span,
.forte-consultant strong {
    display: block;
}

.forte-consultant span {
    margin: 1px 0 3px;
    color: #7d8288;
    font-size: 10px;
}

.forte-consultant strong {
    color: #35383b;
    font-size: 14px;
    line-height: 1.25;
}

.forte-consultant > button {
    z-index: 1;
    grid-column: 2;
    justify-self: end;
    min-height: 34px;
    padding: 0 15px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(180deg, #fb973b, var(--catalog-orange));
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.forte-filter__form {
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow: hidden;
    border-radius: var(--catalog-radius);
    background: #fff;
    box-shadow: var(--catalog-shadow);
}

.forte-filter-group {
    border-bottom: 1px solid #ededee;
    background: #fff;
}

.forte-filter-group[hidden],
.forte-filter-group.is-search-hidden {
    display: none !important;
}

.forte-filter-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 0 15px;
    color: #3f4246;
    font-size: 14px;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.forte-filter-group summary::-webkit-details-marker {
    display: none;
}

.forte-filter-group summary i {
    color: #a1a4a9;
    font-size: 11px;
    transition: transform .2s ease;
}

.forte-filter-group[open] summary i {
    transform: rotate(180deg);
}

.forte-filter-group__body {
    padding: 0 15px 14px;
}

.forte-filter-group__title {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.forte-filter-group__title b {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    color: #fff;
    background: var(--catalog-orange);
    font-size: 10px;
    line-height: 1;
}

.forte-filter-group__hint {
    margin: 0 0 7px;
    color: #92959a;
    font-size: 10px;
    line-height: 1.4;
}

.forte-filter-group__divider {
    margin: 8px 0 4px;
    padding-top: 10px;
    border-top: 1px solid #ececef;
    color: #777b80;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.forte-filter-group__body--brands {
    max-height: 420px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: #c9cbce transparent;
    scrollbar-width: thin;
}

.forte-filter-group__body--brands::-webkit-scrollbar {
    width: 6px;
}

.forte-filter-group__body--brands::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: #c9cbce;
}

.forte-filter__store {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 41px;
    margin: 0 0 8px;
    padding: 0 12px;
    border: 1px solid #dedfe1;
    border-radius: 11px;
    color: #4e5257;
    background: #fff;
    font-size: 12px;
    text-align: left;
    cursor: pointer;
}

.forte-filter__store:hover {
    border-color: rgba(245, 130, 32, .55);
}

.forte-check {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
    min-height: 34px;
    margin: 0;
    padding: 6px 0;
    color: #45484d;
    font-size: 12px;
    line-height: 1.35;
    cursor: pointer;
}

.forte-check.is-search-hidden {
    display: none;
}

.forte-check.is-disabled {
    color: #9fa2a7;
    cursor: not-allowed;
    opacity: .58;
}

.forte-check.is-disabled .forte-check__brand-mark {
    filter: grayscale(1);
}

.forte-check input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.forte-check__box {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    margin-top: -1px;
    border: 1px solid #d4d6d9;
    border-radius: 5px;
    color: transparent;
    background: #fff;
    transition: .15s ease;
}

.forte-check__box i {
    font-size: 9px;
}

.forte-check input:checked + .forte-check__box {
    color: #fff;
    border-color: var(--catalog-orange);
    background: var(--catalog-orange);
}

.forte-check input:focus-visible + .forte-check__box {
    box-shadow: 0 0 0 3px rgba(245, 130, 32, .18);
}

.forte-check__label {
    min-width: 0;
    overflow-wrap: anywhere;
}

.forte-check small {
    color: #a1a4a8;
    font-size: 11px;
}

.forte-check--brand {
    grid-template-columns: 20px 28px minmax(0, 1fr) auto;
    align-items: center;
}

.forte-check--brand .forte-check__box {
    margin-top: 0;
}

.forte-check__brand-mark {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    overflow: hidden;
    border: 1px solid #e5e6e8;
    border-radius: 8px;
    color: #73777d;
    background: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.forte-check__brand-mark img {
    display: block;
    width: 22px;
    height: 18px;
    object-fit: contain;
}

.forte-price-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.forte-price-range label {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 6px;
    min-width: 0;
    height: 40px;
    margin: 0;
    padding: 0 9px;
    border: 1px solid #dddfe1;
    border-radius: 10px;
    color: #9a9da2;
    background: #fff;
    font-size: 11px;
}

.forte-price-range label:focus-within {
    border-color: var(--catalog-orange);
}

.forte-price-range input {
    width: 100%;
    min-width: 0;
    height: 36px;
    padding: 0;
    border: 0;
    color: #44474b;
    background: transparent;
    font-size: 12px;
    -moz-appearance: textfield;
}

.forte-price-range input:focus,
.forte-price-range input:focus-visible {
    outline: 0 !important;
    box-shadow: none !important;
}

.forte-price-range input::-webkit-inner-spin-button,
.forte-price-range input::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.forte-filter__all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    border: 0;
    color: #3f6f9f;
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.forte-filter__all i {
    font-size: 10px;
    transition: transform .2s ease;
}

.forte-filter__all[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.forte-filter__actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 12px;
    background: #fff;
}

.forte-filter__apply,
.forte-filter__reset {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.forte-filter__apply {
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, #fa9434, var(--catalog-orange));
}

.forte-filter__reset {
    border: 1px solid #dfe1e3;
    color: #666a70;
    background: #fff;
}

.forte-filter__apply:hover,
.forte-consultant > button:hover {
    background: linear-gradient(180deg, #f28420, var(--catalog-orange-dark));
}

.forte-catalog__main {
    min-width: 0;
}

.forte-discovery {
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: var(--catalog-radius);
    background: #fff;
    box-shadow: var(--catalog-shadow);
}

.forte-quick {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 65px;
    padding: 11px 15px;
    overflow-x: auto;
    border-bottom: 1px solid #ececee;
    scrollbar-width: thin;
}

.forte-quick__chip,
.forte-quick__more {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 20px;
    color: #42464b;
    background: #f5f5f6;
    font-size: 12px;
    cursor: pointer;
    transition: .16s ease;
}

.forte-quick__chip:hover,
.forte-quick__chip.is-active {
    color: var(--catalog-orange-dark);
    border-color: rgba(245, 130, 32, .34);
    background: var(--catalog-orange-soft);
}

.forte-quick__more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #3470aa;
    background: #fff;
    font-weight: 500;
}

.forte-quick__more i {
    font-size: 9px;
    transition: transform .2s ease;
}

.forte-quick__more[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.forte-catalog-toolbar {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 56px;
    padding: 8px 15px;
}

.forte-toolbar-select {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    color: #44474b;
    font-size: 12px;
}

.forte-toolbar-select select {
    max-width: 210px;
    height: 32px;
    padding: 0 22px 0 3px;
    border: 0;
    color: var(--catalog-orange-dark);
    background: transparent;
    font-size: 12px;
    cursor: pointer;
}

.forte-view-switch {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.forte-view-switch button {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    color: #a2a5aa;
    background: #fff;
    cursor: pointer;
}

.forte-view-switch button:hover,
.forte-view-switch button.is-active {
    color: var(--catalog-ink);
    background: #f1f2f3;
}

.forte-active-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 10px;
    padding: 10px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--catalog-shadow);
}

.forte-active-filters > div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.forte-active-filters [data-filter-remove] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 10px;
    border: 0;
    border-radius: 9px;
    color: #55595e;
    background: #f2f3f4;
    font-size: 11px;
    cursor: pointer;
}

.forte-active-filters [data-filter-remove] i {
    color: #9a9da1;
    font-size: 9px;
}

.forte-active-filters > button {
    flex: 0 0 auto;
    border: 0;
    color: var(--catalog-orange-dark);
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.forte-guides {
    position: relative;
    margin-bottom: 10px;
    padding: 10px 0;
    overflow: hidden;
    border-radius: var(--catalog-radius);
    background: #fff;
    box-shadow: var(--catalog-shadow);
}

.forte-guides__track {
    display: flex;
    gap: 10px;
    padding: 0 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.forte-guides__track::-webkit-scrollbar {
    display: none;
}

.forte-guide-card {
    position: relative;
    display: flex;
    flex: 0 0 calc((100% - 30px) / 4);
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 190px;
    min-height: 88px;
    padding: 13px 13px 13px 15px;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    color: #303338;
    text-align: left;
    scroll-snap-align: start;
    cursor: pointer;
}

.forte-guide-card span {
    z-index: 1;
    max-width: 72%;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.forte-guide-card i {
    color: rgba(42, 45, 50, .58);
    font-size: 34px;
    transition: transform .2s ease;
}

.forte-guide-card:hover i {
    transform: scale(1.08) rotate(-3deg);
}

.forte-guide-card--1 { background: #ffe1e9; }
.forte-guide-card--2 { background: #dff8fb; }
.forte-guide-card--3 { background: #e8ddff; }
.forte-guide-card--4 { background: #e8f8d9; }
.forte-guide-card--5 { background: #fff0c9; }

.forte-guides__nav {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    place-items: center;
    width: 32px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    color: #55595e;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 3px 14px rgba(0, 0, 0, .16);
    transform: translateY(-50%);
    cursor: pointer;
}

.forte-guides__nav.is-prev { left: 5px; }
.forte-guides__nav.is-next { right: 5px; }
.forte-guides__nav:disabled { opacity: 0; pointer-events: none; }

.forte-catalog-promo {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100px;
    margin-bottom: 10px;
    padding: 17px 240px 17px 24px;
    overflow: hidden;
    border-radius: var(--catalog-radius);
    background: linear-gradient(100deg, #e8e2dc 0%, #ddd1c7 56%, #cab7aa 100%);
    box-shadow: var(--catalog-shadow);
}

.forte-catalog-promo > div:first-child {
    z-index: 2;
}

.forte-catalog-promo span,
.forte-catalog-promo strong,
.forte-catalog-promo p {
    display: block;
}

.forte-catalog-promo span {
    margin-bottom: 2px;
    color: #876e5d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.forte-catalog-promo strong {
    color: #3d3835;
    font-size: 22px;
    line-height: 1.15;
}

.forte-catalog-promo p {
    margin: 4px 0 0;
    color: #6e645e;
    font-size: 11px;
}

.forte-catalog-promo > button {
    z-index: 2;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    margin-left: auto;
    padding: 0 15px;
    border: 1px solid rgba(76, 64, 57, .32);
    border-radius: 20px;
    color: #514842;
    background: rgba(255, 255, 255, .35);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.forte-catalog-promo__visual {
    position: absolute;
    top: -28px;
    right: 24px;
    display: grid;
    place-items: center;
    width: 190px;
    height: 150px;
    color: rgba(65, 59, 56, .68);
    transform: rotate(-7deg);
}

.forte-catalog-promo__visual i {
    z-index: 1;
    font-size: 106px;
}

.forte-catalog-promo__visual b {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
}

.forte-catalog-status {
    height: 0;
    overflow: hidden;
}

.forte-products {
    position: relative;
    min-height: 120px;
    transition: opacity .16s ease;
}

.forte-products.is-loading {
    opacity: .46;
    pointer-events: none;
}

.forte-products.is-loading::after {
    position: absolute;
    z-index: 5;
    top: 45px;
    left: 50%;
    width: 34px;
    height: 34px;
    border: 3px solid rgba(245, 130, 32, .18);
    border-top-color: var(--catalog-orange);
    border-radius: 50%;
    animation: forte-catalog-spin .7s linear infinite;
    content: "";
}

@keyframes forte-catalog-spin {
    to { transform: rotate(360deg); }
}

.forte-product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.forte-product-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0 0;
    color: #55595e;
    font-size: 15px;
}

.forte-product-group i {
    flex: 1;
    height: 1px;
    background: #dddfe1;
}

.forte-product-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) 210px;
    gap: 20px;
    min-height: 290px;
    padding: 22px;
    border: 1px solid transparent;
    border-radius: var(--catalog-radius);
    background: #fff;
    box-shadow: var(--catalog-shadow);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.forte-product-card:hover {
    border-color: rgba(245, 130, 32, .26);
    box-shadow: 0 8px 28px rgba(24, 28, 34, .09);
}

.forte-product-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.forte-product-card__media > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 220px;
}

.forte-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .24s ease;
}

.forte-product-card:hover .forte-product-card__media img {
    transform: scale(1.025);
}

.forte-product-card__badges {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.forte-product-card__badges span {
    padding: 4px 7px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 700;
}

.forte-product-card__badges .is-hit {
    color: #8d5500;
    background: #fff0d1;
}

.forte-product-card__badges .is-stock {
    color: #237944;
    background: #e3f7e9;
}

.forte-product-card__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.forte-product-card__brand {
    align-self: flex-start;
    margin-bottom: 3px;
    color: #9b9ea3;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
}

.forte-product-card__brand:hover {
    color: var(--catalog-orange-dark);
    text-decoration: none;
}

.forte-product-card__title {
    display: -webkit-box;
    margin-bottom: 9px;
    overflow: hidden;
    color: #16181b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.forte-product-card__title:hover {
    color: var(--catalog-orange-dark);
    text-decoration: none;
}

.forte-product-card__signals {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 13px;
    margin-bottom: 11px;
    color: #7e8287;
    font-size: 10px;
}

.forte-product-card__signals > * {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.forte-product-card__signals a {
    color: #55595e;
}

.forte-product-card__signals a:hover {
    color: var(--catalog-orange-dark);
    text-decoration: none;
}

.forte-product-card__signals .fa-star {
    color: #f5a623;
}

.forte-product-card__signals .is-reliable {
    color: #32895a;
}

.forte-product-card__specs {
    display: grid;
    gap: 5px;
    margin: 0 0 12px;
}

.forte-product-card__specs div {
    display: grid;
    grid-template-columns: minmax(105px, 42%) minmax(0, 1fr);
    gap: 10px;
    min-width: 0;
    font-size: 10px;
    line-height: 1.38;
}

.forte-product-card__specs dt,
.forte-product-card__specs dd {
    margin: 0;
    min-width: 0;
}

.forte-product-card__specs dt {
    color: #999da2;
    font-weight: 400;
}

.forte-product-card__specs dd {
    color: #4f5358;
    overflow-wrap: anywhere;
}

.forte-product-card__no-specs {
    color: #8c9095;
    font-size: 11px;
}

.forte-product-card__secondary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.forte-product-card__secondary-actions > a,
.forte-compare-control span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    padding: 0 9px;
    border: 0;
    border-radius: 9px;
    color: #65696e;
    background: #f4f5f6;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
}

.forte-product-card__secondary-actions > a:hover,
.forte-compare-control span:hover {
    color: var(--catalog-orange-dark);
    background: var(--catalog-orange-soft);
    text-decoration: none;
}

.forte-compare-control {
    margin: 0;
}

.forte-compare-control input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.forte-compare-control input:checked + span {
    color: var(--catalog-orange-dark);
    background: var(--catalog-orange-soft);
}

.forte-product-card__commerce {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-left: 5px;
}

.forte-product-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 5px 8px;
    min-height: 34px;
}

.forte-product-card__price strong {
    color: #292c30;
    font-size: 22px;
    line-height: 1.2;
    white-space: nowrap;
}

.forte-product-card__price del {
    color: #a2a5a9;
    font-size: 10px;
}

.forte-product-card__price small {
    flex-basis: 100%;
    color: #8d641f;
    font-size: 10px;
    text-align: right;
}

.forte-products.is-grid .forte-product-card__price small { text-align: left; }

.forte-product-card__buy-row {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.forte-product-card__favorite,
.forte-product-card__buy {
    min-height: 44px;
    border: 0;
    border-radius: 11px;
    cursor: pointer;
}

.forte-product-card__favorite {
    color: #94989d;
    background: #f2f3f4;
}

.forte-product-card__favorite:hover,
.forte-product-card__favorite.is-active {
    color: var(--catalog-orange);
    background: var(--catalog-orange-soft);
}

.forte-product-card__buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(180deg, #fa9638, var(--catalog-orange));
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.forte-product-card__buy:hover {
    background: linear-gradient(180deg, #ef8120, var(--catalog-orange-dark));
}

.forte-product-card__buy:disabled {
    color: #96999e;
    background: #eceeef;
    cursor: not-allowed;
}

.forte-product-card__availability {
    display: grid;
    gap: 7px;
    margin-top: auto;
    padding-top: 20px;
    color: #73777c;
    font-size: 10px;
    line-height: 1.35;
}

.forte-product-card__availability span {
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.forte-product-card__availability i {
    width: 13px;
    margin-top: 1px;
    color: #9a9da2;
    text-align: center;
}

.forte-product-card__availability .is-stock,
.forte-product-card__availability .is-stock i {
    color: var(--catalog-success);
}

.forte-product-card__availability .is-order,
.forte-product-card__availability .is-order i {
    color: #a56a18;
}

.forte-products.is-grid .forte-product-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.forte-products.is-grid .forte-product-group {
    grid-column: 1 / -1;
}

.forte-products.is-grid .forte-product-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    min-height: 520px;
    padding: 16px;
}

.forte-products.is-grid .forte-product-card__media {
    height: 190px;
}

.forte-products.is-grid .forte-product-card__media > a {
    height: 180px;
}

.forte-products.is-grid .forte-product-card__signals {
    gap: 5px 8px;
}

.forte-products.is-grid .forte-product-card__signals .is-reliable,
.forte-products.is-grid .forte-product-card__specs div:nth-child(n+4) {
    display: none;
}

.forte-products.is-grid .forte-product-card__specs div {
    display: block;
}

.forte-products.is-grid .forte-product-card__specs dt {
    display: none;
}

.forte-products.is-grid .forte-product-card__commerce {
    margin-top: auto;
    padding: 0;
}

.forte-products.is-grid .forte-product-card__price {
    justify-content: flex-start;
}

.forte-products.is-grid .forte-product-card__availability {
    min-height: 56px;
    margin-top: 8px;
    padding-top: 8px;
}

.forte-catalog-pagination {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 16px;
    border-radius: var(--catalog-radius);
    background: #fff;
    box-shadow: var(--catalog-shadow);
}

.forte-catalog-pagination p {
    margin: 0;
    color: #8c9095;
    font-size: 11px;
}

.forte-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 210px;
    min-height: 42px;
    border: 1px solid #dddfe1;
    border-radius: 11px;
    color: #4a4e53;
    background: #fff;
    font-size: 12px;
    font-weight: 700;
}

.forte-load-more:hover {
    color: var(--catalog-orange-dark);
    border-color: rgba(245, 130, 32, .48);
    text-decoration: none;
}

.forte-page-links .custom-pagination {
    box-shadow: none;
}

.forte-page-links .custom-pagination a {
    padding: 8px 15px;
    font-size: 12px;
}

.forte-catalog-empty {
    display: flex;
    min-height: 330px;
    padding: 45px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--catalog-radius);
    background: #fff;
    box-shadow: var(--catalog-shadow);
    text-align: center;
}

.forte-catalog-empty > span {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin-bottom: 15px;
    border-radius: 50%;
    color: var(--catalog-orange);
    background: var(--catalog-orange-soft);
    font-size: 26px;
}

.forte-catalog-empty h2 {
    margin: 0 0 7px;
    color: #33373b;
    font-size: 20px;
}

.forte-catalog-empty p {
    margin: 0 0 17px;
    color: #83878c;
    font-size: 12px;
}

.forte-catalog-empty button {
    min-height: 42px;
    padding: 0 17px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: var(--catalog-orange);
    font-weight: 700;
}

.forte-filter-backdrop {
    display: none;
}

.forte-catalog-modal {
    position: fixed;
    z-index: 1500;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

.forte-catalog-modal[hidden] {
    display: none;
}

.forte-catalog-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(25, 28, 32, .56);
    backdrop-filter: blur(3px);
}

.forte-catalog-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
}

.forte-catalog-modal__close {
    position: absolute;
    top: 13px;
    right: 13px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    color: #73777c;
    background: #f2f3f4;
    cursor: pointer;
}

.forte-catalog-modal__eyebrow {
    color: var(--catalog-orange-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.forte-catalog-modal h2 {
    margin: 5px 38px 8px 0;
    color: #2f3337;
    font-size: 25px;
}

.forte-catalog-modal__dialog > p {
    color: #777b80;
    font-size: 13px;
    line-height: 1.5;
}

.forte-assistant-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 18px;
}

.forte-assistant-options button {
    display: flex;
    min-height: 144px;
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #e2e3e5;
    border-radius: 15px;
    color: #383c40;
    background: #fff;
    text-align: left;
    cursor: pointer;
}

.forte-assistant-options button:hover {
    border-color: rgba(245, 130, 32, .48);
    background: var(--catalog-orange-soft);
}

.forte-assistant-options button > i {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: auto;
    border-radius: 12px;
    color: var(--catalog-orange-dark);
    background: var(--catalog-orange-soft);
}

.forte-assistant-options span,
.forte-assistant-options b,
.forte-assistant-options small {
    display: block;
}

.forte-assistant-options b {
    margin: 12px 0 3px;
    font-size: 13px;
}

.forte-assistant-options small {
    color: #85898e;
    font-size: 9px;
    line-height: 1.35;
}

.forte-catalog-modal__dialog.is-guide {
    width: min(100%, 470px);
}

.forte-catalog-modal__primary {
    min-height: 42px;
    margin-top: 12px;
    padding: 0 18px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: var(--catalog-orange);
    font-weight: 700;
}

body.is-catalog-locked {
    overflow: hidden;
}

@media (max-width: 1280px) {
    .forte-catalog__container { padding: 0 28px; }
    .forte-product-card { grid-template-columns: 180px minmax(0, 1fr) 190px; gap: 16px; padding: 18px; }
    .forte-guide-card { flex-basis: calc((100% - 20px) / 3); }
    .forte-products.is-grid .forte-product-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
    .forte-catalog { padding-top: 14px; }
    .forte-catalog__container { padding: 0 20px; }
    .forte-catalog__layout { display: block; }
    .forte-catalog__mobile-filter { display: inline-flex; }

    .forte-filter {
        position: fixed;
        z-index: 1300;
        top: 0;
        bottom: 0;
        left: 0;
        display: block;
        width: min(90vw, 360px);
        padding: 0 12px 20px;
        overflow-y: auto;
        background: var(--catalog-page);
        box-shadow: 10px 0 40px rgba(0, 0, 0, .2);
        transform: translateX(-105%);
        transition: transform .22s ease;
    }

    .forte-filter.is-open { transform: translateX(0); }
    .forte-filter__mobile-head {
        position: sticky;
        z-index: 4;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 60px;
        margin: 0 -12px 10px;
        padding: 0 16px;
        border-bottom: 1px solid #e2e3e5;
        background: #fff;
    }
    .forte-filter__mobile-head strong { font-size: 18px; }
    .forte-filter__mobile-head button {
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 10px;
        background: #f1f2f3;
    }
    .forte-filter-backdrop {
        position: fixed;
        z-index: 1290;
        inset: 0;
        display: block;
        background: rgba(18, 21, 25, .52);
    }
    .forte-filter-backdrop[hidden] { display: none; }
    .forte-filter__actions {
        position: sticky;
        z-index: 4;
        bottom: 0;
        border-top: 1px solid #e5e6e8;
        box-shadow: 0 -10px 20px rgba(0, 0, 0, .06);
    }
    .forte-product-card { grid-template-columns: 180px minmax(0, 1fr) 190px; }
}

@media (max-width: 767px) {
    .forte-catalog__container { padding: 0 12px; }
    .forte-catalog__heading { align-items: center; margin-bottom: 13px; }
    .forte-catalog__eyebrow { display: none; }
    .forte-catalog__heading h1 { font-size: 25px; }
    .forte-catalog__heading h1 small { display: none; }
    .forte-catalog__mobile-filter span { display: none; }
    .forte-catalog-toolbar { flex-wrap: wrap; gap: 5px 12px; }
    .forte-toolbar-select { flex: 1 1 45%; min-width: 145px; }
    .forte-toolbar-select span { display: none; }
    .forte-toolbar-select select { width: 100%; max-width: none; }
    .forte-view-switch { display: none; }
    .forte-guides__nav { display: none; }
    .forte-guide-card { flex-basis: 72%; min-width: 220px; }
    .forte-catalog-promo { min-height: 150px; padding: 17px 100px 58px 17px; }
    .forte-catalog-promo strong { font-size: 18px; }
    .forte-catalog-promo p { max-width: 260px; }
    .forte-catalog-promo > button { position: absolute; bottom: 14px; left: 17px; margin: 0; }
    .forte-catalog-promo__visual { right: -30px; width: 150px; }
    .forte-catalog-promo__visual i { font-size: 80px; }

    .forte-product-card,
    .forte-products.is-grid .forte-product-card {
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 12px;
        min-height: 0;
        padding: 13px;
    }
    .forte-products.is-grid .forte-product-list { display: flex; }
    .forte-product-card__media,
    .forte-products.is-grid .forte-product-card__media { height: 135px; grid-column: 1; }
    .forte-product-card__media > a,
    .forte-products.is-grid .forte-product-card__media > a { height: 125px; }
    .forte-product-card__badges { top: -2px; left: -2px; }
    .forte-product-card__badges .is-stock { display: none; }
    .forte-product-card__content { grid-column: 2; }
    .forte-product-card__brand { font-size: 8px; }
    .forte-product-card__title { font-size: 12px; -webkit-line-clamp: 3; }
    .forte-product-card__signals { font-size: 9px; }
    .forte-product-card__signals > span { display: none; }
    .forte-product-card__specs { display: none; }
    .forte-product-card__secondary-actions { margin-top: auto; }
    .forte-product-card__secondary-actions > a { display: none; }
    .forte-compare-control b { display: none; }
    .forte-product-card__commerce { grid-column: 1 / -1; padding: 0; }
    .forte-product-card__price { justify-content: flex-start; }
    .forte-product-card__price strong { font-size: 19px; }
    .forte-product-card__buy-row { margin-top: 8px; }
    .forte-product-card__availability { min-height: 0; margin-top: 9px; padding-top: 0; }
    .forte-product-card__availability span:nth-child(2) { display: none; }
    .forte-active-filters { align-items: flex-start; overflow-x: auto; }
    .forte-active-filters > div { flex-wrap: nowrap; }
    .forte-active-filters [data-filter-remove] { flex: 0 0 auto; }
    .forte-assistant-options { grid-template-columns: 1fr; }
    .forte-assistant-options button { min-height: 86px; flex-direction: row; align-items: center; gap: 12px; }
    .forte-assistant-options button > i { flex: 0 0 40px; margin: 0; }
    .forte-assistant-options b { margin-top: 0; }
}

@media (max-width: 420px) {
    .forte-catalog__heading h1 { font-size: 22px; }
    .forte-catalog__mobile-filter { min-width: 44px; padding: 0 11px; }
    .forte-quick { min-height: 58px; padding: 9px 10px; }
    .forte-quick__chip { min-height: 36px; padding: 0 12px; }
    .forte-product-card,
    .forte-products.is-grid .forte-product-card { grid-template-columns: 104px minmax(0, 1fr); }
    .forte-product-card__media,
    .forte-products.is-grid .forte-product-card__media { height: 120px; }
    .forte-product-card__media > a,
    .forte-products.is-grid .forte-product-card__media > a { height: 112px; }
    .forte-catalog-modal { padding: 10px; }
    .forte-catalog-modal__dialog { padding: 22px 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .forte-catalog *,
    .forte-catalog *::before,
    .forte-catalog *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
