* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --color-1---dark: #1e1e1e;
    --color-2-—-white: #fff;
    --color-3-—-gray: #646464;
    --color-4-—-light-gray: #e6e6e6;
    --color-5-—-light: #f9f9f9;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon {
    object-fit: contain;
    width: auto;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    text-transform: none;
    transition: all 200ms;
    cursor: pointer;
}

a:hover {
    opacity: 0.8;
}

body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.chat {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 40px;
    z-index: 3;
}

.chat img {
    transform: translateY(2px);
}

/* header */
header {
    width: 100%;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

.header__sale {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 25px;
    background: #000;
    color: #fff;
    font-weight: 500;
    font-size: 8px;
    text-transform: uppercase;
}

.header__content {
    width: 100%;
    height: 87px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1344px;
    margin: 0 auto;
    padding: 0 25px;
}

.header__content_part {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.header__logo {
    margin: 0 20px;
    width: 320px;
}

.header__logo img{
    width: 100%;
}

.header__content_part:nth-child(2) {
    justify-content: center;
}

.header__content_part:nth-child(3) {
    justify-content: flex-end;
}

.header__links_list {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__link {
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
footer {
    background: #fff;
    width: 100%;
}
.footer {
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, auto);
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 20px;
    justify-content: space-between;
    color: var(--color-3-—-gray);
}

.footer__part:first-child {
    min-width: 380px;
}

.footer__part:nth-child(5) {
    grid-column: 3/4;
}

.footer__part_title {
    font-weight: 500;
    font-size: 9px;
    line-height: 135%;
    letter-spacing: 0.03em;
}

.footer__part_content {
    margin-top: 10px;
}

.footer__maillist_text {
    font-weight: 400;
    font-size: 14px;
    line-height: 139%;
    letter-spacing: 0.04em;
    color: var(--color-3-—-gray);
    max-width: 390px;
}

.footer__maillist_form {
    width: 100%;
    margin-top: 20px;
    display: flex;
    position: relative;
}

.footer__maillist_input {
    width: 100%;
    height: 44px;
    font-size: 16px;
    font-family: inherit;
    color: inherit;
    border: none;
    border-bottom: 1px solid var(--color-4-—-light-gray);
}

.footer__maillist_input:focus {
    border: none;
    outline: none;
    border-bottom: 1px solid var(--color-4-—-light-gray);
}

.footer__maillist_btn {
    background: none;
    width: auto;
    height: auto;
    border: none;
    outline: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-align: center;
    color: var(--color-3-—-gray);
    cursor: pointer;
    transition: all 200ms;
    white-space: nowrap;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.footer__maillist_btn:hover {
    opacity: 0.8;
}

.footer__links_list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer__link {
    font-weight: 400;
    font-size: 9px;
    line-height: 139%;
    letter-spacing: 0.04em;
    color: var(--color-3-—-gray);
}

.footer__links_list.horizontal {
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.footer__text {
    font-weight: 400;
    font-size: 11px;
    line-height: 164%;
    letter-spacing: 0.04em;
    color: var(--color-3-—-gray);
}

.header__cs {
    position: fixed;
    top: 200px;
    background: var(--color-2-—-white);
    width: 661px;
    max-width: calc(100% - 20px);
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.header__cs_head {
    padding: 20px 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.02px solid #959595;
}

.header__cs_title {
    font-weight: 400;
    font-size: 15px;
    line-height: 159%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #000;
}

.header__cs_close {
    transition: all 200ms;
    cursor: pointer;
}

.header__cs_close:hover {
    opacity: 0.8;
}

.header__cs_selected {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.02px solid #959595;
}

.header__cs_selected_name_wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__cs_selected_name_icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__cs_selected_name_text {
    font-weight: 700;
    font-size: 15px;
    line-height: 159%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #000;
}

.header__cs_selected_currency {
    font-weight: 700;
    font-size: 15px;
    line-height: 159%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #000;
}

.header__cs_content {
    padding: 20px 25px;
}

.header__cs_variants {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header__cs_variant {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__cs_variant_name {
    font-weight: 400;
    font-size: 15px;
    line-height: 159%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #000;
}

.header__cs_variant_currency {
    font-weight: 400;
    font-size: 15px;
    line-height: 159%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #000;
}

.header__cs_other {
    width: 100%;
    margin-top: 30px;
}

.header__cs_other_title {
    font-weight: 700;
    font-size: 12px;
    line-height: 195%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000;
}

.header__cs_other_text {
    font-weight: 400;
    font-size: 12px;
    line-height: 195%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000;
    margin-top: 5px;
}

.header__menu_btn {
    display: none;
}

@media screen and (max-width: 1150px) {
    .footer {
        grid-template-columns: repeat(2, auto);
        gap: 30px;
        justify-content: start;
    }
    .footer__part:nth-child(5) {
        grid-column: auto;
    }
    .footer__part:first-child {
        grid-column: 1/3;
        min-width: none;
    }
}

@media screen and (max-width: 800px) {
    .header__content {
        flex-wrap: wrap;
        height: auto;
        padding: 20px;
        flex-direction: column;
        align-items: flex-end;
        justify-content: unset;
        gap: 27px;
    }
    .header__content_part:nth-child(1) {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        bottom: -20px;
        background: #fff;
        left: 10px;
        padding: 10px;
        width: fit-content;
        transition: all 200ms;
    }
    .header__content_part:nth-child(1) .header__links_list {
        gap: 25px;
    }
    .header__content_part:nth-child(1).active {
        opacity: 1;
        pointer-events: all;
    }
    .header__menu_btn {
        margin-right: auto;
        display: flex;
        align-items: center;
    }
    .header__content_part:nth-child(3) {
        align-items: center;
    }
    .footer__part:nth-child(4) .footer__links_list_item:last-child .footer__link {
        white-space: pre-wrap;
    }
}

@media screen and (max-width: 640px) {
    .footer {
        padding: 20px;
        grid-template-columns: repeat(1, auto);
    }
    .footer__part:nth-child(1) {
        min-width: auto;
        grid-column: auto;
    }
    .header__links_list {
        gap: 15px;
    }
    .chat {
        bottom: 20px;
        right: 20px;
    }
}

/* MainPage */

.banner {
    width: 100%;
    /* aspect-ratio: 19/10; */
    background: linear-gradient(180deg, #ebe8e1 0%, #e8e4d9 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
}

.banner__img{
    width: 100%;
    height: 100%;
}

.banner__img:nth-child(2) {
    padding-right: 10%;
}

.banner__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner__content {
    position: absolute;
    z-index: 2;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 244px;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.5) 0.19%, rgba(58, 58, 58, 0) 99.81%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 19px;
}

@media screen and (max-width:768px) {
    .banner__content svg{
        width: 35px;
    }        
}

.banner__content_title_wrapper {
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.banner__content_title_text {
    font-weight: 500;
    font-size: 35px;
    line-height: 120%;
    color: #fff;
}

.banner__content_title_line {
    width: 137px;
    height: 4px;
    background: #fff;
}

.banner__content_link {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #fff;
    text-decoration: underline;
}

/* products */
.products {
    width: 100%;
    padding: 150px 40px;
    overflow: hidden;
}

.products__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 135%;
    letter-spacing: 0.03em;
    color: var(--color-3-—-gray);
}

.products__slider {
    margin-top: 30px;
    width: 100%;
    height: 544px;
    position: relative;
    cursor: pointer;
}

.products__slider_wrapper {
    width: 100%;
    height: 100%;
    display: flex;
}

.products__slider_slide {
    width: 437px;
    height: 100%;
    flex-shrink: 0;
}

.swiper-scrollbar {
    bottom: -50px !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 4 !important;
}

.products__slider_navigation_btn {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background: var(--color-2-—-white);
    border: 1px solid var(--color-4-—-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 60%;
    right: 0;
    z-index: 2;
}

.collection_parallax {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: flex-end;
}

.collection_parallax__content {
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.5) 0.19%, rgba(58, 58, 58, 0) 99.81%);
    height: 244px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.collection_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 135%;
    letter-spacing: 0.03em;
}

.collection_text {
    font-weight: 400;
    font-size: 14px;
    line-height: 139%;
    letter-spacing: 0.04em;
    margin-top: 10px;
    max-width: 300px;
}

.collection_link {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: underline;
    margin-top: 30px;
    display: block;
}

.collection_photos {
    padding: 150px 40px;
    width: 100%;
}

.collection_photos__title {
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: 0.03em;
    color: var(--color-1---dark);
}

.collection_photos__content {
    margin-top: 15px;
    display: flex;
    gap: 40px;
    justify-content: space-around;
    align-items: flex-end;
    height: calc(798px + 120px);
}

.collection_photos__left {
    width: 592px;
    height: 798px;
}

.collection_photos__right {
    height: 100%;
    width: 100%;
    max-width: 60%;
    display: flex;
    justify-content: space-between;
    align-self: flex-start;
}

.collection_photos__right_text {
    color: var(--color-3-—-gray);
    margin-top: auto;
}

.collection_photos__right_image {
    width: 592px;
    height: 798px;
    align-self: flex-start;
    margin-top: -50px;
}

.collection_split__title {
    font-weight: 500;
    font-size: 31px;
    line-height: 154%;
    letter-spacing: 0.02em;
    color: var(--color-1---dark);
    padding: 0 40px;
}

.collection_split {
    padding-bottom: 60px;
}

.collection_split__content {
    margin-top: 30px;
    width: 100%;
    display: flex;
    height: 892px;
}

.collection_split__part {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    background: url("https://skryptonite.shop/wp-content/uploads/2024/11/collection-split-1.webp") 100% 100% no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}
.collection_split__part:last-child {
    background-image: url("https://skryptonite.shop/wp-content/uploads/2024/11/collection-split-2.webp");
}

.collection_photos__text_mobile {
    display: none;
}

body,
html {
    position: absolute;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
    top: 0;
    left: 0;
    min-height: 100%;
}

.collection_parallax__bg {
    aspect-ratio: 16/9;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: -1;
    background-image: url("./img/parallax-bg.png");
    background-size: cover;
    background-position: center;
}

.products,
.collection_photos,
.collection_split {
    background: #fff;
}

@media screen and (max-width: 1200px) {
    .collection_photos__content {
        gap: 30px;
    }
    .collection_photos__left {
        width: calc(50% - 15px);
    }
    .collection_photos__right {
        width: calc(50% - 15px);
        flex-direction: column-reverse;
    }
    .collection_photos__right_image {
        width: 100%;
    }
    .banner__content {
        height: 180px;
    }
}

@media screen and (max-width: 980px) {
    .banner {
        aspect-ratio: 19/10;
    }
    .collection_photos__right_image {
        margin-top: 0;
    }
    .collection_photos__right {
        gap: 40px;
    }
    .collection_photos__left {
        height: 100%;
    }
    .collection_photos__right_image {
        height: calc(100% - 122px - 40px);
    }
    .collection_photos__content {
        height: 600px;
    }
    .collection_split__content {
        height: 600px;
    }
    .collection_parallax {
        aspect-ratio: 15/10;
    }
}

@media screen and (max-width: 768px) {
    .banner {
        aspect-ratio: 19/10;
    }
    .banner__img:nth-child(2) {
        padding-right: 2%;
    }
    .banner__content_title_text {
        font-size: 25px;
        line-height: 120%;
        letter-spacing: 0.02em;
    }
    .banner__content_title_line {
        width: 76px;
        height: 2px;
    }
    .products {
        padding: 40px 20px 120px;
    }
    .products__slider {
        height: 354px;
    }
    .products__slider_slide {
        width: 285px;
    }
    .collection_parallax__content {
        padding: 0 20px;
        height: 148px;
    }
    .collection_title {
        font-weight: 500;
        font-size: 18px;
        line-height: 120%;
        letter-spacing: 0.03em;
    }
    .collection_text {
        font-weight: 400;
        font-size: 12px;
        line-height: 120%;
        letter-spacing: 0.04em;
    }
    .collection_link {
        font-weight: 500;
        font-size: 14px;
        line-height: 120%;
        letter-spacing: 0.07em;
        margin-top: 20px;
    }
    .collection_photos {
        padding: 60px 20px;
    }
    .collection_photos__title,
    .collection_split__title {
        font-weight: 500;
        font-size: 25px;
        line-height: 120%;
        letter-spacing: 0.04em;
    }
    .collection_split__title {
        padding: 0 20px;
    }
    .collection_split {
        padding-bottom: 60px;
    }
    .collection_split__content {
        height: 384px;
    }
    .collection_split__part {
        padding: 20px;
    }
}

@media screen and (max-width: 640px) {
    .banner {
        aspect-ratio: 16/8;
    }
    .banner__img {
        display: flex;
        align-items: flex-end;
    }
    .banner__img img {
        /* object-fit: cover; */
        height: auto;
    }
    .banner__img:nth-child(2) {
        padding: 0;
    }
    .banner__content {
        height: 80px;
        gap: 20px;
        align-items: center;
        justify-content: start;
    }
    .banner__content_title_text {
        font-size: 20px;
        line-height: 120%;
        letter-spacing: 0.03em;
    }
    .banner__content_link {
        font-size: 12px;
        line-height: 120%;
        letter-spacing: 0.08em;
    }
    .products {
        padding: 20px 10px 75px;
    }
    .products__slider {
        height: 200px;
        margin-top: 14px;
    }
    .products__slider_slide {
        width: 160px;
    }
    .swiper-scrollbar {
        bottom: -25px !important;
    }
    .products__slider_navigation_btn {
        display: none;
    }
    .collection_photos__slide {
        width: 100%;
        flex-shrink: 0;
        max-width: none;
    }
    .collection_photos__content {
        width: 100%;
        gap: 0;
        justify-content: unset;
        height: 320px;
        margin-top: 20px;
    }
    .collection_photos {
        overflow: hidden;
        padding: 80px 0 50px;
    }
    .collection_photos__right_image {
        height: 100%;
    }
    .collection_photos__right_text {
        display: none;
    }
    .collection_photos__title,
    .collection_split__title {
        padding: 0 10px;
    }
    .collection_photos__text_mobile {
        display: block;
        color: var(--color-3-—-gray);
        margin-top: 25px;
        padding: 0 10px;
    }
    .collection_photos__slider_pagination {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
    .collection_photos__slider_pagination .swiper-pagination-bullet {
        border-radius: 12px;
        width: 101px;
        height: 2px;
        background: var(--color-4-—-light-gray);
    }
    .collection_photos__slider_pagination .swiper-pagination-bullet {
        background: #808080;
    }
    .collection_split__content {
        height: auto;
        flex-direction: column;
    }
    .collection_split__part {
        width: 100%;
        aspect-ratio: 3/4;
        height: auto;
        padding: 20px 10px;
    }

    .woocommerce div.product div.images.woocommerce-product-gallery{
        /* padding-bottom: 90px; */
    }
}

@media screen and (max-width: 500px) {
    .banner {
        aspect-ratio: 17 / 9;
        padding-top: 0;
    }
}

/* ProductCard */

.product_card {
    width: 100%;
    height: 100%;
    transition: all 200ms;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}
.product_card:hover {
    opacity: 0.8;
}

.product_card__text {
    font-weight: 500;
    color: var(--color-3-—-gray);
}

.product_card__body {
    width: 100%;
    height: 100%;
    background: #f9f9f9;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product_card__body_tags {
    display: flex;
    gap: 10px;
}

.product_card_tag {
    border-radius: 2px;
    padding: 5px 8px;
    white-space: nowrap;
    font-size: 10px;
    line-height: 135%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--color-2-—-white);
}

.product_card__body_image {
    width: 100%;
    height: calc(100% - 120px);
}

.product_card__body_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product_card__title,
.product_card__price {
    font-size: 14px;
    line-height: 118%;
    letter-spacing: 0.04em;
}

.product_card__extra {
    width: 100%;
    padding: 15px 20px 30px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 300ms;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 10px;
}

.product_card__extra_sizes {
    display: flex;
    gap: 20px;
}

.product_card:hover .product_card__extra {
    opacity: 1;
    pointer-events: all;
}

.product_card__size {
    font-weight: 400;
    font-size: 12px;
    line-height: 159%;
    letter-spacing: 0.04em;
    color: var(--color-3-—-gray);
    text-transform: uppercase;
}

.product_card__extra_cart {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    font-size: 11px;
    line-height: 159%;
    letter-spacing: 0.04em;
    color: var(--color-3-—-gray);
    text-transform: uppercase;
}

.product_card__extra_cart svg {
    margin-top: -2px;
}

@media screen and (max-width: 768px) {
    .product_card__body {
        gap: 10px;
    }
    .product_card__body_image {
        height: calc(100% - 80px);
    }
    .product_card__extra {
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 640px) {
    .product_card__body {
        gap: 12px;
        padding: 5px;
    }
    .product_card__body_image {
        height: calc(100% - 80px);
    }
    .product_card__body_text {
        width: 100%;
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
    }
    .product_card__title,
    .product_card__price {
        font-weight: 500;
        font-size: 10px;
        line-height: 140%;
        letter-spacing: 0.03em;
    }
    .product_card__extra {
        padding: 10px 5px;
        row-gap: 5px;
    }
    .product_card__extra_sizes {
        gap: 10px;
    }
    .product_card__size {
        font-size: 8px;
    }
    .product_card__extra_cart {
        font-size: 8px;
    }
    .product_card__extra_cart svg {
        width: 10px;
        height: 10px;
    }
}

/* Product */

.product {
    padding: 116px 40px 150px 40px;
    display: flex;
    gap: 30px;
    width: 100%;
}

article.product{
    padding: 0;
    display: flex;
    gap: 0;
}

.images {
    width: 50% !important;
}

.images__item {
    width: 100%;
    height: auto;
}

.info {
    width: calc(50% - 30px);
    height: fit-content;
    position: sticky;
    top: 126px;
    max-height: calc(100vh - 130px);
    overflow: auto;
    scrollbar-width: none;
}

.info::-webkit-scrollbar {
    width: none;
}

.favourite {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.favourite__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-4-—-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms;
    cursor: pointer;
}

.favourite__btn:hover {
    opacity: 0.8;
}

.title_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title_name {
    font-weight: 500;
    font-size: 20px;
    line-height: 135%;
    letter-spacing: 0.03em;
    color: var(--color-1---dark);
}
.title_price {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--color-1---dark);
}
.description {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 139%;
    letter-spacing: 0.04em;
    color: var(--color-1---dark);
    margin-bottom: 20px;
}

.description__list {
    padding-left: 10px;
}

.description__list_item {
    position: relative;
}

.description__list_item::before {
    content: "-";
    position: absolute;
    top: 0%;
    left: -10px;
}

.select_group {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.select__title {
    font-weight: 700;
    font-size: 15px;
    line-height: 166%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-1---dark);
    margin-bottom: 5px;
}

.select__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 149%;
    letter-spacing: 0.07em;
    color: var(--color-1---dark);
    margin-top: 5px;
}

.select__content {
    margin-top: 11px;
}

.colors {
    display: flex;
    gap: 10px;
}

.color {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 200ms;
    cursor: pointer;
}

.color:hover {
    opacity: 0.8;
}

.color__img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--color-3-—-gray);
}

.color__name {
    font-weight: 400;
    font-size: 14px;
    line-height: 139%;
    letter-spacing: 0.04em;
    color: var(--color-1---dark);
}

.sizes {
    display: flex;
    gap: 15px;
}

.size {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 118%;
    letter-spacing: 0.04em;
    color: var(--color-3-—-gray);
    width: fit-content;
    height: 18px;
    padding: 1px 5px;
    transition: all 200ms;
    cursor: pointer;
}
.size:hover {
    opacity: 0.8;
}
.size.active {
    border-radius: 4px;
    background: var(--color-4-—-light-gray);
}

.add_to_cart_btn {
    border: 1px solid var(--color-1---dark) !important;
    height: 58px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 40px !important;
    transition: all 200ms !important;
    cursor: pointer !important;
    background: none !important;
    border-radius: 0 !important;
}

.add_to_cart_btn:hover {
    opacity: 0.8 !important;
}

.add_to_cart_btn__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 98%;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-1---dark);
}

.links {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.links__item:hover {
    gap: 15px;
}

.links__item_text {
    font-weight: 500;
    font-size: 20px;
    line-height: 135%;
    letter-spacing: 0.03em;
    color: var(--color-1---dark);
}

.images__main {
    display: none;
}

@media screen and (max-width: 800px) {
    .product {
        padding: 135px 0 60px;
        gap: 22px;
        flex-direction: column;
        padding-top: 0;
    }
    .info {
        width: 100%;
        padding: 0 20px;
        max-height: none;
    }
    .favourite {
        position: absolute;
        right: 20px;
        top: 155px;
    }
    .title_wrapper {
        margin-top: 0;
    }
    .images__main {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 550px;
        background: #eeeeee;
    }
    .images__main img {
        width: auto;
        max-width: 260px;
        object-fit: contain;
    }
    .images {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 6px;
    }
    .images__item {
        width: 76px;
        height: 69px;
        transform: translateY(-111px);
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .images__item img {
        width: auto;
        object-fit: contain;
    }
    .images__item.active {
        border: 1px solid #1e1e1e;
    }
    .title_name {
        font-size: 18px;
        line-height: 120%;
    }
    .title_price {
        font-size: 12px;
        line-height: 120%;
    }
    .description {
        font-size: 12px;
        line-height: 120%;
    }
    .select__text {
        font-size: 12px;
        line-height: 120%;
    }
    .links {
        margin-top: 30px;
        gap: 15px;
    }
    .links__item_text {
        font-size: 18px;
        line-height: 120%;
    }
}

@media screen and (max-width: 640px) {
    .info {
        padding: 0 10px;
    }
    .images__main {
        height: 400px;
    }
}

/* Privacy */

.content {
    padding: calc(30px + 64px) 40px 60px 40px;
}

.title {
    font-weight: 600;
    font-size: 23px;
    line-height: 150%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 40px;
}

.paragraph + .paragraph {
    margin-top: 64px;
}

.paragraph p + p {
    margin-top: 40px;
}

.paragraph p {
    font-weight: 400;
    font-size: 15px;
    line-height: 162%;
    color: #000;
}

.paragraph_title {
    font-weight: 600;
    font-size: 23px;
    line-height: 150%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 30px;
}

.download_link {
    font-weight: 700;
    font-size: 23px;
    line-height: 140%;
    letter-spacing: 0.06em;
    color: #000;
    margin-top: 100px;
    display: block;
}

.title {
    margin-top: 170px;
}

.title:first-child {
    margin-top: 0;
}

.form {
    width: 968px;
    max-width: 100%;
    margin: 100px auto 0;
}

.form_title {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000;
}

.form_input_wrapper {
    margin-top: 30px;
    width: 100%;
    position: relative;
}

.form_input {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1.61px solid #000;
    font-family: inherit;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.06em;
    border-radius: 0;
    padding-right: 96px;
}

.form_input:focus {
    border: none;
    outline: none;
    border-bottom: 1.61px solid #000;
}

.form_btn {
    background: none;
    border: none;
    position: absolute;
    right: 0;
    top: 10%;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #000;
}

.form_condition {
    width: 100%;
    margin-top: 30px;
    display: flex;
    gap: 12px;
}

.form_condition_mark {
    border: 1.61px solid #000;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

@media screen and (max-width: 980px) {
    .content {
        padding: calc(30px + 44px) 20px 100px 20px;
    }
    .download_link {
        margin-top: 30px;
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .paragraph p {
        font-size: 15px;
    }
    .title {
        margin-top: 50px;
        margin-bottom: 30px;
    }
    .form_btn {
        font-size: 14px;
    }
    .form_input {
        padding-right: 85px;
    }
    .form_condition_mark {
        width: 25px;
        height: 25px;
    }
}

/* Catalog */

.intro {
    height: calc(426px + 116px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-1---dark);
    padding: 116px 24px 0;
    position: relative;
}

.intro__content {
    position: absolute;
    left: 40px;
    bottom: 40px;
}

.intro__content_title {
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: 0.03em;
    color: var(--color-2-—-white);
}

.intro__content_text {
    font-weight: 400;
    font-size: 14px;
    line-height: 139%;
    letter-spacing: 0.04em;
    color: var(--color-2-—-white);
    margin-top: 8px;
}

.catalog {
    width: 100%;
    padding: 76px 40px 150px;
    background: #f7f6f4;
}

.catalog__item {
    width: 100%;
}

.catalog__item + .catalog__item {
    margin-top: 150px;
}

.catalog__title {
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: 0.03em;
    color: var(--color-1---dark);
}

.catalog__content {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.catalog__item:nth-child(2n + 1) .catalog__item_image {
    grid-row: 2 / 3;
    grid-column: 2 / 5;
}

.catalog__item:nth-child(2n) .catalog__item_image {
    grid-row: 1 / 4;
    grid-column: 1/3;
}

.wc-empty-cart-message{
    display: none !important;
}

/* Для категории "Безмятежность" */
.catalog__item[id="безмятежность"] .catalog__content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.catalog__item[id="безмятежность"] .catalog__products {
    flex: 1;
    display: flex;
    flex-direction: column;
    order: 1; /* Порядок отображения */
}

.catalog__item[id="безмятежность"] .catalog__item_image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    order: 2; /* Порядок отображения */
}

.catalog__item[id="безмятежность"] .catalog__item_image img {
    max-width: 100%;
    height: auto;
}

/* Общие стили для товаров */
.catalog__products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.catalog__item:nth-child(2n + 1) .catalog__item_image {
    grid-row: 2 / 3;
    grid-column: 2 / 5;
}

.catalog__item:nth-child(2n) .catalog__item_image {
    grid-row: 1 / 4;
    grid-column: 1/3;
}

/* Для мобильных устройств */
@media screen and (max-width: 980px) {
    .catalog__item[id="безмятежность"] .catalog__content {
        flex-direction: column;
    }
    .catalog__item[id="безмятежность"] .catalog__products {
        order: 2;
    }
    .catalog__item[id="безмятежность"] .catalog__item_image {
        order: 1;
    }
}

@media screen and (max-width: 980px) {
    .catalog__content {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .catalog__item:nth-child(2n + 1) .catalog__item_image {
        grid-row: 2/4;
        grid-column: 2/4;
    }
    .catalog__item:nth-child(2n) .catalog__item_image {
        grid-row: 1/3;
        grid-column: 1/3;
    }
    .catalog__item + .catalog__item {
        margin-top: 100px;
    }
}

@media screen and (max-width: 768px) {
    .catalog__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .catalog__item:nth-child(2n + 1) .catalog__item_image {
        grid-row: 2/3;
        grid-column: 2/3;
    }
    .catalog__item:nth-child(2n) .catalog__item_image {
        grid-row: 1/2;
        grid-column: 1/2;
    }
    .intro {
        height: calc(247px + 135px);
        padding-top: 135px;
    }
    .intro__content_title {
        font-weight: 500;
        font-size: 25px;
        line-height: 120%;
    }
    .intro__content_text {
        font-weight: 400;
        font-size: 12px;
        line-height: 120%;
    }
    .intro__image {
        transform: translateY(-30px);
    }
    .catalog {
        padding: 30px 20px 60px;
    }
    .catalog__item + .catalog__item {
        margin-top: 80px;
    }
}

@media screen and (max-width: 640px) {
    .intro {
        padding: 135px 10px 0;
    }
    .intro__content {
        left: 10px;
    }
    .catalog {
        padding: 30px 10px 50px;
    }
    .catalog__content {
        gap: 10px;
    }
    .catalog__item + .catalog__item {
        margin-top: 60px;
    }
}

/* custom-css */

.entry-footer{
    display: none;
}

.variations tr{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.variations tr{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.radio-select ul{
    display: flex;
}

.radio-select ul input{
    appearance: none;
}

.radio-select ul label{
    margin-left: 0 !important;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 118%;
    letter-spacing: 0.04em;
    color: #646464;
    width: fit-content;
    height: 18px;
    cursor: pointer;
    padding: 1px 5px;
    transition: all 200ms ease 0s;
}  

.radio-select ul input[type="radio"]:checked + label{
    border-radius: 4px;
    background: #e6e6e6;
}

div.swatch-wrapper.selected{
    border: 2px solid #646464;
    padding: 0;
}

.swatch-wrapper{
    border-radius: 50%;
    border: 0px solid #ccc;
}

.swatch-wrapper a{
    border-radius: 50%;
}

.woocommerce div.product form.cart .reset_variations{
    display: none !important;
}

.woocommerce-variation-add-to-cart .quantity{
    display: none !important;
}

.entry-content{
    width: 100% !important;
}

.flex-viewport{
    height: auto !important;
    overflow: inherit !important;
}

figure.woocommerce-product-gallery__wrapper{
    display: flex !important;
    flex-direction: column !important;
}

.flex-control-thumbs{
    display: none !important;
}

.woocommerce-breadcrumb{
    display: none !important;
}

.woocommerce-notices-wrapper{
    display: none !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2){
    /* width: auto !important; */
}

.cart__wrapper{
    display: flex;
    padding: 116px 24px 0;
}

.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals{
    width: 50%;
}

.woocommerce-cart-form{
    width: 50%;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{
    width: 100%;
    position: sticky;
    top: 116px;
}

.product-thumbnail{
    width: 230px;
    padding: 0 !important;
    display: flex;
}

.product-thumbnail a{
    width: 100% !important;
    display: flex !important;
}

.product-thumbnail a img{
    width: 100% !important;
    height: auto !important;
}

.woocommerce button[name="update_cart"],
.woocommerce input[name="update_cart"] {
	display: none;
}

.product-name a{
    font-weight: 700;
    font-size: 16px;
    line-height: 113%;
    letter-spacing: 0.05em;
    color: #000;
}

.woocs_special_price_code{
    font-weight: 400;
    font-size: 16px;
    line-height: 113%;
    letter-spacing: 0.05em;
    color: #000;
    margin-top: 25px;
}

.attr__wrap{
    font-weight: 400;
    font-size: 16px;
    line-height: 113%;
    letter-spacing: 0.05em;
    color: #000;
    margin-top: 5px;
}

.product-name{
    height: 100%;
    padding: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.product-name_wrapper{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart__action_wrapper{
    margin-top: auto;
    display: flex;
    align-items: center;
}

body .qib-button-wrapper{
    border: 1px solid var(--color-1---dark);
    padding: 10px 15px;
    width: 122px;
    height: 40px;
    margin: 0;
    margin-right: 20px !important;
}

.qib-button-wrapper button.qib-button{
    padding: 0 !important;
    background: none !important;
    border: none !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 139% !important;
    letter-spacing: 0.04em !important;
    color: var(--color-3-—-gray) !important;
}

.qib-button-wrapper .quantity input.input-text.qty.text{
    border: none !important;
    height: 26px !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    letter-spacing: 0.04em !important;
    color: var(--color-1---dark) !important;
}

.qib-button-wrapper button.qib-button, .qib-button-wrapper div.quantity.wqpmb_quantity{
    height: 25px !important;
}

.woocommerce a.remove{
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 139% !important;
    letter-spacing: 0.04em !important;
    color: var(--color-1---dark) !important;
    display: flex;
    align-items: center;
    width: auto !important;
    height: auto !important;
}

.woocommerce a.remove img{
    width: 24px;
    height: 26px;
    margin-right: 5px;
}

.woocommerce a.remove:hover{
    color: var(--color-1---dark) !important;
    background: none !important;
}

.woocommerce table.shop_table{
    border: 0;
}

.cart_totals td, .cart_totals th{
    padding: 0 !important;
}

.cart_totals{
    padding: 30px 26px;
    border: 1px solid var(--color-1---dark) !important;
}

.cart_totals .coupon form{
    display: flex;
}

.cart_totals .coupon form button{
    width: 150px;
    height: 50px;
    border: 1px solid var(--color-1---dark) !important; 
    background: none !important;
    border-radius: 0 !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 98% !important;
    text-transform: uppercase !important;
    text-align: center !important;
    color: var(--color-1---dark) !important;
    flex-shrink: 0;
    margin-left: 20px;
} 

.cart_totals .coupon form input{
    border: 1px solid var(--color-1---dark) !important;
    padding: 15px !important;
    width: 100% !important;
    height: 50px !important;
    border-radius: 0 !important;
}

.cart_totals tbody{
    display: flex;
    flex-direction: column;
}

.cart_totals tbody tr{
    width: 100%;
    display: flex;
}

.cart_totals tbody .coupon_wrapper{
    width: 100%;
}

.cart_totals .cart-subtotal th, .cart_totals .cart-subtotal td{
    width: 50% !important;
    border: none !important;
}

.cart_totals .cart-subtotal{
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-4-—-light-gray) !important;
    width: calc(100% - 145px);
    
}

.cart_totals .cart-subtotal th{
    font-weight: 400 !important;
    font-size: 14px !important;
    letter-spacing: 0.04em !important;
    color: var(--color-1---dark) !important;
}

.cart_totals .cart-subtotal td .woocs_special_price_code{
    font-weight: 400 !important;
    font-size: 14px !important;
    letter-spacing: 0.04em !important;
    color: var(--color-1---dark) !important;
    text-align: right;
}

.cart_totals .cart-subtotal td{
    text-align: right;
}

.cart_totals .cart-discount th, .cart_totals .cart-discount td{
    width: 50% !important;
    border: none !important;
}

.cart_totals .cart-discount{
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-4-—-light-gray) !important;
    width: calc(100% - 145px);
    
}

.cart_totals .cart-discount th{
    font-weight: 400 !important;
    font-size: 14px !important;
    letter-spacing: 0.04em !important;
    color: var(--color-1---dark) !important;
}

.cart_totals .cart-discount td{
    font-weight: 400 !important;
    font-size: 14px !important;
    letter-spacing: 0.04em !important;
    color: var(--color-1---dark) !important;
    text-align: right !important;
}

.cart_totals .order-total{
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: none !important;
    width: calc(100% - 145px);
    
}

.cart_totals .order-total th{
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 166% !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
    color: var(--color-1---dark) !important;
    border: none !important;
}

.cart_totals .order-total td .woocs_special_price_code{
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 166% !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
    color: var(--color-1---dark) !important;
    border: none !important;
}

.cart_totals .order-total td{
    text-align: right !important;
}

.cart_totals .order-total th, .cart_totals .order-total td{
    width: 50% !important;
    border: none !important;
}

.cart_totals .checkout-button{
    background: var(--color-1---dark) !important;
    border: 1px solid var(--color-1---dark) !important;
    height: 58px !important;
    border-radius: 0 !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 98% !important;
    text-transform: uppercase !important;
    text-align: center !important;
    color: var(--color-2-—-white) !important;
    margin-bottom: 0 !important;
}

.cart_totals .wc-proceed-to-checkout{
    padding: 0 !important;
}

.product .qib-button-wrapper{
    display: none !important;
}

.woocommerce table.shop_table td{
    border:  none !important;
}

.woocommerce-cart-form__cart-item{
    margin-bottom: 30px;
    display: flex;
    max-height: 232px;
    height: 232px;
}

.woocommerce-cart-form__contents tbody{
    gap: 20px;
}

.woocommerce-cart-form__contents tbody{
    display: flex;
    flex-direction: column;
}

.checkout.woocommerce-checkout{
    display: flex;
    padding-left: 40px;
    padding-right: 40px;
    gap: 30px;
}

.checkout.woocommerce-checkout .col2-set{
    display: flex;
    flex-direction: column;
    width: 50%;
}

.checkout.woocommerce-checkout .col2-set .col-1{
    height: 100%;
}

.woocommerce-checkout-review-order{
    width: 50%;
}

.woocommerce-input-wrapper input{
    border: 1px solid var(--color-1---dark);
    padding: 15px;
    width: 100%;
    height: 50px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 139%;
    letter-spacing: 0.04em;
    color: #000;
}

.select2-container--default .select2-selection--single{
    border: 1px solid var(--color-1---dark) !important;
    padding: 15px !important;
    width: 100% !important;
    height: 50px !important;
    border-radius: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 139%;
    letter-spacing: 0.04em;
    color: #000;
    padding: 0 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected]{
    background-color: #1e1e1e !important;
}

/*.select2-container.select2-container--default.select2-container--open{*/
/*    top: 380px !important;*/
/*}*/

.select2.select2-container.select2-container--default.select2-container--open{
    top: inherit !important;
}

.select2-selection__arrow{
    display: none !important;
}

.woocommerce-input-wrapper input::placeholder{
    color: var(--color-3-—-gray);
}

.woocommerce-billing-fields__field-wrapper, .woocommerce-billing-fields, .form-row{
    width: 100%;
}

.checkout.woocommerce-checkout .col2-set .col-1{
    width: 100%;
}

.woocommerce-additional-fields{
    display: none !important;
}

.product__checkout_img{
    width: 232px;
    height: 236px;
    margin-right: 20px;
}

.product__checkout_img img{
    width: 100%;
    height: 100%;
}

.product-name{
    display: flex;
    font-family: var(--font-family);
}

.product__checkout_name{
    font-weight: 700;
    font-size: 15px;
    line-height: 166%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-1---dark);
    margin-right: auto;
}

.tbody .cart_item{
    display: flex;
    justify-content: space-between;
}

.woocs_special_price_code{
    margin-top: 0 !important;
    font-family: var(--font-family) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 166% !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
    color: var(--color-1---dark) !important;
}

.woocommerce-checkout .variation{
    display: none;
}

.woocommerce form .form-row label, .woocommerce-page form .form-row label{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 164%;
    letter-spacing: 0.07em;
    color: var(--color-1---dark);
    margin-bottom: 5px;
}

.woocommerce form .form-row .required{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 164%;
    letter-spacing: 0.07em;
    color: var(--color-1---dark);
}

.woocommerce-checkout .cart_item{
    border-bottom: 1px solid var(--color-4-—-light-gray);
    padding-bottom: 24px;
    padding-top: 16px;
}

.woocommerce-checkout .cart_item:last-child{
    border-bottom: none;
}

.checkout.woocommerce-checkout{
    padding-top: 60px;
    position: relative;
}

.woocommerce-billing-fields{
    position: sticky;
    top: 157px;
}

.wc_payment_methods{
    display: none;
}

.woocommerce-privacy-policy-text{
    display: none !important;
}

.woocommerce form.checkout_coupon{
    border: none;
    padding: 0;
    margin: 0;
}

.woocommerce-checkout #payment{
    background: none;
}

.tfoot{
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-1---dark);
    padding: 40px 26px;
}

.checkout_coupon input{
    width: 100% !important;
    height: 50px;
    padding-left: 15px;
    border: 1px solid var(--color-1---dark);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 139%;
    letter-spacing: 0.04em;
    color: var(--color-3-—-gray);
}

.checkout_coupon{
    display: flex !important;
}

.checkout_coupon .form-row-first{
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.checkout_coupon .form-row-last{
    min-width: 125px !important;
    max-width: 150px;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0;
    margin-left: 20px !important;
}

.checkout_coupon .form-row-last button{
    border: 1px solid var(--color-1---dark);
    width: 100%;
    height: 50px;
    border-radius: 0 !important;
    background: none !important;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 98%;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-1---dark);
}

.tfoot .cart-subtotal {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-4-—-light-gray) !important;
    width: calc(100% - 145px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 139%;
    letter-spacing: 0.04em;
    color: var(--color-1---dark);
    margin-bottom: 20px;
}

.tfoot .cart-subtotal .woocs_special_price_code{
    font-family: var(--font-family) !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 139% !important;
    letter-spacing: 0.04em !important;
    color: var(--color-1---dark) !important;
}

.tfoot .cart-discount {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-4-—-light-gray) !important;
    width: calc(100% - 145px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tfoot .cart-discount .woocommerce-Price-amount{
    margin-left: auto;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 139%;
    letter-spacing: 0.04em;
    color: var(--color-1---dark);
}

.tfoot .cart-discount .woocommerce-remove-coupon{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 139%;
    letter-spacing: 0.04em;
    color: var(--color-1---dark);
    margin-left: 5px;
}

.tfoot .order-total{
    padding-top: 15px;
    width: calc(100% - 145px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family);
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 166% !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
    color: var(--color-1---dark) !important;
}

.tfoot .order-total .woocs_special_price_code{
    font-family: var(--font-family) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 166% !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
    color: var(--color-1---dark) !important;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order{
    background: var(--color-1---dark);
    border: 1px solid var(--color-1---dark);
    width: 100%;
    font-family: var(--font-family) !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 98% !important;
    text-transform: uppercase !important;
    text-align: center !important;
    color: var(--color-2-—-white) !important;
    border-radius: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    transition: 0.3s;
}

.woocommerce #payment #place_order:hover{
    opacity: 0.8;
    transition: 0.3s;
}

.woocommerce-checkout #payment div.form-row{
    padding: 0 !important;
    margin-top: 30px;
}

.woocs-style-3-du-dialog.woocs-style-3-dlg--open{
    background-image: url(../scrip/img/currency.png);
    background-position: center;
    background-size: cover;
}

.woocs-style-1-dropdown .woocs-style-1-select{
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.woocs-style-1-dropdown{
    box-shadow: none !important;
}

.woocs-style-1-dropdown.woocs-style-1-active:hover, .woocs-style-1-dropdown.woocs-style-1-active {
    box-shadow: 0 0 4px rgb(204, 204, 204) !important;
}

.woocs-style-1-dropdown.woocs-style-1-active .woocs-style-1-select > i {
    transform: rotate(-180deg) !important;    
}

.header__links_item .woocs-style-1-dropdown .woocs-style-1-select > i{
    line-height: 2px !important;
}

.mobile__media_main{
    display: none;
}

.catalog__item_image img{
    height: 100% !important;
}


@media(max-width:1064px){
    .cart__wrapper{
        flex-direction: column;
    }

    .woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals{
        width: 100%;
    }

    .woocommerce-cart-form{
        width: 100%;
    }

    .woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before{
        content: none !important;
    }

    .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr{
        display: flex !important;
        margin-bottom: 0 !important;
    }

    .woocommerce #content table.cart .product-thumbnail, .woocommerce table.cart .product-thumbnail, .woocommerce-page #content table.cart .product-thumbnail, .woocommerce-page table.cart .product-thumbnail{
        display: block !important;
    }

    .product-thumbnail{
        height: 234px;
    }

    .woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td{
        background: none !important;
    }

    .woocommerce table.shop_table_responsive tbody th, .woocommerce-page table.shop_table_responsive tbody th{
        display: block;
    }

    .cart__wrapper{
        padding: 160px 10px 0;
    }

    .woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td{
        text-align: left !important;
    }
}

@media(max-width:550px){
    .product-thumbnail{
        width: 177px !important;
        height: 177px !important;
    }

    .product-name a{
        font-size: 14px;
    }

    .woocommerce-cart-form__cart-item{
        height: 177px;
        max-height: 177px;
    }

    .woocs_special_price_code{
        font-size: 14px !important;
    }

    .attr__wrap{
        font-size: 12px !important;
    }

    body .qib-button-wrapper{
        width: 88px;
        height: 30px;
    }

    .qib-button-wrapper .quantity input.input-text.qty.text{
        font-size: 12px !important;
    }

    .woocommerce a.remove span{
        display: none !important;
    }
    
    .woocommerce a.remove img {
        width: 18px;
        height: 20px;
        margin-right: 5px;
    }

    .cart_totals .coupon form{
        flex-direction: column;
    }

    .cart_totals .coupon form button{
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
        height: 40px;
        font-size: 14px !important;
    }

    .cart_totals .cart-subtotal{
        width: 100% !important;
    }

    .cart_totals .order-total{
        width: 100% !important;
    }

    .cart_totals .cart-discount{
        width: 100% !important;
    }

    .woocommerce table.shop_table_responsive .cart-subtotal td, .woocommerce-page table.shop_table_responsive .order-total td, .woocommerce table.shop_table_responsive .cart-discount td{
        text-align: right !important;
    }

    .cart_totals .checkout-button{
        font-size: 14px !important;
        height: 40px !important;
        line-height: 85% !important;
    }

    .cart_totals{
        padding: 30px 10px !important;
    }

    body .qib-button-wrapper{
        margin-right: 15px !important;
    }
}

.entry-header{
    display: none !important;
}

@media(max-width:870px){
    .checkout.woocommerce-checkout{
        padding-left: 10px;
        padding-right: 10px;
        flex-direction: column;
    }

    .checkout.woocommerce-checkout .col2-set{
        width: 100%;
    }

    .woocommerce-checkout-review-order{
        width: 100%;
    }
}

@media(max-width:620px){
    .product__checkout_img{
        width: 145px;
        height: 177px;
    }

    .product__checkout_name{
        font-size: 12px;
        max-width: 41%;
    }

    .product__checkout_img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .product__checkout_name{
        margin-right: 20px;
    }

    .product__checkout_img{
        flex: none;
    }

    .tbody .cart_item {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        flex-wrap: wrap;
        height: 210px;
    }

    .product__checkout_img{
        height: 100%;
    }

    .checkout_coupon{
        flex-direction: column;
        gap: 15px;
    }

    .tfoot{
        padding: 15px 10px;
    }


    .checkout_coupon .form-row-last button{
        width: 100%;
        margin-left: 0;
        font-size: 14px !important;
        height: 40px;
    }

    .woocommerce-form-coupon .form-row-last{
        margin-left: 0 !important;
        width: 100% !important;
    }

    .tfoot .cart-subtotal, .tfoot .cart-discount, .tfoot .order-total{
        width: 100%;
        font-size: 12px;
    }

    .tfoot .cart-discount .woocommerce-Price-amount{
        font-size: 12px;
    }
    
    .tfoot .cart-subtotal .woocs_special_price_code{
        font-size: 12px !important;
    }

    .tfoot .order-total, .tfoot .order-total .woocs_special_price_code{
        font-size: 14px !important;
    }

    .woocommerce #payment #place_order, .woocommerce-page #payment #place_order{
        height: 58px;
        font-size: 18px !important;
    }

    .woocommerce-checkout #payment div.form-row {
        padding: 0 !important;
        margin-top: 20px;
    }
}

@media(max-width:800px){
    .mobile__media_main{
        aspect-ratio: 16 / 9;
        width: 100% !important;
        display: block;
    }
    
    .woocommerce div.product div.images.woocommerce-product-gallery{
        width: 100% !important;
    }

    .woocommerce div.product div.images .woocommerce-product-gallery__image{
        /* width: 80px !important;
        height: 80px !important; */
    }

    .woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2){
        /* width: 80px !important;  */
    }

    .woocommerce div.product div.images .woocommerce-product-gallery__wrapper{
        width: 100%;
        margin-bottom: 0 !important;
    }

    .woocommerce-product-gallery__image a{
        display: flex;
        width: 100%;
        height: 100%;
    }

    .img__wrapper_row{
        display: flex;
        gap: 6px;
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .woocommerce-product-gallery__image.active{
        border: 1px solid #1E1E1E;
    }
}

.empty__cart_wrapper{
    display: flex;
    padding: 0 40px;
    gap: 30px;
}

.empty__cart_left{
    width: 50%;
}

.empty__cart_wrapper .cart_totals{
    width: 50%;
}

.empty__title{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 15px;
    line-height: 166%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-1---dark);
}

.empty__text{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 139%;
    letter-spacing: 0.04em;
    color: var(--color-1---dark);
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid var(--color-4-—-light-gray);
    border-bottom: 1px solid var(--color-4-—-light-gray);
    margin-top: 30px;
}

.cart__info{
    margin-top: 55px;
    padding: 0 40px;
}

.payment__method_title{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 15px;
    line-height: 166%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-1---dark);
}

.payment__method_img{
    width: 356px;
    margin-top: 10px;
}

.payment__method_img img{
    width: 100%;
}

.cart__tab_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart__tab_header p{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 139%;
    letter-spacing: 0.04em;
    color: var(--color-1---dark);
}

.cart__tabs_wrapper{
    width: 100%;
    margin-top: 80px;
}

.cart__tab_item{
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-4-—-light-gray);
    margin-bottom: 20px;
    cursor: pointer;
}

.cart__tab_text{
    display: none;
    margin-top: 20px;
}

.woocommerce-NoticeGroup-checkout{
    position: relative;
    display: block;
}

@media(max-width:1065px){
    .empty__cart_wrapper{
        flex-direction: column;
        padding-top: 20px;
    }

    .empty__cart_left{
        width: 100%;
    }

    .empty__cart_wrapper .cart_totals{
        width: 100%;
    }
}

@media(max-width:440px){
    .payment__method_img{
        width: 100%;
    }

    .payment__method_title{
        font-size: 12px;
    }

    .empty__cart_wrapper{
        padding: 0 15px;
        padding-top: 20px;
    }

    .cart__info{
         padding: 0 15px;
    }

    .cart__tabs_wrapper{
        margin-top: 50px;
    }

    .woocommerce form .form-row-last, .woocommerce-page form .form-row-last{
        width: 100% !important;
        max-width: inherit !important;
    }
}


.thankyou__wrapper{
    padding-top: 100px;
}

.thank__title{
    display: flex;
    align-items: center;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 15px;
    line-height: 166%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-1---dark);
    gap: 10px;
    margin-bottom: 20px;
}

.thank__text{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    letter-spacing: 0.03em;
    color: var(--color-1---dark);
    margin-bottom: 10px;
    max-width: 435px;
}

.order__id{
    display: flex;
    align-items: center;
    gap: 8px;
}

.thank__text a{
    text-decoration: underline;
}

.thank__text span{
    text-decoration: underline;
}

.thank__text.email{
    margin-top: 35px;
}

.thank__button{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 98%;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-1---dark);
    border: 1px solid var(--color-1---dark);
    padding: 20px;
    width: 100%;
    height: 58px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.thank__left_wrapper{
    width: 50%;
}

.thankyou__wrapper{
    padding: 0 40px;
    padding-top: 90px;
}

@media(max-width:845px){
    .thank__left_wrapper{
        width: 100%;
    }

    .thankyou__wrapper{
        padding-top: 120px;
    }

    .footer__part_bottom{
        gap: 40px;
    }
}

@media(max-width:375px){
    .thankyou__wrapper{
        padding: 0 15px;
        padding-top: 120px;
    }
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea{
    border-radius: 0 !important;
}

.content {
    padding: calc(30px + 64px) 40px 150px 40px;
}

.title {
    font-weight: 600;
    font-size: 23px;
    line-height: 150%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 64px;
}

.paragraph_ul li{
    font-size: 16px;
}

.paragraph + .paragraph {
    margin-top: 64px;
}

.paragraph p + p {
    margin-top: 20px;
}

.paragraph p {
    font-weight: 400;
    font-size: 15px;
    line-height: 162%;
    color: #000;
}

.paragraph_title {
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 25px;
}

.download_link {
    font-weight: 700;
    font-size: 23px;
    line-height: 140%;
    letter-spacing: 0.06em;
    color: #000;
    margin-top: 100px;
    display: block;
}

.title {
    margin-top: 60px;
}

.title:first-child {
    margin-top: 0;
}

.form {
    width: 968px;
    max-width: 100%;
    margin: 100px auto 0;
}

.form_title {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000;
}

.form_input_wrapper {
    margin-top: 30px;
    width: 100%;
    position: relative;
}

.form_input {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1.61px solid #000;
    font-family: inherit;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.06em;
    border-radius: 0;
    padding-right: 96px;
}

.form_input:focus {
    border: none;
    outline: none;
    border-bottom: 1.61px solid #000;
}

.form_btn {
    background: none;
    border: none;
    position: absolute;
    right: 0;
    top: 10%;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #000;
}

.form_condition {
    width: 100%;
    margin-top: 30px;
    display: flex;
    gap: 12px;
}

.form_condition_mark {
    border: 1.61px solid #000;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.switch {
    display: flex;
    margin-bottom: 40px;
}

.switch_item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
    transition: all 200ms;
    border-bottom: 3px solid rgba(128, 128, 128, 0.442);
}
.switch_item.active {
    border-color: #000;
}
.switch_item:hover {
    opacity: 0.8;
}

.main_title {
    font-weight: 600;
    font-size: 25px;
    line-height: 142%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 40px;
}

@media screen and (max-width: 980px) {
    .content {
        padding: calc(30px + 44px) 20px 100px 20px;
    }
    .download_link {
        margin-top: 30px;
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .paragraph p {
        font-size: 15px;
    }
    .title {
        margin-top: 50px;
        margin-bottom: 30px;
    }
    .form_btn {
        font-size: 14px;
    }
    .form_input {
        padding-right: 85px;
    }
    .form_condition_mark {
        width: 25px;
        height: 25px;
    }
}

.product{
    position: relative;
}

.product__info_wrapper{
    position: absolute;
    width: calc(100% + 30px);
    height: 100vh;
    top: 0;
    left: -30px;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: flex-end;
    align-items: center;

}

.product__info_wrapper.active{
    display: flex;
    z-index: 2;
}

.product__info_content{
    width: 50%;
    height: 100%;
    background: #fff;
    padding-left: 30px;
    box-sizing: border-box;
    padding-right: 52px;
}

.product__info_title{
    font-weight: 500;
    font-size: 32px;
    line-height: 84%;
    letter-spacing: 0.02em;
    margin-bottom: 50px;
    padding-top: 120px;
}

.product__info_img{
    width: 100%;
    height: 310px;

}

.product__info_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product__material_wrapepr{
    display: none;
}

.product__material_wrapepr.active{
    display: block;
}

.product__size_wrapepr{
    display: none;
}

.product__size_wrapepr.active{
    display: block;
}

.product__close_btn{
    border-radius: 100%;
    background: #d9d9d9;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    cursor: pointer;
}

body.activeProduct{
    overflow: hidden;
}

.footer__part_bottom{
    display: flex;
    gap: 80px;
}

.second__page_wrapper{
    display: flex;   
    justify-content: space-between;
}

.links__info_page{
    display: flex;
    flex-direction: column;
    padding: 170px 40px 60px 40px;
    gap: 16px;
    min-width: 390px;
    box-sizing: content-box;
}

.link__info_page{
    display: flex;
    align-items: center;
    gap: 8px;   
}

@media(max-width: 840px){
    .second__page_wrapper{
        flex-direction: column;
    }

    .links__info_page{
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
        min-width: auto;
        width: 100%;
        box-sizing: border-box;
    }

    .content{
        padding-top: 20px;
    }

    .main_title{
        font-size: 20px;
    }
}

.woocommerce ul#shipping_method{
    margin-top: 20px;
}

.cart_totals .woocommerce-shipping-totals{
    display: none;
}

.woocommerce-shipping-methods li input{
    appearance: none;
    opacity: 0;
}

.woocommerce ul#shipping_method li{
    display: flex;
}

.woocommerce ul#shipping_method li label{
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 20px;
}

.woocommerce-shipping-methods li label::before{
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    border: 1px solid var(--color-1---dark);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 4px;
}

.woocommerce-shipping-methods li label::after{
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--color-1---dark);
    position: absolute;
    left: 2px;
    top: 6px;
    opacity: 0;
}

.woocommerce-shipping-methods li input[type=radio]:checked + label:after{
    opacity: 1;
}

/* Сделать все поля оформления заказа 100% ширины */
.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
    width: 100%;
    box-sizing: border-box;
}

.size-range-table{
    width: 100%;
    vertical-align: middle;
}
.size-range-table th,
.size-range-table td{
    border-bottom: 1px solid #000;
    text-align: center;
    padding: 20px;
    
}
.size-range-table th:first-of-type,
.size-range-table td:first-of-type{
    text-align: left;
}
.size-range-table tr:last-of-type td{
    border: none;
}
.size-range-table th,
.size-range-table td{
    font-weight: 300;
    font-size: 24px;
    line-height: 135%;
    letter-spacing: 0.03em;
    color: var(--color-1---dark);
}
.size-range-table th,
.size-range-table td:first-of-type{
    font-weight: 600;
}
.size-range-table th{
    white-space: nowrap;
}
.size-range-table th:not(:first-of-type),
.size-range-table td:not(:first-of-type){
    width: min-content;
}
.single__slider{
    position: relative;
}

.single__slider .slick-prev{
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    transform: translate(20px, -50%);
    width: 40px;
}
.single__slider .slick-next{
    rotate: 180deg;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    transform: translate(20px, 50%);
    width: 40px;
}
.single__slider .slick-track{
    display: flex;
    align-items: center;
}
.single__slider .slick-track .slick-slide{
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .product__info_wrapper{
        z-index: 2;
        width: 100%;
        left: 0;
    }
    .product__info_content{
        width: 100%;
        padding: 0 20px;
    }
    .product__info_size_range{
        overflow: scroll;
    }
    .product__close_btn{
        position: absolute;
        top: 0;
        right: 0;
        transform: translateY(50%);
    }
    .size-range-table th, 
    .size-range-table td{
        padding: 10px;
        font-size: 16px;
    }
}
.woocommerce-variation-availability{
    display: none;
}
.wc-proceed-to-checkout a.checkout-button{
    display: block;
    text-align: center;
    margin-bottom: 1em;
    font-size: 1.25em;
    padding: 1em;    
}

#currency-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

#currency-popup h2 {
    margin: 0 0 15px;
    font-size: 20px;
    text-align: center;
}

#currency-form {
    text-align: center;
}

#currency-select {
    padding: 10px;
    font-size: 16px;
    margin-bottom: 15px;
}

#currency-form button,
#close-popup {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#currency-form button {
    background-color: #007bff;
    color: white;
}

#close-popup {
    margin-top: 10px;
    background-color: #dc3545;
    color: white;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

/* Стили для категории "Безмятежность" */
.catalog__item.bezmyatezhnost-category .catalog__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
    margin-top: 36px;
    min-height: 100vh;
}

.catalog__item.bezmyatezhnost-category .product_card.bezmyatezhnost-product {
    grid-column: span 2;
    max-width: 100%;
    margin-bottom: 30px;
    padding: 15px;
}

.catalog__item.bezmyatezhnost-category .catalog__item_image {
    grid-column: 3 / span 2;
    grid-row: 1 / span 2;
    height: 100%;
    position: relative;
    align-self: stretch;
}

.catalog__item.bezmyatezhnost-category .catalog__item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: sticky;
    top: 120px;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .catalog__item.bezmyatezhnost-category .catalog__content {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
    }

    .catalog__item.bezmyatezhnost-category .product_card {
        grid-column: span 1;
    }

    .catalog__item.bezmyatezhnost-category .catalog__item_image {
        grid-column: 1;
        grid-row: 1;
        height: auto;
        margin-bottom: 30px;
    }

    .catalog__item.bezmyatezhnost-category .catalog__item_image img {
        position: static;
    }
}

/* Стили для категории "LIMITED COLLECTION" */
.catalog__item.limited-collection-category .catalog__content {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
}
.catalog__item.limited-collection-category .product_card {
    grid-column: span 1;
}
.catalog__item.limited-collection-category .limited-collection-image {
    grid-row: 2;
    grid-column: 2 / span 3;
    height: 100%;
    position: relative;
    align-self: stretch;
}
.catalog__item.limited-collection-category .limited-collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: sticky;
    top: 120px;
}
/* Адаптация для мобильных устройств категории "LIMITED COLLECTION" */
@media (max-width: 768px) {
    .catalog__item.limited-collection-category .catalog__content {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
    }
    .catalog__item.limited-collection-category .product_card {
        grid-column: span 1;
    }
    .catalog__item.limited-collection-category .limited-collection-image {
        grid-column: 2; /* Изменено на второй столбец */
        grid-row: 2; /* Изменено на вторую строку */
        height: auto;
        margin-bottom: 30px;
    }
    .catalog__item.limited-collection-category .limited-collection-image img {
        position: static;
    }
}
/* Стили для категории "MERCH" */
.catalog__item.merch-category .catalog__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Четыре колонки */
    gap: 30px;
    align-items: start;
    margin-top: 36px;
    min-height: 100vh;
}
.catalog__item.merch-category .product_card {
    grid-column: span 1; /* Каждый товар занимает одну колонку */
    max-width: 100%;
    margin-bottom: 30px;
    padding: 15px;
}
.catalog__item.merch-category .merch-image {
    grid-column: 1 / span 2; /* Изображение занимает первые две колонки */
    grid-row: 1 / span 3; /* Изображение занимает две строки */
    height: 100%;
    position: relative;
    align-self: stretch;
}
.catalog__item.merch-category .merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: sticky;
    top: 120px;
}
@media (max-width: 768px) {
    .catalog__item.merch-category .catalog__content {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
    }
    .catalog__item.merch-category .product_card {
        grid-column: span 1;
    }
    .catalog__item.merch-category .merch-image {
        grid-column: 1; /* Изменено на второй столбец */
        grid-row: 1; /* Изменено на вторую строку */
        height: auto;
        margin-bottom: 30px;
    }
    .catalog__item.merch-category .products-container {
        grid-column: 1 / span 2;
        grid-row: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .catalog__item.merch-category .merch-image img {
        position: static;
    }
}
