.catalog {
  overflow-x: hidden;
}
/* Фильтры, категории, изменение вида */
.toolbar {
    position: sticky;
    top: 0;
    display: grid;
    align-items: end;
    grid-template-columns: 1fr 50% 1fr;
    background: #FFFEF9;
    border-bottom: 1px solid rgba(181, 169, 157, 0.8);
    padding: 30px 20px 0;
    z-index: 11;
}
.filters {
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.filters__btn {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.filters__label--mobile {
    display: none;
}
/* Окошко с фильтрами */
.filters-drawer {
    width: 730px;
    position: absolute;
    top: 38px;
    display: flex;
    flex-direction: column;
    background: #FFFFFE;
    padding: 35px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.15);
    z-index: 2;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    box-sizing: border-box;
    transition: all .4s ease;
    overflow: hidden;
}
.filters-drawer--active {
    opacity: 1;
    transform: translate(0) !important;
    pointer-events: all;
}
.filters-drawer__header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}
.filters-drawer__title {
    font-size: 16px;
    font-weight: 400;
}
.filters-drawer__close {
    cursor: pointer;
}
.filters-drawer__properties {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 35px;
}
.filters-drawer__footer {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 30px;
    min-width: 0;
    width: 100%;
}
.filters-drawer__buttons {
    width: 100%;
    display: flex;
    gap: 10px;
    box-sizing: border-box;
}
.filters-drawer__buttons--mobile {
    display: none;
}
.filters-drawer__button {
        display: block;
    flex: 1;
    max-width: 200px;
    height: 40px;
    position: relative;
    color: #FFFFFE;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    background: #281D18;
    border: 1px solid #281D18;
    cursor: pointer;
}
.filters-drawer__button&gt;a{
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.filters-drawer__button--reset {
    color: #281D18;
    background: #FFFFFE;
}
.filters-drawer__button:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFFFE;
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease;
}
.filters-drawer__button--reset:after {
    background: #281D18;
}
.filters-drawer__button span {
    position: relative;
    z-index: 1;
    transition: all .4s ease;
}
.filters-drawer__button:hover:after {
    transform: scaleX(1);
}
.filters-drawer__button:hover span {
    color: #281D18;
}
.filters-drawer__button--reset:hover span {
    color: #FFFFFE;
}
/* В окошке с фильтрами стили для категорий */
.property {
    width: 100%;
    min-width: 235px;
    box-sizing: border-box;
}
.property--categories {
    display: none;
}
.property__label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.property__label svg {
    display: none;
}
.property__options {
    max-height: 150px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px 60px;
    text-transform: none;
    padding-top: 0;
}
.property__option {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.property__option input {
    display: none;
}
.property__option input:checked ~ .property__custom-checkbox:after {
    opacity: 1;
}
.property__option input:checked ~ .property__custom-checkbox {
    background: #281D18 !important;
}
.property__option:hover .property__custom-checkbox {
    /* background: #E9E9E9; */
}
.property__custom-checkbox {
    width: 20px;
    height: 20px;
    position: relative;
    color: #FFFFFE;
    border: 1px solid #AAAAAA;
    transition: all .4s ease;
}
.bx-active&gt;.property__custom-checkbox{
    background: black;
}
.bx-active&gt;.property__custom-checkbox:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    color: #FFFEF9;
    font-size: 14px;
    /* opacity: 0; */
    line-height: 1;
    transition: all .4s ease;
}
.property__option-title--sale {
    color: #AD0101;
    text-transform: uppercase;
}
/* В окошке с фильтрами стили для цены */
.price {
    max-width: 235px;
}
.price__title {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.price__range {
    display: flex;
    align-items: center;
    gap: 8px;
}
.price__input {
    width: 100%;
    height: 40px;
    border: 1px solid #AAAAAA;
    border-radius: 6px;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
}
.price__input::placeholder {
    color: #AAAAAA;
}
/* Категории (слайдер) */
.categories {
    position: relative;
}
.categories__slider  {
    padding-bottom: 20px;
}
.categories__prev, .categories__next {
    position: absolute;
    top: 43%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all .4s ease;
}
.toolbar--stuck .categories__prev,
.toolbar--stuck .categories__next {
  top: auto;
  bottom: 15px;
  transform: none;
}
.categories__prev.swiper-button-disabled, .categories__next.swiper-button-disabled {
    opacity: 0.5;
}
.categories__prev {
    left: -30px;
}
.categories__next {
    right: -30px;
}
.categories__item {
    position: relative;
}
.categories__item:after {
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -20px;
    background-color: #281D18;
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease;
}
.categories__item--active:after, .categories__item:hover:after {
    transform: scaleX(1);
}
.category {
    display: block;
    color: #281D18;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
}
.category:hover .category__photo img {
    transform: scale(1.1);
}
.category__photo {
    max-width: 220px;
    aspect-ratio: 0.75;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F3EFE4;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}
.category__photo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all .4s ease;
}
.category__photo--all img {
    max-width: 70%;
}
/* Правая часть в шапке с сортировкой и вариантами отображения */
.toolbar__sort-and-views {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 30px;
    padding-bottom: 20px;
}
/* Сортировка */
.sort {
    position: relative;
}
.sort__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
/* Выпадающее окошко с сортировкой */
.sort-drawer {
    width: max-content;
    position: absolute;
    top: 38px;
    background: #FFFFFE;
    padding: 35px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all .4s ease;
}
.sort-drawer--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.sort-drawer-mobile {
    display: none;
    text-transform: none;
    padding: 20px;
    padding-top: 0;
}
.sort-drawer__label {
    display: block;
    font-size: 14px;
    margin-bottom: 20px;
}
.sort-drawer__options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.sort-drawer__option {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    cursor: pointer;
}
.sort-drawer__option:hover .sort-drawer__custom-radio {
    background: rgba(40,29,24,0.1);
}
.sort-drawer__option input {
    display: none;
}
.sort-drawer__option input:checked ~ .sort-drawer__custom-radio {
    background: #281D18;
}
.sort-drawer__option input:checked ~ .sort-drawer__custom-radio svg {
    opacity: 1;
}
.sort-drawer__custom-radio {
    width: 18px;
    height: 18px;
    position: relative;
    border: 1px solid #AAAAAA;
    border-radius: 50%;
    transition: all .4s ease;
}
.sort-drawer__custom-radio svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.sort-drawer__submit {
    width: 100%;
    height: 40px;
    position: relative;
    color: #281D18;
    font-size: 14px;
    text-transform: uppercase;
    background: #FFFFFF;
    border: 1px solid #281D18;
    cursor: pointer;
}
.sort-drawer__submit:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #281D18;
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease;
}
.sort-drawer__submit span {
    position: relative;
    z-index: 1;
    transition: all .4s ease;
}
.sort-drawer__submit:hover:after {
    transform: scaleX(1);
}
.sort-drawer__submit:hover span {
    color: #FFFFFF;
}
/* Варианты отображения */
.views {
    justify-self: flex-end;
    display: flex;
    gap: 25px;
}
.views__option {
    cursor: pointer;
}
.views__option rect {
    fill: transparent;
    transition: all .4s ease;
}
.views__option--active rect {
    fill: #281D18;
}
/* Карточки с товарами */
.products {
    background: #FFFEF9;
    padding: 80px 0;
}
.products__title {
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    margin-left: 20px;
    margin-bottom: 40px;
}
.products__cards {
    display: grid;
    gap: 30px 20px;
    margin-bottom: 40px;
    overflow: hidden;
}
.products__cards--grid {
  grid-template-columns: repeat(10, 1fr);
}
.products__cards--grid .card {
    grid-column: span 2;
}
.products__cards--grid .card:nth-child(12n + 6){
    grid-column:  2 / 6;
    grid-row: span 2;
}
.products__cards--grid .card:nth-child(12n + 7){
    grid-column:  6 / 10;
    grid-row: span 2;
}
.products__cards--list {
  grid-template-columns: repeat(2, 1fr);
}
.products__cards--tiles {
  grid-template-columns: repeat(4, 1fr);
}
.products__add-more {
    width: 295px;
    height: 45px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    background: none;
    border: 1px solid #281D18;
    margin: 0 auto;
    cursor: pointer;
}
.products__add-more:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #281D18;
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease;
}
.products__add-more span {
    position: relative;
    color: #281D18;
    z-index: 1;
    transition: all .4s ease;
}
.products__add-more:hover:after {
    transform: scaleX(1);
}
.products__add-more:hover span {
    color: #FFFEF9;
}
/* Карточка товара (миниатюра) */
.card {
    flex: 1;
    color: #281D18;
    text-decoration: none;
}
.card:hover .card__photo img {
    transform: scale(1.1);
}
.card__photo {
    position: relative;
    aspect-ratio: 0.65;
    background: #F3EFE4;
    overflow: hidden;
    transition: all .4s ease;
}
.card__photo a {
    display: block;
    width: 100%;
    height: 100%;
}
.card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease;
}
.card__tag {
    height: 35px;
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    background: #DCCDB0;
    border-radius: 3px;
    padding: 9px 20px;
    box-sizing: border-box;
}
.card__badge {
    height: 35px;
    position: absolute;
    left: 15px;
    bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F3EFE4;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(40,29,24,0.3);
    border-radius: 3px;
    padding: 9px 15px;
    box-sizing: border-box;
}
.card__favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
}
.card__favorite path {
    fill: transparent;
    transition: all .4s ease;
}
.card__favorite:hover path{
    fill: #281D18;
}
.card__add-to-cart {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all .4s ease;
}
.card__add-to-cart:hover {
    transform: scale(1.1);
}
.card__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
}
.card__title {
    font-weight: 600;
    text-transform: uppercase;
}
.card__colors {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card__color {
    width: 24px;
    height: 24px;
    position: relative;
    border-radius: 50%;
    cursor: pointer;
}
.card__color:after {
    content: '';
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid transparent;
    border-radius: 50%;
}
.card__color--active:after {
    border: 1px solid #D9D9D9;
}
.card__colors-more {
    font-size: 14px;
    font-weight: 500;
    margin-left: 2px;
}
@media (max-width: 1260px) {
    /* Фильтры, категории, изменение вида */
    .toolbar {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 45px;
        gap: 25px 0;
    }
    .categories {
        grid-column: span 2;
        grid-row: 1;
    }
    .categories__prev, .categories__next {
        display: none;
    }
}
@media (max-width: 1024px) {
    .toolbar {
        padding: 75px 0 25px;
    }
    .category__photo {
        display: none;
    }
    /* Карточки с товарами */
    .products__cards--grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products__cards--grid .card {
        grid-column: span 1;
    }
    .products__cards--grid .card:nth-child(12n + 6){
        grid-column:  span 1;
        grid-row: span 1;
    }
    .products__cards--grid .card:nth-child(12n + 7){
        grid-column:  span 1;
        grid-row: span 1;
    }
    .products__cards--grid .card:nth-child(6n + 3){
        grid-column:  span 2;
        grid-row: span 1;
    }
    .products__cards--grid .card:nth-child(6n + 4){
        grid-column:  span 2;
        grid-row: span 1;
    }
    .products__cards--list {
        grid-template-columns: repeat(1, 1fr);
    }
    .products__cards--tiles {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    /* Фильтры, категории, изменение вида */
    .toolbar {
        padding: 35px 0 25px;
        font-size: 12px;
    }
    .filters {
        position: static;
        font-size: 12px;
        padding-bottom: 0;
        padding-left: 15px;
    }
    .filters__btn {
        gap: 5px;
    }
    .filters svg {
        width: 21px;
        height: auto;
    }
    .filters__label--desktop {
        display: none;
    }
    .filters__label--mobile {
        display: block;
    }
    /* Окошко с фильтрами */
    .filters-drawer {
        width: 100%;
        height: calc(100vh - 100px);
        top: 0;
        left: 0;
        padding: 0;
        padding-top: 20px;
        overflow-y: auto;
        scrollbar-width: thin;
    }
    .filters-drawer__header {
        display: flex;
    }
    .filters-drawer__properties {
        flex-direction: column;
        gap: 0;
        margin-bottom: 30px;
    }
    .filters-drawer__footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .filters-drawer__buttons {
        width: 100%;
        position: sticky;
        bottom: 0;
        justify-content: center;
        gap: 10px;
        background: #FFFFFF;
        box-shadow: 0 -4px 30px 0 rgba(0, 0, 0, 0.1);
        padding: 20px 15px;
        margin-top: 30px;
    }
    .filters-drawer__buttons--desktop {
        display: none;
    }
    .filters-drawer__buttons--mobile {
        display: flex;
    }
    .filters-drawer__button {
        height: 45px;
        font-size: 12px;
    }
    /* В окошке с фильтрами стили для категорий */
    .property {
        min-width: 0;
        border-top: 1px solid rgba(40,29,24,0.1);
        padding: 15px 20px;
    }
    .property--active .property__label svg {
        transform: rotate(-90deg);
    }
    .property--categories {
        display: block;
    }
    .property__label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        cursor: pointer;
    }
    .property__label svg {
        display: block;
        width: 15px;
        height: auto;
        transition: all .4s ease;
    }
    .property__options {
        max-height: 0;
        flex-wrap: nowrap;
        gap: 15px;
        overflow: hidden;
        transition: all .4s ease;
    }
    /* В окошке с фильтрами стили для цены */
    .price {
        max-width: 100%;
        padding: 0 20px;
    }
    .price__title {
        margin-bottom: 15px;
    }
    .price__range {
        gap: 12px;
    }
    .price__input {
        padding: 15px;
    }
    /* Категории (слайдер) */
    .categories__slider  {
        padding: 0 15px 10px;
    }
    .categories__item {
        width: max-content;
    }
    .categories__item:after {
        bottom: -10px;
    }
    .category {
        width: max-content;
        white-space: nowrap;
    }
    /* Правая часть в шапке с сортировкой и вариантами отображения */
    .toolbar__sort-and-views {
        padding-bottom: 0;
    }
    /* Сортировка */
    .sort {
        display: none;
    }
    /* Выпадающее окошко с сортировкой (оно уже не выпадающее, а идет в комплекте с фильтрами) */
    .sort-drawer-mobile {
        display: block;
    }
    .sort-drawer__options {
        margin-bottom: 20px;
    }
    .sort-drawer__custom-radio svg {
        width: 10px;
        height: auto;
    }
    /* Варианты отображения */
    .views {
        padding-right: 15px;
    }
    .views svg {
        width: 18px;
        height: auto;
    }
    .views__option:nth-child(2) {
        transform: rotate(90deg);
    }
    /* Карточки с товарами */
    .products {
        padding: 35px 15px 60px;
    }
    .products__title {
        font-size: 16px;
        margin-left: 0;
        margin-bottom: 30px;
    }
    .products__cards {
        gap: 20px 10px;
        margin-bottom: 35px;
    }
    .products__add-more {
        width: 210px;
        height: 40px;
        font-size: 12px;
    }
    .card {
        flex: 1;
        color: #281D18;
        text-decoration: none;
    }
    .card:hover .card__photo img {
        transform: scale(1.1);
    }
    .card__photo {
        position: relative;
        aspect-ratio: 0.65;
        background: #F3EFE4;
        transition: all .4s ease;
    }
    .card__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .4s ease;
    }
    .card__tag {
        height: 20px;
        top: 10px;
        left: 10px;
        font-size: 10px;
        border-radius: 1.7px;
        padding: 4px 10px;
    }
    .card__badge {
        height: 20px;
        left: 10px;
        bottom: 10px;
        font-size: 10px;
        border-radius: 1.7px;
        padding: 4px 10px;
    }
    .card__favorite {
        top: 10px;
        right: 10px;
    }
    .card__favorite svg {
        width: 22px;
        height: auto;
    }
    .card__add-to-cart {
        right: 10px;
        bottom: 10px;
    }
    .card__add-to-cart svg {
        width: 35px;
        height: auto;
    }
    .card__content {
        gap: 2px;
        font-size: 12px;
        padding: 8px 5px;
    }
    .card__colors {
        gap: 10px;
        margin-top: 6px;
    }
    .card__color {
        width: 24px;
        height: 24px;
    }
    .card__color:after {
        width: 27px;
        height: 27px;
    }
    .card__colors-more {
        font-size: 10px;
        font-weight: 400;
        margin-left: -5px;
    }
}
.product-item-scu-item-color-container.notallowed .card__color:after{
	position: absolute;
	background: rgba(255, 255, 255, 0.8) url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI2IDI2Ij4gIDxwYXRoIGZpbGw9IiNBOUFEQjQiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTE0LjM5MjEyNjgsMTMuMjMyMzAyOSBMMjUuOTkyLDEuNDE4IEwyNC42LDAgTDEyLjk5OTk5NTYsMTEuODE0NDM2NCBMMS40LDAgTDAuMDA5LDEuNDE5IEwxMS42MDc4Njg3LDEzLjIzMjI5NzUgTDAuNDczLDI0LjU3MyBMMS44NjUsMjUuOTkxIEwxMi45OTk5OTkzLDE0LjY1MDE2NDUgTDI0LjEzNCwyNS45OSBMMjUuNTI2LDI0LjU3MiBMMTQuMzkyMTI2OCwxMy4yMzIzMDI5IFoiLz48L3N2Zz4=) no-repeat center;
	background-size: 60% 60%;
	content: "";
} 
.product-item-scu-item-text-block{
    position: relative;
}
.product-item-scu-item-text-container.notallowed .product-item-scu-item-text-block:after, .product-item-scu-item-text-container.notallowed .product__sizes-option:after {
	position: absolute;
	     top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
	background: rgba(255, 255, 255, 0.8) ;
	background-size: 60% 60%;
	content: "";
}