:root {
    --outer-container-width: 1600px;
    --inner-container-width: 1440px;

    --color-primary: #ff5000;
    --color-secondary: #235789;
    --color-supporting-1: #231f20;
    --color-supporting-2: #fff;
    --color-supporting-3: #f2efea;

    --block-spacer: 4.5rem;
    --inner-block-spacer: 4rem;
    --related-block-spacer: 3rem;

    --grid-gap: 2rem;
}
html,
input {
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 18px;
    font-weight: 300;
}
body {
    margin: 0;
}
body.mobile-menu {
    overflow: hidden;
}
* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: var(--color-tertiary);
}
a:hover {
    text-decoration-line: underline;
    text-decoration-color: var(--color-primary);
    text-underline-offset: 5px;
}
a.underline {
    text-decoration-line: underline;
    text-underline-offset: 5px;
}
a:hover {
    text-decoration-color: var(--color-primary);
}
hr {
    height: 1px;
    margin: 0;
    font-size: 0;
    border: none;
    background-color: #bcbec0;
}
img {
    max-width: 100%;
    vertical-align: top;
}
strong {
    font-weight: 400;
}
ul {
    list-style: none;
}
fieldset {
    padding: 0;
    border: none;
}
fieldset + fieldset {
    margin-block-start: 2rem;
}
fieldset .list-vertical {
    margin-block: 0;
}
fieldset .list-vertical li + li {
    margin-block-start: 1rem;
    margin-block-end: 0;
}
fieldset.catalog-sort {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    margin-block-end: 1rem;
    gap: 0.5rem;
}
fieldset.catalog-sort select {
    padding: 0.5rem;
}
fieldset.catalog-sort strong {
    margin-inline-end: 1rem;
}
legend {
    margin-block-end: 0.5rem;
    font-weight: 400;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {  
   opacity: 1;
}
.width-100 {
    width: 100%;
}
.bullet-separator li {
    padding-inline-end: 0.5rem;
}
.bullet-separator li + li {
    list-style: disc;
}
.bullet-separator li + li::marker {
    color: #ccc;
}
.list-horizontal {
    display: flex;
}
.list-horizontal li {
    margin-inline-end: 1rem;
}
.list-vertical li:not(:last-of-type) {
    margin-block-end: 1rem;
}
.heading .list-vertical {
    margin-block-start: 0.5rem;
}
.heading.content-margin {
    margin-block-end: 3rem;
}
.card .heading.underline,
.card .card-body {
    padding: 1rem;
}
.padding-0 {
    padding: 0;
}
.padding-block-0 {
    padding-block: 0;
}
.padding-inline-0 {
    padding-inline: 0;
}
.strong {
    font-weight: 400;
}
nav ul {
    padding: 0;
}
footer nav ul li + li {
    margin-block-start: 1rem;
}
footer .heading,
.details .heading,
.grid-with-heading .heading {
    margin-block-start: 0;
}
.card-grid > div {
    padding: 1rem;
}
small,
.small {
    font-size: 16px;
}
.flex {
    display: flex;
}
.fg-black {
    color: #000;
}
.fg-primary {
    color: var(--color-primary);
    fill: currentColor;
}
.fg-supporting-2 {
    color: var(--color-supporting-2);
}
.bg-black {
    background-color: #000;
}
.bg-primary {
    background-color: var(--color-primary);
}
.bg-secondary {
    background-color: var(--color-secondary);
}
.bg-supporting-1 {
    background-color: var(--color-supporting-1);
}
.bg-supporting-2 {
    background-color: var(--color-supporting-2);
}
.bg-supporting-3 {
    background-color: var(--color-supporting-3);
}
.border-primary {
    border-color: var(--color-primary);
}
.border-secondary {
    border-color: var(--color-secondary);
}
.border-supporting-1 {
    border-color: var(--color-supporting-1);
}
.border-supporting-2 {
    border-color: var(--color-supporting-2);
}
.border-supporting-3 {
    border-color: var(--color-supporting-3);
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.align-center {
    align-items: center;
}
.text-center {
    text-align: center;
}
.spacer-top {
    margin-block-start: var(--block-spacer);
}
.inner-spacer {
    padding-block: var(--inner-block-spacer);
}
.inner-spacer-start {
    padding-block-start: var(--inner-block-spacer);
}
.related-spacer-start {
    padding-block-start: var(--related-block-spacer);
}
.inner-spacer-end {
    padding-block-end: var(--inner-block-spacer);
}
.heading {
    font-weight: 400;
}
h2.heading {
    font-size: 32px;
}
h3.heading {
    font-size: 22px;
}
h3.heading.icon svg,
.icon svg {
    margin-inline-end: 0.5rem;
    height: 1rem;
    transform: translateY(-1px);
}
.heading.icon {
    display: inline-flex;
    align-items: center;
}
.heading.underline {
    border-bottom: 1px solid #bcbec0; /* currentColor; */
    width: 100%;
    padding-bottom: 1rem;
}
.heading.center {
    text-align: center;
    justify-content: center;
}
.margin-block-0 {
    margin-block: 0;
}
.margin-block-start-0 {
    margin-block-start: 0;
}
.margin-block-end-0 {
    margin-block-end: 0;
}
.margin-inline-0 {
    margin-inline: 0;
}
.margin-inline-start-0 {
    margin-inline-start: 0;
}
.outer-container {
    max-width: var(--outer-container-width);
    margin: 0 auto;
    padding-inline: var(--grid-gap);
}
.inner-container {
    max-width: var(--inner-container-width);
    margin: 0 auto;
    padding-inline: var(--grid-gap);
}
.button,
.ghost-button {
    display: inline-block;
    white-space: nowrap;
    border-radius: 8px;
    padding-inline: 1rem;
    padding-block: 0.75rem;
    font-weight: 400;
}
button[disabled] {
    opacity: 0.5;
}
button,
select,
input {
    font-family: 'Source Sans Pro';
    font-size: 1rem;
}
input,
select {
    font-weight: 300;
}
.hidden {
    display: none;
}
.button {
    border: none;
}
.button.icon {
    display: flex;
    align-items: center;
}
.button.icon svg {
    transform: translateY(1px);
}
.ghost-button {
    border-width: 2px;
    border-style: solid;
}
a.ghost-button:hover {
    text-decoration: none;
/*    border-color: var(--color-primary); */
}
.logo img {
    height: 50px;
}
/*
.product-card {
    display: flex;
    flex-direction: column;
    max-width: 8rem;
    word-break: break-all;
    font-size: 16px;
}
*/
.product-list-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    word-break: break-all;
    justify-content: space-between;
}
.product-list-item + .product-list-item {
    border-top: 1px solid #dfdfdf;
    padding-block-start: 2rem;
}
.product-list-item > div {
    display: flex;
    gap: 1rem;
    flex: 1;
    flex-direction: column;
}
.product-list-item .image {
    display: block;
    background-color: #f8f8f8;
    align-self: flex-start;
}
.product-list-item .image img {
    mix-blend-mode: multiply;
}
.product-list-item .name {
    font-weight: 400;
}
.product-list-item .info {
    display: flex;
    flex: 1;
    gap: 1rem;
}
.product-list-item .offer {
    display: flex;
/*
    flex: 1;
*/
    flex-direction: column;
    gap: 1rem;
}
.product-list-item .offer svg {
/*
    fill: var(--color-primary);
*/
}
.product-list-item .offer > div {
    display: flex;
}
.product-list-item .pricing {
    text-align: right;
}
.product-list-item .pricing,
.product-list-item-mini .pricing {
    flex-direction: column;
    gap: 1rem;
}
.price-now,
.price-before {
    font-size: 1.5rem;
    white-space: nowrap;
}
.price-now {
    margin-inline-end: 1rem;
    font-weight: 400;
}
.price-before {
    margin-inline-end: 0.5rem;
    background: linear-gradient(to left top, transparent 47.75%, currentColor 49.5%, currentColor 50.5%, transparent 52.25%);
    color: #767676;
}
.decimals,
.decimals-separator {
    font-size: 0.7em;
    display: inline-block;
    transform: translateY(-5px);
}
.decimals-separator {
    margin-inline: 0.1rem;
}

.product-list-item p {
    margin: 0;
}
.product-list-item img {
/*
    border: 1px solid #bcbec0;
*/
    padding: 0.5rem;
    max-height: 9rem;
    border-radius: 4px;
    background-color: white;
}
.product-list-item .special {
    display: grid;
    justify-content: flex-start;
}
.special-label {
/*
    font-size: 16px;
    color: #ec0000;
*/
    padding: 0.5rem 1rem;
/*
    font-weight: 400;
    border-width: 1px;
    border-style: solid;
    border-color: #000;
*/
    border-radius: 8px;
    background-color: #f8f8f8;
/*    display: inline-flex; */
    white-space: nowrap;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
}
.special-label svg {
    height: 1rem;
    margin-inline-end: 0.5rem;
    white-space: nowrap;
    vertical-align: middle;
}
.special-offer {
    padding: 0.25rem;
    background-color: #ec0000;
    color: white;
    font-weight: 400;
    white-space: nowrap;
    margin-inline-end: 1rem;
}
.product-list-item .bullet-separator li {
    list-style: none;
}
.quantity input {
    width: 4rem;
    height: 3rem;
    text-align: center;
    padding: 0.5rem;
}
.product-list-item button,
#product button {
    font-size: 18px;
    font-family: 'Source Sans Pro';
    font-weight: 300;
}
.quantity button {
    background-color: #f2f2f2;
    border-radius: 8px;
    border: none;
    padding: 0.5rem 1rem;
}
/*
.product-list-item .price,
.product-list-item .special {
    display: flex;
    align-items: center;
}
*/
.product-list-item .price {
    display: flex;
}
.product-list-item .price,
.product-list-item .special {
    align-items: center;
}
.product-list-item .cart,
#product .cart {
    display: flex;
    gap: 1rem;
}
#product .cart,
.product-features {
    margin-block-start: 2rem;
}
#product img {
    max-width: 210px;
}
#product .pricing {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.product-features li + li {
    margin-block-start: 1rem;
}
.product-features svg {
    width: 1.5rem;
}
.category-list .ghost-button {
    margin-inline-end: 1rem;
    margin-block-end: 1rem;
}
.button-cart {
    width: 4rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button-cart svg {
    height: 1.5rem;
}
#top {
    padding-block: 1rem;
/*    position: sticky;
    top: 0; */
}
#top,
#site-header input,
#categories {
    font-size: 16px;
}
.ghost-button {
    padding-inline: 1rem;
    padding-block: 0.75rem;
    font-weight: 400;
}
#site-header {
/*     position: sticky;
    top: -75px; */
}
#site-header form.site-search {
}
#site-header #top form.site-search {
    display: none;
}
#site-header :not(#top) form.site-search input {
    max-width: revert;
}
#site-header svg {
    height: 18px;
}
#mobile-bar {
    display: flex;
    align-items: center;
    padding-block-end: 1rem;
}
#mobile-bar a {
    display: inline-block;
}
#mobile-bar form.site-search ~ a {
    margin-inline-start: 1rem;
}
#menu-toggle svg {
    display: flex;
    height: 18px;
    margin-inline-end: 1rem;
}
#menu-toggle {
}
#mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    width: min(70vw, 300px);
    height: 100%;
    background-color: var(--color-supporting-2);
    padding: 1rem;
    z-index: 1;
    border-top: 1px solid #bcbec0;
    transform: translateX(calc(min(70vw, 300px) * -1));
    pointer-events: none;
    overflow: auto;
}
.mobile-menu #mobile-menu {
    transform: translateX(0);
    pointer-events: revert;
}
#mobile-menu .heading ~ .heading {
    margin-block-start: 1rem;
}
form.site-search {
    text-align: right;
}
form.site-search,
input[type="search"] {
    width: 100%;
}
input[type="search"] {
    padding-inline: 1rem;
    padding-block: 0.75rem;
    font-weight: 400;

    background-color: #f8f8f8;
    border: none;
    border-radius: 8px;
    width: 100%;
/*    max-width: 500px; */
    text-overflow: ellipsis;
    padding-inline-end: var(--grid-gap);
}
form.site-search label {
    position: relative;
}
form.site-search label::after {
    position: absolute;
    background-image: url(../image/search.svg);
    right: 1rem;
    top: 0;
    background-repeat: no-repeat;
    content: '';
    width: 1rem;
    height: 1rem;
    transform: translateY(2px);
}
#top > div {
}

#top {
    display: flex;
    align-items: center;
}
#top {
    justify-content: center;
}
/*
#top a:not(.site-search):not(.ghost-button) {
    display: block;
}
*/
#top a:not(.logo) {
    display: none;
}
#top > div a {
    margin-inline-start: 20px;
}
#bottom > div > div {
    display: flex;
    flex-direction: column;
}
#bottom > div:first-of-type > div {
    flex-basis: 50%;
    margin-block: 1rem;
}
#bottom a  {
    display: inline-flex;
    margin-block-end: 1rem;
}
/*
#bottom small a:first-of-type {
    order: 1;
}
*/
#bottom form.site-search {
    margin-block: 1rem;
}
#bottom > div:last-of-type {
/*    margin-block-start: var(--grid-gap); */
}
#bottom small {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
#categories {
    display: none;
}
#categories ul {
    display: flex;
    list-style: none;
    white-space: nowrap;
    overflow-x: auto;
    text-overflow: ellipsis;
    margin-block: 0;
    margin-inline: var(--grid-gap);
}
#categories ul::-webkit-scrollbar {
    display: none;
}
#categories li + li {
    padding-inline-start: 2rem;
}
#categories a {
    padding-block: 1rem;
    display: inline-block;
}
#vp-split > div > div > div {
    direction: ltr;
    text-align: center;
}
#vp-split > div {
    padding-block: var(--inner-block-spacer);
}
#vp-split > div > div > div {
    padding-inline: var(--grid-gap);
    width: 100%;
    max-width: 35rem;
    margin: 0 auto;
}
#vp-split > div:first-of-type {
    color: #000;
    background-color: #fafafa;
}
#vp-split > div:last-of-type {
    color: #fff;
    background-color: #235789;
    direction: rtl;
}
#vp-split > div:last-of-type .ghost-button {
    color: currentColor;
    border-color: currentColor;
}
/*
#vp-split img {
    height: 250px;
}
*/
.col-2,
.col-3,
.col-4 {
    display: grid;
    grid-row-gap: var(--grid-gap);
}
.col-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--grid-gap);
}
.col-3.center > div {
    text-align: center;
    max-width: 25rem;
    justify-self: center;
}
.col-3.center > div > img {
    max-height: 9rem;
}
.col-4 {
    display: grid;
    gap: var(--grid-gap);
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: var(--grid-gap);
}
.col-4.center {
    text-align: center;
}
.col-4 a {
    display: inline-block;
}
.col-4 a + a {
    margin-block-start: 1rem;
}
.col-4 > div > img {
    height: 9rem;
}
img.full-height {
    height: revert;
}
ul.underline {
    list-style: none;
    padding-inline: 0;
}
ul.underline li {
    border-bottom: 1px solid #fafafa;
}
a.underline {
    text-decoration-line: underline;
}
.status-message {
    border: 1px solid #dfdfdf;
    background-color: #f8f8f8;
    padding: 0.5rem;
}
.list-item-cta {
    display: flex;
    justify-content: space-between;
    text-align: left;
    align-items: center; /* Ensures items are aligned */
    max-width: 100%; /* Ensures the list item does not exceed its parent */
    overflow: hidden; /* Prevents overflow */
}

.list-item-cta span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1; /* Ensures it takes the available space */
    max-width: 9rem;
}

.list-item-cta a {
    text-decoration: underline;
    white-space: nowrap;
    flex-shrink: 0; /* Prevents the CTA from shrinking */
    margin-inline-start: 1rem; /* Adds spacing between the text and CTA */
}
/*
.list-item-cta {
    display: flex;
    justify-content: space-between;
    text-align: left;
}
.list-item-cta span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-inline-end: var(--grid-gap);
}
.list-item-cta a {
    text-decoration: underline;
    white-space: nowrap;
}
*/
.text-left {
    text-align: left;
}
.text-2-img,
.img-text {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-column-gap: var(--grid-gap);
    grid-row-gap: var(--grid-gap);
}
.text-2-img > div:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}
.text-2-img > div:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
}
.text-2-img > div:nth-child(3) {
    grid-area: 3 / 1 / 4 / 2;
    text-align: center;
}
.text-2-img img {
    width: 100%;
}
.text-2-img .heading {
    margin-block-start: 0;
}

.img-text {
    text-align: center;
}
.img-text .heading {
    margin-block-start: 0;
}
.col-2.center img {
    width: 100%;
/*    height: 18.5rem; */
}
.col-2.center {
    display: flex;
    gap: var(--grid-gap);
    align-items: center;
    justify-content: center;
}
.col-2.center > div:last-of-type {
    flex-basis: calc(var(--inner-container-width) / 3);
}
.col-1.center {
    max-width: 38rem;
    text-align: center;
    margin: 0 auto;
}
details {
    padding-block-end: 1rem;
    border-bottom: 1px solid var(--color-supporting-2);
    text-align: left;
}
summary {
    list-style: none;
    background-image: url(../image/chevron-down.svg);
    background-position: 100% 0.5rem;
    background-repeat: no-repeat;
    padding-inline-end: 3rem;
}
details[open] summary {
    background-image: url(../image/chevron-up.svg);
}
details + details {
    margin-block-start: 2rem;
}
.table {
    display: table;
    table-layout: fixed;
    width: 100%;
}
.table-header-group {
    display: table-header-group;
    font-size: 16px;
}
.table-row {
    display: table-row;
}
.table-cell {
    display: table-cell;
}
.catalog {
    display: flex;
    flex-direction: column;
    padding-inline-start: 0;
}
.product-list {
    display: flex;
    flex: 1;
    flex-direction: column;
}
.product-list > ul {
    display: flex;
/*    flex: 1; */
    flex-direction: column;
    padding-inline-start: 0;
    gap: 2rem;
}
.product-list.horizontal ul {
    display: grid;
    grid-template-columns: repeat(3, min(60vw, 300px));
    overflow-x: scroll;
}
.product-list.horizontal .product-list-item + .product-list-item {
    border-top: revert;
    padding-block-start: revert;
}
.product-filter {
    flex-basis: 250px;
    min-width: 280px;
}
.product-filter {
    display: none;
}
#cart .product-filter {
    display: revert;
    margin-block-start: var(--grid-gap);
}
.product-filter.expanded {
    display: block;
}
#cart-totals {
    position: sticky;
    top: 2rem;
    height: 100%;
}
#cart-totals > div {
    padding: 1rem;
    border: 1px solid #000;
/*
    background-color: #f2f2f2;
*/
/*
    min-width: 360px;
*/
    width: 100%;
}
.totals-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block-end: 1rem;
/*    font-weight: 400; */
}
.totals-line .heading {
    margin: 0;
    font-weight: 300;
}
#cart-totals button svg {
    display: none;
}

@media screen and (min-width: 480px) {
    #bottom > div:first-of-type {
        flex-direction: unset;
        align-items: center;
    }
    #bottom > div > div {
        flex-direction: revert;
    }
    #bottom > div:first-of-type > div:first-of-type {
        order: 2;
    }
    #bottom a {
        margin-block-start: revert;
        margin-inline-end: 1rem;
    }
    #bottom small {
        flex-direction: revert;
    }
}
@media screen and (min-width: 640px) {
    .logo img {
        height: 70px;
    }
    .text-2-img {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        grid-column-gap: var(--grid-gap);
    }
    .text-2-img > div:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }
    .text-2-img > div:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
    }
    .text-2-img > div:nth-child(3) {
        grid-area: 2 / 1 / 3 / 3;
    }
    .col-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .col-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-list-item {
        flex-direction: revert;
    }
    #product {
        display: grid;
        grid-template-columns: minmax(200px, 1fr) 1fr 1fr;
        gap: var(--grid-gap);
    }
    #product > div:first-of-type {
        grid-column: 1 / 2;
    }
    #product > div:last-of-type {
        grid-column: 2 / 4;
    }
    #product img {
        max-width: 100%;
    }
}
@media screen and (min-width: 768px) {
    #top {
        justify-content: space-between;
    }
    #top > div {
        display: flex;
        align-items: center;
        flex-basis: 70%;
        justify-content: flex-end;
    }
    #top a:not(.logo) {
        display: block;
    }
    #mobile-bar {
        display: none;
    }   
    #bottom a {
        margin-block-end: revert;
    }
    #bottom > div:first-of-type > div {
        margin-block: revert;
    }
    #bottom > div:last-of-type {
        flex-direction: revert;
        align-items: center;
        gap: var(--grid-gap);
    }
    #bottom > div {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-block-start: 1rem;
    }
    #bottom > div + div {
        margin-block-start: 2rem;
    }
    #bottom form.site-search {
        margin-block: revert;
    }
    #bottom form.site-search input[type="search"] {
        max-width: 500px;
    }
    #bottom small {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    #site-header #top form.site-search {
        display: revert;
        margin-block-end: revert;
    }
    #site-header form.site-search {
        display: none;
        padding-block-end: revert;
    }
    #categories {
        display: block;
    }
    .text-2-img {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        grid-column-gap: var(--grid-gap);
    }
    .text-2-img > div:nth-child(1) {
        grid-area: 1 / 2 / 2 / 3;
    }
    .text-2-img > div:nth-child(2) {
        grid-area: 2 / 2 / 3 / 3;
    }
    .text-2-img > div:nth-child(3) {
        grid-area: 1 / 1 / 3 / 2;
        text-align: revert;
    }
    #top form.site-search {
        display: unset;
        margin-inline-end: 1rem;
    }
}
@media screen and (min-width: 960px) {
    .col-3 {
        gap: var(--grid-gap);
        grid-template-columns: repeat(3, 1fr);
    }
    .col-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    .img-text {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--grid-gap);
        text-align: left;
    }
    .img-text > div:nth-child(2) {
        max-width: 25rem;
    }
    .text-2-img {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: var(--grid-gap);
    }
    .text-2-img > div:nth-child(1) {
        grid-area: 1 / 2 / 2 / 2;
    }
    .text-2-img > div:nth-child(2) {
        grid-area: 1 / 3 / 2 / 3;
    }
    .text-2-img > div:nth-child(3) {
        grid-area: 1 / 2 / 2 / 1;
    }
    .product-filter-toggle {
        display: none;
    }
    .product-filter {
        display: block;
    }
    #cart .product-filter {
        margin-block-start: 0;
    }
    .catalog {
        flex-direction: revert;
        gap: var(--grid-gap);
    }
    fieldset.sort {
        display: none;
    }
    fieldset.catalog-sort {
        display: flex;
        align-self: flex-end;
        align-items: center;
        flex-direction: revert;
        gap: revert;
    }
    #cart fieldset.catalog-sort {
        align-self: flex-start;
    }
    #product {
        grid-template-columns: minmax(360px, 1fr) 1fr 1fr;
    }
    #product .pricing {
        display: revert;
        flex-direction: revert;
        gap: revert;
    }
}
@media screen and (min-width: 1280px) {
    .col-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    #vp-split {
        display: flex;
    }
    #vp-split > div {
        display: flex;
        flex-basis: 50%;
        justify-content: flex-end;
    }
    #vp-split > div > div {
        display: flex;
        width: 70%;
        min-width: 30rem;
        max-width: calc(var(--inner-container-width) / 2);
    }
    #vp-split > div > div > div {
        width: unset;
        margin: unset;
        max-width: 27rem;
    }
    .product-list.horizontal ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: revert;
    }
    .product-filter {
        flex-basis: 360px;
    }
    fieldset.catalog-sort {
        align-self: flex-end;
    }
    .product-list-item > div {
        flex-direction: revert;
    }
    .product-list-item .cart {
        flex-direction: column;
    }
    .product-list-item .bullet-separator {
        display: flex;
    }
    .product-list-item .bullet-separator li {
        margin-inline-end: 1rem;
    }
    .product-list-item .bullet-separator li + li {
        list-style: disc;
    }
    .product-list-item .price,
    .product-list-item .special {
        align-items: center;
    }
    .product-list-item:not(.product-list-item-mini) .pricing {
        flex-direction: revert;
        align-items: center;
        gap: revert;
    }
}
@media screen and (min-width: 1440px) {
    #vp-split > div > div {
        min-width: 33rem;
    }
}
@media screen and (min-width: 1600px) {
    #categories ul {
        justify-content: center;
    }
}
