/**************
КАРТОЧКА ТОВАРА
***************/

.card_row {
    align-items: stretch;
    gap: 32px 12px;
    flex-wrap: wrap;
}
.card {
    max-width: 343px;
    background: #fff;
    position: relative;
    transition: all linear .2s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card_row .card {
    width: calc(100% / 4 - 12px / 4* 3);
}
.card:hover {
/*    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.05);*/
}

.card_img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 398px;
    position: relative;
    overflow: hidden;
    transition: all linear .2s;
}
.card_img .product-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all linear .1s;
}
.card_img .to_wishlist {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 8px;
    right: 8px;
    background: url(../img/icon/fav1.svg) center/100% 100% no-repeat;
    display: none;
}
.card_img .add_to_cart {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    transform: translateY(100%);
    transition: all linear .1s;
    text-decoration: none
}
.card_img:hover .add_to_cart {
    transform: translateY(0%);
}
.card_img .add_to_cart:hover {
    text-decoration: underline
}
.card_img:hover img {
    filter: brightness(80%)
}
.card_img:hover .to_wishlist {
    display: block;
}

.card_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 0;
    padding: 10px 0
}

.card_name {
    font-size: 15px;
    line-height: 22px;
}
.card_desc {
    line-height: 18px;
    margin: 2px 0 0;
    font-size: 13px;
}
.card_volume {
    line-height: 20px;
}
.card .card_price {
    font-size: 13px;
    margin: auto 0 0;
}
.card .card_price.sold_out {
    text-transform: uppercase;
    color: var(--sec)
}
.card_row .card .card_desc {
    margin-bottom: 16px;
}

.card_aten {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
    padding: 6px 8px;
    background: #fff;
    color: var(--col);
    font-size: 11px;
}
.mobile_actions {
    display: none
}
/**************
КАРТОЧКА ТОВАРА
***************/

/**************
ФИЛЬТРЫ
***************/
.catalog-block {
    align-items: flex-start;
    position: relative;
}
.filter {
    width: 364px;
    background: #fff;
    padding: 24px 20px;
    position: absolute;
    right: 0;
    z-index: 91;
    top: 0;
    height: 100%;
    min-height: 85vh;
    height: 85vh;
    display: none;
    overflow-y: scroll;
}
.filter_head {
    font-size: 13px;    
}
.filter_head>p {
    margin-bottom: 10px;
}
.checked_list {
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px
}
.checked_list-item {
    background: var(--col);
    color: #fff;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    
}
.checked_list-item .remove {
    width: 12px;
    height: 12px;
    background: url(../img/icon/close1.svg) -1px -1px/cover no-repeat;
    margin-right: 10px;
    cursor: pointer;
}

.filter-it {
    padding: 16px 0;
}
.filter-it:not(:last-child) {
    border-bottom: 1px solid var(--sep)
}

.category_fields-item {
    font-size: 14px;
}
.category_fields-item a {
    padding: 8px 0
}
.category_fields-item a.active {
    text-decoration: underline;
}
.category_fields-item>div {
    padding-left: 16px;
}


.filter-name {
    font-size: 14px;
    cursor: pointer;
    transition: all linear .2s;
}
.filter-name.op img {
    transform: rotate(180deg)
}

.filter-fields {
    display: none;
    padding-top: 8px;
}

.filter-field-item {
    padding: 8px 0;
    font-size: 14px;
}
.filter-fields input, .radio {
    width: 0;
    height: 0;
    opacity: 0;
    display: none
}
.filter-fields input+label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

.filter-fields input+label:before {
    content: '';
    width: 15px;
    height: 15px;
    background: #fff;
    display: block;
    cursor: pointer;
    border: 2px solid var(--sep);
    margin-right: 8.5px;
    border-radius: 4px;
}
.filter-fields input:checked+label {
    text-decoration: underline;
}
.filter-fields input:checked+label:before {
    background: url(../img/icon/check.svg) center/100% 100% no-repeat;
    border: none
}



.top_filter {
    margin-bottom: 24px;
}

.select-sort {
    position: relative;
}

.sort_list {
    margin-left: 10px;
    position: relative;
}
.sort_list p {
    cursor: pointer
}
.sort_list p.active img {
    transform: rotate(180deg)
}
.sort span {
    margin-right: 2px;
    font-size: 13px;
}
.sort .sort_inner {
    position: absolute;
    padding: 24px;
    z-index: 2;
    background: #fff;
    display: none
}
.sort .sort_inner a {
    display: block;
    white-space: nowrap;
    padding: 8px 0;
    font-size: 14px;
}
.sort .sort_inner a.active {
    text-decoration: underline;
}

.nav_pages {
    padding: 5px 20px;
    background: #fff;
    margin-top: 30px;
    border-radius: 6px;
}
.pagination {
    border-top: 1px solid var(--sep);
    margin-top: 16px;
    padding: 30px 0
}
.pagination .prev, .pagination .next {
    gap: 80px;
}
.pagination .nav {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.pagination .nav img {
    width: 24px;
}
.pagination .prev .nav img {
    transform: rotate(180deg);
}
.pagination .conter {
    font-size: 14px;
}


/**************
ФИЛЬТРЫ
***************/


/**************
СТРАНИЦА ТОВАРА
***************/
.product_bl {
    align-items: flex-start;
    margin-bottom: 60px
}
.product-gallery {
    width: 51%;
    width: 720px;
    margin-right: 16px;
    margin-bottom: 20px;
}
.product_slider {
    margin-bottom: 10px
}
.product_slider .swiper-slide {
    height: 800px;
/*    height: 43vw*/
}
.product_slider img {
    object-fit: cover;
    width:100%;
    height:100%;
}
.swiper-pagination-bullet-active {
    background: var(--col)
}
.product-info {
    width: 100%;
    padding: 0 32px;
}

.product-info-aten {
    font-size: 11px;
    text-transform: uppercase;
    padding: 6px 0;
    display: inline-block;
}

.product-name {
    padding: 12px 0;
    margin: 4px 0 12px;
    border-bottom: 1px solid #000;
}
.product-name .name {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 30;
    line-height: 22px
}
.product-name .country {
    font-size: 13px;
}
.product-desc {
    font-size: 14px;
}
.product-desc span {
    display: block;
    color: var(--sec);
    margin-top: 6px;
    font-weight: 300
}
.vol_list {
    padding: 60px 0;
    gap: 16px;
    flex-wrap: wrap;
}
.vol_item {
    padding: 5px 16px;
    border: 1px solid var(--col);
    line-height: 22px;
    font-weight: 300;
}
.vol_item.none {
    position: relative;
    background: rgba(120, 120, 128, 0.16);
    color: rgba(120, 120, 128, 0.6);
    border-color: rgba(120, 120, 128, 0.16)
}
.vol_item.none:after {
    content: '';
    background: #B5B5B9;
    width: 110%;
    height: 1px;
    position: absolute;
    left: -2px;
    top: 50%;
    transform: rotate(-19deg)
}

.price_row {
    margin-bottom: 20px
}
.product-info .card-price {
    font-size: 22px;
}
.add_to_wish {
    font-size: 15px;
}
.add_to_wish img {
    width: 22px;
    margin-right: 8px;
    opacity: .6
}

.info_bl {
    margin-top: 20px
}
.info-it {
    
    border-bottom: 1px solid #D9D9D9;
}
.info-it .head {
    cursor: pointer;
    align-items: center;
    padding: 16px 0;
}
.info-it .head p {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase
}
.info-it .head span {
    background: url(../img/icon/arr.svg) center/cover;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: background linear .1s;
}
.info-it .text {
    padding: 0px 0 16px;
    display: none;
    font-size: 13px;
    line-height: 18px;
}
.info-it .text p:not(:last-child) {
    margin-bottom: 15px;
}
.info-it.open .head span {
    transform: rotate(180deg);
    transform-origin: center center;
}
/**************
СТРАНИЦА ТОВАРА
***************/


/**************
КОРЗИНА\ЗАКАЗ
***************/
.overlay, .overlay_catalog {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    background: rgba(0, 0, 0, 0.2);
    display: none;
}
.cart_container {
    position: fixed;
    z-index: 99;
    right: 0;
    top: 0;
    background: #fff;
    height: 100vh;
    width: 600px;
    max-width: 100%;
    transform: translateX(100%);
    transition: all linear .2s;
    overflow-y: scroll;
}
.cart_container.open {
    filter: drop-shadow(-4px 4px 40px rgba(0, 0, 0, 0.15));
    transform: translateX(0%);
}
.cart_head {
/*    margin-bottom: 16px;*/
    padding: 12px 20px;
    border-bottom: 1px solid var(--sep);
}
.cart_head p {
    text-transform: uppercase;
}
.cart_close {
    cursor: pointer
}
.cart {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.order .cart {
    padding: 0;
    width: 48%;
    height: auto;
}
.cart_body {
/*    overflow-y: scroll;*/
/*    flex-grow: 1;*/
/*    flex-shrink: 1;*/
    padding: 0 20px;
}
.order .cart_body {
/*    max-height: 500px;*/
}
.cart_footer {
    flex-shrink: 0;
    padding: 0 20px;
    margin-bottom: 16px;
}
.cart-rows {
    align-items: stretch;
}
.card-info {
    align-items: stretch;
    width: 100%;
    border-bottom: 1px solid var(--sep);
    margin: 20px 0;
    padding-bottom: 20px
}
.card-info-img {
    width: 92px;
    height: 108px;
    flex-shrink: 0;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.card-info-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-info-text {
    width: 100%;
}
.card-info-text .card_name {
    font-size: 13px;
}
.card-info-text .card_desc {
    font-size: 11px;
    padding-right: 20%;
    margin-bottom: 8px
}
.card-info-text .card_volume {
    font-size: 12px;
    margin-bottom: 8px;
}
.cart_count {
    padding: 6px 8px;
    border: 1px solid var(--sep);
}
.cart_count-control {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.cart_count .minus {
    background: url(../img/icon/minus.svg) center/cover;
}
.cart_count .plus {
    background: url(../img/icon/plus.svg) center/cover;
}
.cart_count .counter {
    width: 20px;
    text-align: center;
    outline: none;
    font-size: 15px;
    border: none;
    background: none;
    padding: 0;
}

.cart-price {
    font-size: 13px;
    text-transform: uppercase;
}

.act_cart {
    gap: 8px
}

.cart-sum {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 26px;
}
.cart-sum p {
    margin-bottom: 8px
}
.promo_form {
    height: 40px;
    border: 1px solid var(--sep);
    margin-bottom: 16px;
}
.promo_form input {
    height: 100%;
    border: none;
    outline: none;
    width: 100%;
    padding-left: 12px;
    font-size: 14px;
}
.promo_form button {
    height: 100%;
    padding: 0 12px;
    background: none;
    text-decoration: underline;
    font-size: 13px;
}

.cart_pay {
    display: flex;
    justify-content: center;
    gap: 0 16px;
    margin: 16px 0;
}

.cart_prods {
    padding: 20px;
    flex-wrap: wrap;
    gap: 32px 16px;
    align-items: flex-start;
}
.cart_prods .card {
    width: calc(50% - 8px)
}
.cart_prods .card .card_img {
    height: 316px;
}
.cart_prods .card_price {
    font-size: 13px;
    font-weight: normal;
    margin: 16px 0 0;
}
/**************
КОРЗИНА\ЗАКАЗ
***************/

.catalog_baner1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 16px 0;
}
.catalog_baner1-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}
.catalog_baner1-text>div {
    height: 50%;
    display: flex;
    align-items: flex-end;
    font-size: 14px;
    line-height: 20px;
    padding-right: 10%
}
.catalog_baner1-text span {
    font-weight: 300;
}

.catalog_baner1-img {
    width: 50%;
}
.catalog_baner1-img img {
    width: 100%;
}

.catalog_baner2 {
    padding: 16px 0;
    position: relative;
}
.catalog_baner2>img {
    width: 100%;
}
.catalog_baner2 p {
    position: absolute;
    bottom: 50px;
    padding: 0 50px;
    font-size: 14px;
    line-height: 20px;
}
