:root {
    --rs-blue: #2878ff;
    --rs-navy: #15275b;
    --rs-text: #161616;
    --rs-muted: #8a8f98;
    --rs-line: #e4e6ea;
    --rs-soft: #f4f5f7;
}

.rs-catalogue,
.rs-catalogue * {
    box-sizing: border-box;
}

.rs-catalogue {
    width: min(1440px, 100%);
    margin: 0 auto;
    color: var(--rs-text);
    font-family: inherit;
}

.rs-catalogue a {
    color: inherit;
    text-decoration: none;
}

.rs-catalogue button,
.rs-catalogue input,
.rs-catalogue select {
    font: inherit;
}

.rs-catalogue-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.rs-catalogue-sidebar {
    min-width: 0;
}

.rs-category-panel {
    overflow: hidden;
    margin-bottom: 48px;
    border: 1px solid #cfd3d8;
    border-radius: 6px;
    background: #fff;
}

.rs-panel-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border: 0;
    border-bottom: 1px solid var(--rs-line);
    background: #fff;
    cursor: pointer;
}

.rs-panel-toggle span:last-child {
    color: #6e737b;
    transition: transform .2s ease;
}

.rs-panel-toggle[aria-expanded="false"] span:last-child {
    transform: rotate(180deg);
}

.rs-category-list {
    padding: 0 20px 12px;
}

.rs-category-list a {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 5px;
    padding: 0 16px;
    border-bottom: 1px solid var(--rs-line);
    color: #4f535a;
    transition: color .2s ease, padding .2s ease;
}

.rs-category-list a:last-child {
    border-bottom: 0;
}

.rs-category-list a:hover,
.rs-category-list a.is-active {
    padding-left: 20px;
    color: var(--rs-blue);
}

.rs-category-list a.is-active {
    margin: 4px 0;
    border: 1px solid #c9dcff;
    border-radius: 7px;
    background: #edf4ff;
    box-shadow: inset 3px 0 0 var(--rs-blue);
    font-weight: 700;
}

.rs-category-list a.is-clearance,
.rs-category-list a.is-clearance small {
    color: #d71920;
    font-weight: 700;
}

.rs-category-list a.is-clearance:hover,
.rs-category-list a.is-clearance.is-active {
    color: #b40008;
}

.rs-category-list a.is-specials,
.rs-category-list a.is-specials small {
    color: #d71920;
    font-weight: 700;
}

.rs-category-list a.is-specials:hover,
.rs-category-list a.is-specials.is-active {
    color: #b40008;
}

.rs-category-list a.is-specials.is-active,
.rs-category-list a.is-clearance.is-active {
    border-color: #ffc5c8;
    background: #fff1f2;
    box-shadow: inset 3px 0 0 #d71920;
}

.rs-category-list small,
.rs-filter-options small {
    color: #a2a6ad;
    font-size: 10px;
}

.rs-sidebar-title {
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--rs-line);
}

.rs-sidebar-title::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 72px;
    height: 2px;
    background: var(--rs-blue);
    content: "";
}

.rs-sidebar-title h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.rs-filter-group {
    margin: 0;
    padding: 26px 0;
    border: 0;
    border-bottom: 1px solid var(--rs-line);
}

.rs-filter-group legend {
    width: 100%;
    margin: 0 0 16px;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
}

.rs-filter-options {
    display: grid;
    gap: 10px;
}

.rs-filter-options label {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 5px 8px;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #6c7078;
    font-size: 12px;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.rs-filter-options label:hover {
    background: #f6f8fb;
}

.rs-filter-options label.is-selected {
    border-color: #c9dcff;
    background: #edf4ff;
    color: #1d346d;
    font-weight: 700;
}

.rs-filter-options label.is-selected small {
    color: var(--rs-blue);
}

.rs-filter-options input {
    width: 14px;
    height: 14px;
    margin: 0;
    accent-color: var(--rs-blue);
}

.rs-extra-option {
    display: none !important;
}

.rs-extra-option.is-selected {
    display: flex !important;
}

.rs-filter-options.is-expanded .rs-extra-option {
    display: flex !important;
}

.rs-show-more {
    margin-top: 15px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #989ca3;
    font-size: 11px;
    cursor: pointer;
}

.rs-price-filter p {
    margin: 14px 0 0;
    color: #7d8189;
    font-size: 11px;
}

.rs-range {
    position: relative;
    height: 18px;
}

.rs-range-track {
    position: absolute;
    top: 8px;
    right: 4px;
    left: 4px;
    height: 4px;
    border-radius: 10px;
    background: #d2d6dc;
}

.rs-range input[type="range"] {
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 16px;
    margin: 0;
    pointer-events: none;
    appearance: none;
    background: transparent;
}

.rs-range input[type="range"]::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    border: 2px solid var(--rs-blue);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    pointer-events: auto;
    appearance: none;
}

.rs-range input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: 2px solid var(--rs-blue);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    pointer-events: auto;
}

.rs-filter-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 0 36px;
}

.rs-filter-actions button,
.rs-mobile-filter-trigger {
    border: 0;
    border-radius: 8px;
    background: var(--rs-blue);
    color: #fff;
    cursor: pointer;
}

.rs-filter-actions button {
    padding: 10px 27px;
}

.rs-filter-actions a {
    color: #777c84;
    font-size: 12px;
}

.rs-sidebar-promo {
    overflow: hidden;
    margin: 0 0 42px;
    border-radius: 6px;
}

.rs-sidebar-promo img {
    display: block;
    width: 100%;
    height: auto;
}

.rs-related {
    margin-top: 5px;
}

.rs-related-product {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 14px 0;
}

.rs-related-product img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    background: #fafafa;
}

.rs-related-product span {
    min-width: 0;
}

.rs-related-product b {
    display: -webkit-box;
    overflow: hidden;
    color: #777b82;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.rs-related-product em {
    display: block;
    margin-top: 8px;
    color: var(--rs-navy);
    font-size: 12px;
    font-style: normal;
}

.rs-catalogue-main {
    min-width: 0;
}

.rs-section-heading,
.rs-shop-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rs-section-heading {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rs-line);
}

.rs-section-heading h2,
.rs-shop-heading h2,
.rs-brands h2 {
    margin: 0;
    color: #181818;
    font-size: 24px;
    font-weight: 500;
}

.rs-carousel-arrows {
    display: flex;
}

.rs-carousel-arrows button,
.rs-brand-row-wrap > button {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 0;
    background: transparent;
    color: #ccd0d6;
    font-size: 28px;
    cursor: pointer;
}

.rs-recommended-track {
    display: grid;
    grid-auto-columns: minmax(190px, 1fr);
    grid-auto-flow: column;
    overflow-x: auto;
    border-bottom: 1px solid var(--rs-line);
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.rs-recommended-track::-webkit-scrollbar,
.rs-brand-row::-webkit-scrollbar {
    display: none;
}

.rs-product-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 405px;
    flex-direction: column;
    padding: 19px 22px 15px;
    border-right: 1px solid var(--rs-line);
    border-bottom: 1px solid var(--rs-line);
    background: #fff;
    transition: box-shadow .2s ease, transform .2s ease;
}

.rs-product-card:hover {
    z-index: 2;
    box-shadow: 0 8px 25px rgba(20, 33, 70, .12);
    transform: translateY(-2px);
}

.rs-product-card-small {
    width: 100%;
    min-height: 360px;
    scroll-snap-align: start;
}

.rs-card-category,
.rs-card-category a {
    overflow: hidden;
    color: #75b5ff !important;
    font-size: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rs-product-card h3 {
    min-height: 44px;
    margin: 6px 0 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.18;
}

.rs-product-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.rs-product-image {
    position: relative;
    display: grid;
    min-height: 190px;
    flex: 1;
    place-items: center;
    padding: 6px;
}

.rs-product-image img {
    display: block;
    width: 100%;
    max-width: 170px;
    height: 180px;
    object-fit: contain;
    transition: transform .25s ease;
}

.rs-product-card:hover .rs-product-image img {
    transform: scale(1.035);
}

.rs-sale-badge {
    position: absolute;
    top: 5px;
    right: 2px;
    padding: 4px 7px;
    border-radius: 20px;
    background: var(--rs-blue);
    color: #fff;
    font-size: 9px;
}

.rs-product-bottom {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.rs-product-bottom .rs-price {
    min-width: 0;
    flex: 1 1 auto;
    letter-spacing: -.15px;
    white-space: nowrap;
}

.rs-catalogue .rs-product-card .rs-price,
.rs-catalogue .rs-product-card .rs-price ins,
.rs-catalogue .rs-product-card .rs-price bdi,
.rs-catalogue .rs-product-card .rs-price .amount,
.rs-catalogue .rs-product-card .rs-price .woocommerce-Price-amount,
.rs-catalogue .rs-product-card .rs-price .woocommerce-Price-currencySymbol {
    color: var(--rs-navy) !important;
    font-size: clamp(11px, .9vw, 15px) !important;
    font-weight: 500;
    text-decoration: none;
}

.rs-catalogue .rs-product-card .rs-price del,
.rs-catalogue .rs-product-card .rs-price del bdi,
.rs-catalogue .rs-product-card .rs-price del .amount,
.rs-catalogue .rs-product-card .rs-price del .woocommerce-Price-currencySymbol {
    display: inline !important;
    margin: 0 !important;
    color: #a0a4ac !important;
    font-size: clamp(9px, .65vw, 11px) !important;
    line-height: 1.2;
}

.rs-catalogue .rs-product-card .rs-price del {
    margin-right: 3px !important;
}

.rs-catalogue .rs-product-card .rs-price ins {
    display: inline !important;
    white-space: nowrap;
}

.rs-price-separator {
    padding: 0 1px;
    color: var(--rs-navy) !important;
}

.rs-price-missing {
    color: #89909b !important;
    font-size: 12px;
    font-weight: 400;
}

.rs-cart-button {
    display: grid;
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    place-items: center;
    border-radius: 50%;
    background: #e2e3e6;
    color: #fff !important;
    font-size: 13px;
    transition: background .2s ease, transform .2s ease;
}

.rs-cart-button:hover,
.rs-product-card:hover .rs-cart-button {
    background: var(--rs-blue);
    transform: scale(1.05);
}

.rs-wishlist {
    display: flex;
    min-height: 34px;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--rs-line);
    color: #a1a5ab !important;
    font-size: 10px;
}

.rs-wishlist span {
    color: #565b63;
    font-size: 18px;
}

.rs-brands {
    margin: 78px 0 70px;
}

.rs-brands h2 {
    margin-bottom: 20px;
}

.rs-brand-row-wrap {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    align-items: center;
}

.rs-brand-row-wrap > button {
    border-radius: 50%;
    box-shadow: 0 1px 8px rgba(15, 30, 60, .16);
    color: #9da2aa;
    font-size: 22px;
}

.rs-brand-row {
    display: flex;
    overflow-x: auto;
    align-items: center;
    gap: 46px;
    padding: 7px 18px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.rs-brand-row a {
    display: grid;
    min-width: 135px;
    height: 45px;
    place-items: center;
    white-space: nowrap;
}

.rs-brand-row img {
    display: block;
    width: 135px;
    height: 45px;
    object-fit: contain;
}

.rs-shop-heading {
    margin-bottom: 18px;
}

.rs-shop-heading span {
    color: #787d85;
    font-size: 11px;
}

.rs-active-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 16px;
    padding: 12px 14px;
    border: 1px solid #c9dcff;
    border-radius: 9px;
    background: #f5f8ff;
}

.rs-active-filters > strong {
    color: var(--rs-navy);
    font-size: 12px;
}

.rs-active-filter-chips {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.rs-active-filter-chip {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border: 1px solid #b8d0ff;
    border-radius: 18px;
    background: #fff;
    color: #1d346d !important;
    font-size: 11px;
    font-weight: 600;
    transition: border-color .2s ease, background .2s ease;
}

.rs-active-filter-chip:hover {
    border-color: var(--rs-blue);
    background: #eaf2ff;
}

.rs-active-filter-chip b {
    color: var(--rs-blue);
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
}

.rs-clear-all-filters {
    padding: 4px 2px;
    border-bottom: 1px solid currentColor;
    color: #5f6670 !important;
    font-size: 11px;
    font-weight: 600;
}

.rs-shop-toolbar {
    display: grid;
    grid-template-columns: auto minmax(190px, 1fr) auto auto;
    gap: 14px;
    align-items: center;
    min-height: 51px;
    padding: 7px 16px;
    border-radius: 8px 8px 0 0;
    background: #f1f2f4;
    color: #92969c;
    font-size: 11px;
}

.rs-shop-toolbar.has-product-filters {
    grid-template-columns: auto minmax(190px, 1fr) minmax(180px, auto) auto auto;
}

.rs-view-buttons {
    display: flex;
    gap: 4px;
}

.rs-view-buttons button {
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #969ba3;
    cursor: pointer;
}

.rs-view-buttons button.is-active {
    background: #fff;
    color: var(--rs-blue);
}

.rs-sort select {
    width: 100%;
    height: 34px;
    padding: 0 16px;
    border: 1px solid #e0e2e5;
    border-radius: 18px;
    outline: 0;
    background: #fff;
    color: #767b83;
    font-size: 11px;
}

.rs-toolbar-attribute-filters {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
}

.rs-toolbar-filter {
    display: block;
    min-width: 135px;
}

.rs-toolbar-filter select {
    width: 100%;
    height: 34px;
    padding: 0 32px 0 13px;
    border: 1px solid #e0e2e5;
    border-radius: 18px;
    outline: 0;
    background-color: #fff;
    color: #5f6570;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

.rs-toolbar-filter.is-selected select {
    border-color: var(--rs-blue);
    background-color: #edf4ff;
    color: #1d346d;
    box-shadow: 0 0 0 2px rgba(40, 120, 255, .1);
}

.rs-show-count,
.rs-toolbar-pages {
    padding: 9px 13px;
    border-radius: 18px;
    background: #fff;
    white-space: nowrap;
}

.rs-show-count b {
    color: #343a43;
}

.rs-toolbar-pages small {
    padding: 0 6px;
}

.rs-products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-left: 1px solid var(--rs-line);
    border-top: 1px solid var(--rs-line);
}

.rs-products-grid.is-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rs-products-grid.is-list {
    grid-template-columns: 1fr;
}

.rs-products-grid.is-list .rs-product-card {
    display: grid;
    min-height: 170px;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    grid-template-rows: auto auto 1fr;
    column-gap: 22px;
}

.rs-products-grid.is-list .rs-product-image {
    min-height: 130px;
    grid-column: 1;
    grid-row: 1 / 4;
}

.rs-products-grid.is-list .rs-product-image img {
    height: 130px;
}

.rs-products-grid.is-list .rs-card-category,
.rs-products-grid.is-list h3 {
    grid-column: 2;
}

.rs-products-grid.is-list .rs-product-bottom {
    grid-column: 3;
    grid-row: 1 / 4;
}

.rs-products-grid.is-list .rs-wishlist {
    grid-column: 2;
    align-self: end;
}

.rs-pagination {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
    padding: 20px 0;
}

.rs-pagination .rs-page-link,
.rs-pagination .rs-page-current {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid var(--rs-line);
    border-radius: 50%;
    color: #91959c;
    font-size: 11px;
}

.rs-pagination .rs-page-current,
.rs-pagination .rs-page-link:hover {
    border-color: var(--rs-blue);
    background: var(--rs-blue);
    color: #fff;
}

.rs-no-products {
    padding: 70px 30px;
    border: 1px solid var(--rs-line);
    text-align: center;
}

.rs-no-products h3 {
    margin: 0 0 8px;
}

.rs-no-products p {
    color: var(--rs-muted);
}

.rs-no-products a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 6px;
    background: var(--rs-blue);
    color: #fff;
}

.rs-mobile-filter-trigger,
.rs-filter-close,
.rs-filter-overlay {
    display: none;
}

@media (max-width: 1280px) {
    .rs-catalogue-layout {
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 25px;
    }

    .rs-products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .rs-shop-toolbar.has-product-filters {
        grid-template-columns: auto minmax(170px, 1fr) minmax(160px, auto) auto auto;
        gap: 9px;
    }

    .rs-toolbar-filter {
        min-width: 120px;
    }
}

@media (max-width: 1024px) {
    .rs-mobile-filter-trigger {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        margin-bottom: 20px;
        padding: 12px 18px;
    }

    .rs-filter-icon,
    .rs-filter-icon::before,
    .rs-filter-icon::after {
        display: block;
        width: 17px;
        height: 2px;
        background: currentColor;
        content: "";
    }

    .rs-filter-icon {
        position: relative;
    }

    .rs-filter-icon::before {
        position: absolute;
        top: -5px;
        width: 11px;
    }

    .rs-filter-icon::after {
        position: absolute;
        top: 5px;
        width: 14px;
    }

    .rs-catalogue-layout {
        display: block;
    }

    .rs-catalogue-sidebar {
        position: fixed;
        z-index: 100001;
        top: 0;
        bottom: 0;
        left: 0;
        overflow-y: auto;
        width: min(360px, 90vw);
        padding: 58px 25px 30px;
        background: #fff;
        box-shadow: 12px 0 35px rgba(0, 0, 0, .18);
        transform: translateX(-105%);
        transition: transform .28s ease;
    }

    .rs-catalogue.is-filter-open .rs-catalogue-sidebar {
        transform: translateX(0);
    }

    .rs-filter-close {
        position: absolute;
        top: 12px;
        right: 16px;
        display: block;
        padding: 0;
        border: 0;
        background: transparent;
        color: #222;
        font-size: 34px;
        cursor: pointer;
    }

    .rs-filter-overlay {
        position: fixed;
        z-index: 100000;
        inset: 0;
        background: rgba(12, 18, 30, .45);
    }

    .rs-catalogue.is-filter-open .rs-filter-overlay {
        display: block;
    }

    body.rs-filter-lock {
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .rs-section-heading h2,
    .rs-shop-heading h2,
    .rs-brands h2 {
        font-size: 20px;
    }

    .rs-section-heading h2 span {
        display: none;
    }

    .rs-recommended-track {
        grid-auto-columns: minmax(165px, 72%);
    }

    .rs-product-card {
        min-height: 350px;
        padding: 15px 14px 12px;
    }

    .rs-product-image {
        min-height: 155px;
    }

    .rs-product-image img {
        height: 150px;
    }

    .rs-price,
    .rs-price ins {
        font-size: 15px;
    }

    .rs-brands {
        margin: 48px 0;
    }

    .rs-brand-row {
        gap: 25px;
    }

    .rs-shop-heading {
        align-items: flex-end;
    }

    .rs-shop-heading span {
        max-width: 135px;
        text-align: right;
    }

    .rs-shop-toolbar {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .rs-shop-toolbar.has-product-filters {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .rs-toolbar-attribute-filters {
        grid-column: 1 / -1;
        flex-wrap: wrap;
    }

    .rs-toolbar-filter {
        flex: 1 1 145px;
    }

    .rs-show-count,
    .rs-toolbar-pages {
        display: none;
    }

    .rs-products-grid,
    .rs-products-grid.is-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rs-products-grid.is-list {
        grid-template-columns: 1fr;
    }

    .rs-products-grid.is-list .rs-product-card {
        grid-template-columns: 95px minmax(0, 1fr);
    }

    .rs-products-grid.is-list .rs-product-bottom {
        grid-column: 2;
        grid-row: 3;
    }
}

@media (max-width: 420px) {
    .rs-toolbar-filter {
        flex-basis: 100%;
    }

    .rs-product-card {
        min-height: 320px;
        padding: 12px 10px 10px;
    }

    .rs-product-card h3 {
        font-size: 10px;
    }

    .rs-product-image {
        min-height: 135px;
    }

    .rs-product-image img {
        height: 130px;
    }

    .rs-cart-button {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }
}
