/* GLOBAL RESET */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Basic', sans-serif;
    background: #fff;
    color: #0b0b0b;
    font-weight: 600;
    font-size: 11.5px;
    line-height: 16px;
}
.woocommerce-page *{
    font-weight: 600!important;
}
html {
    scroll-behavior: smooth;
}
@media (min-width: 769px) {
    html, body {
        font-size: 11.5px;
        line-height: 14px;
    }
}
h1, h2, h3, h4, h5, h6, h7{
    font-family: "Bebas Neue", sans-serif!important;
    letter-spacing: .03em;
    line-height: 1;
}

.d-none{
    display: none!important;
}
.site-main{
    margin-top: 100px;
}
.home .site-main{
    margin-top: 60px;
}
.mt-20{
    margin-top: 20px!important;
}
/* CONTAINER */
.container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 15px;
}
.single-product .site-main .container{
    max-width: 1200px;
}
.medium-container{
    max-width: 1100px;
    margin: 0 auto;
}
.small-container{
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}
@media (max-width: 768px) {
    .small-container{
        padding: 0 15px;
    }
}
/* GRID */
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/* колонки */
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .col-6, .col-4, .col-3 {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .mobile-order-2{
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}


.two-columns > .wp-block-group__inner-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 55% 5% 40%;
    grid-template-columns: 55% 40%;
    gap: 5%;
}
@media (max-width: 600px) {
    .two-columns > .wp-block-group__inner-container{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 1%;
    }
}
.two-columns-50 > .wp-block-group__inner-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 49% 2% 49%;
    grid-template-columns: 49% 49%;
    gap: 2%;
}
@media (max-width: 600px) {
    .two-columns-50 > .wp-block-group__inner-container{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
.two-columns-50 > .wp-block-group__inner-container > .wp-block-group{
    border: 1px solid #e7e7ea;
    padding: 15px;
}

.hero-advantages-block > .wp-block-group__inner-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
@media (max-width: 500px) {
    .hero-advantages-block > .wp-block-group__inner-container{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
.hero-advantages-block .wp-block-stackable-text{
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #e7e7ea;
    padding: 5px 4px 3px;
    text-align: center;
}
.basic-table thead{
    border-bottom: 0;
}
.help-block{
    padding: 28px 22px;
}
.products-block__pagination {
    margin-top: 30px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px 0;
}

.products-block__pagination a,
.products-block__pagination span {
    margin: 0 5px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.products-block__pagination .current {
    background: #000;
    color: #fff;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100;
}

/* состояние при скролле */
.site-header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* контейнер */
.header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 40px;
}

/* logo */
.logo a {
    color: #0b0b0b;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: flex;
}

.logo img{
    max-width: 47px;
    height: auto;
    border-radius: 50%;
    padding: 5px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
@media (max-width: 1050px) {
    .logo a {
        font-size: 14px;
    }
    .logo img {
        max-width: 35px;
    }

    .header__inner .logo{
        order: 2;
    }

    .header__inner .burger{
        order: 1;
    }
    .header__inner .shopping-basket{
        order: 3;
    }
}

.scrolled .logo img{
    background-color: #fff;
}


.scrolled .logo a, .scrolled .nav-menu a{
    color: #fff;
}
.scrolled .nav-menu .sub-menu a{
    color: #0b0b0b;
}
.mobile-view{
    display: none;
}
@media (max-width: 1050px) {
    .mobile-view{
        display: block;
    }
}
/* NAV */

.nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

/* ссылки */
.nav-menu a {
    position: relative;
    color: #0b0b0b;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

/* underline animation */
/*.nav-menu a::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: -5px;*/
/*    width: 0;*/
/*    height: 2px;*/
/*    background: #ff3c00;*/
/*    transition: width 0.3s ease;*/
/*}*/

/*.nav-menu a:hover::after {*/
/*    width: 100%;*/
/*}*/

/* CTA кнопка */

/*.btn-header {*/
/*    background: #ff3c00;*/
/*    color: #fff;*/
/*    padding: 10px 20px;*/
/*    text-decoration: none;*/
/*    font-size: 13px;*/
/*    text-transform: uppercase;*/
/*    transition: 0.3s;*/
/*}*/

/*.btn-header:hover {*/
/*    background: #ff5a1f;*/
/*}*/



/* контейнер */
.menu-item-has-children {
    position: relative;
}

/* dropdown */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 15px;
    min-width: 220px;
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
    list-style: none;
}
@media (max-width: 1050px) {
    .menu-item-has-children.open .sub-menu{
        display: block!important;
    }
    .sub-menu {
        display: none!important;
        position: relative;
        background-color: transparent;
    }
    .sub-menu a{
        color: #fff!important;
    }
}


/* hover */
.menu-item-has-children:hover .sub-menu {
    display: block;
}

/* пункты */
.sub-menu li {
    margin-bottom: 8px;
}

/* ссылки */
.sub-menu a {
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.sub-menu a:hover {
    background: #f5f5f5;
}
@media (max-width: 1050px) {
    .sub-menu a:hover {
        background-color: transparent;
    }
}

@media (max-width: 768px) {

    .sub-menu {
        display: none;
        position: static;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding-left: 10px;
    }

    .menu-item-has-children.open .sub-menu {
        display: block;
    }
}

.menu-item-has-children > a::after {
    content: "▾";
    margin-left: 6px;
    font-size: 12px;
}

/* BURGER */

.burger {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    width: 28px;
    height: 22px;
}

.burger span {
    width: 25px;
    height: 2px;
    background: #333;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.burger.active span{
    background-color: #fff;
    z-index: 9;
}

.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #333;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* 3 полоски */
.burger span:nth-child(1) {
    top: 0;
}

.burger span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.burger span:nth-child(3) {
    bottom: 0;
}

/* 🔥 Состояние ACTIVE (крестик) */
.burger.active span:nth-child(1) {
    background-color: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0; /* скрываем */
}

.burger.active span:nth-child(3) {
    background-color: #fff;
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}

.scrolled .burger span{
    background-color: #fff;
    z-index: 9;
}


/* MOBILE */

@media (max-width: 1050px) {

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background: #000;
        padding: 80px 20px;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .nav.active {
        left: 0;
        z-index: 9;
    }

    .nav-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .btn-header {
        display: none;
    }
    header .nav-menu a {
        color: #fff;
    }
}

/* HERO */

.hero {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 75px;
    padding: 0;
}
@media (min-width: 992px) {
    .hero {
        min-height: 500px;
    }
}

@media (max-width: 600px) {
    .hero {
        margin-bottom: 45px;
    }
}
.hero > .wp-block-group__inner-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
}
.hero-content{
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 30px;
    width: 80%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 600px) {
    .hero-content{
        width: 90%;
    }
}

.hero-image, .hero-image img{
    width: 100%;
}
.hero-image img{
    min-height: 90vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
}

.hero-left{
    z-index: 1;
    max-width: 540px;
}
.hero-left h1{
    text-shadow: 0 0 20px #fff;
}
.hero-right > .wp-block-group__inner-container{
    max-width: 700px;
    -webkit-clip-path: polygon(70px 0%, 100% 0%, 100% calc(100% - 70px), calc(100% - 70px) 100%, 0% 100%, 0% 70px);
    clip-path: polygon(70px 0%, 100% 0%, 100% calc(100% - 70px), calc(100% - 70px) 100%, 0% 100%, 0% 70px);
}
.hero p{
    color: #fff;
}
.hero__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero h1, .products-block .category-name h1, .products-block .category-name h2 {
    font-size: clamp(28px, 4vw, 56px) !important;
    white-space: nowrap;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .hero h1, .products-block .category-name h1, .products-block .category-name h2 {
        font-size: clamp(24px, 3vw, 56px) !important;
    }
}
@media (max-width: 600px) {
    .hero h1, .products-block .category-name h1, .products-block .category-name h2 {
        font-size: clamp(15px, 4vw, 56px) !important;
    }
}


.hero h2{
    text-shadow: 0 0 20px #fff;
}
h2{
    font-size: 17px;
}
h3{
    font-size: 14px;
}
.hero p {
    margin-bottom: 30px;
}

.btn-primary {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}
.stk-block-button a{
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.mb-15{
    margin-bottom: 15px;
}
.mb-20{
    margin-bottom: 20px;
}
.mb-40{
    margin-bottom: 40px;
}

.heading-text{
    color: #fff;
}

.support-block > .wp-block-group__inner-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
@media (max-width: 768px) {
    .support-block > .wp-block-group__inner-container{
        -ms-grid-columns: 1fr 15px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.request-return > .wp-block-group__inner-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
@media (max-width: 768px) {
    .request-return > .wp-block-group__inner-container{
        -ms-grid-columns: 1fr 15px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
.sd-track-form{
    margin-bottom: 25px;
}
.sd-track-field{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.sd-track-input{
    border: 1px solid #e7e7ea;
    padding: 10px;
}
.sd-track-btn-row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.sd-track-btn-primary{
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.sd-track-btn-secondary{
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 10px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
}

.support-item{
    border: 1px solid #e7e7ea;
    padding: 20px;
    height: 100%;
}
.support-item .wp-block-stackable-icon-label .stk-block-content{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /*align-items: center;*/
    /*text-align: center;*/
}
.support-item .wp-block-stackable-icon-label .wp-block-stackable-icon{
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.support-item .wp-block-stackable-icon-label .stk-block-content .stk-block-heading__text{
    /*text-align: center;*/
}
.store-3{
    margin-bottom: 15px;
}
.store-3 > .wp-block-group__inner-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
@media (max-width: 500px) {
    .store-3 > .wp-block-group__inner-container{
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}

.store-info-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    border: 1px solid #e7e7ea;
    padding: 10px 10px 9px;
}
.store-info-item > .wp-block-group__inner-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}


/* GRID */

.cat-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

/* 4 в ряд */

.cat-card-wrap {
    width: calc(25% - 15px);
    background: #222;
    text-decoration: none;
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.cat-card-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid #ff3c00;

    opacity: 0;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    pointer-events: none;
}
.cat-card-wrap:hover::before {
    opacity: 1;
}
.cat-card-wrap a{
    padding: 20px;
    text-decoration: none;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.cat-card-wrap:hover a {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

/* TITLE */

.cat-card__title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

/* IMAGE */

.cat-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* планшеты */
@media (max-width: 992px) {
    .cat-card-wrap {
        width: calc(50% - 10px);
    }
}

/* мобилки */
@media (max-width: 480px) {
    .cat-card-wrap {
        width: 100%;
    }
}
.category-block{
    padding-top: 5px;
}
.main-category-block, .category-block{
    position: relative;
}
/* contact page */
.contact-form p{
    margin: 0;
}
.contact-group > .wp-block-group__inner-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2%;
}
.contact-group > .wp-block-group__inner-container > .wp-block-group{
    width: 40%;
}
/*@media (min-width: 601px) and (max-width: 768px) {*/
/*    .contact-group > .wp-block-group__inner-container > .wp-block-group{*/
/*        width: 40%;*/
/*    }*/
/*}*/
@media (max-width: 600px) {
    .contact-group > .wp-block-group__inner-container > .wp-block-group{
        width: 100%;
    }
}

.contact-form .contact-row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2%;
    margin-bottom: 2%;
}
.contact-form .contact-row .contact-row-item{
    width: 49%;
}
.contact-form-wrap input, .contact-form-wrap textarea{
    background-color: #fff;
    height: auto;
    margin-bottom: 0;
    padding: 1.25vw;
    font-size: 11px;
    font-weight: 600;
    max-width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.7);
}
.contact-form-wrap .wpcf7-submit{
    text-transform: uppercase;
    font-size: 11px;
    line-height: 120%;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.7);
    font-weight: bold;
    max-width: 250px;
    cursor: pointer;
}
.wpcf7-form-control-wrap{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}
/* PRODUCTS */
.pruducts-wrap{
    margin-bottom: 100px;
}

.products-block{
    margin-bottom: 100px;
    position: relative;
}
.tax-product_cat .products-block{
    margin-bottom: 0;
}
@media (max-width: 600px) {
    .products-block {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}
.related-products{
    margin-top: 50px;
}
.products-block .category-name{
    text-align: center;
    padding: 10px 5px 10px 5px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.7);
    position: relative;
    height: auto;
    min-height: 110px;
    background-position: center;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.products-block .category-name h2, .products-block .category-name h1{
    margin: 0;
    color: #000;
    font-size: 70px;
    line-height: 1em;
    font-family: 'Aeroport', sans-serif;
    position: relative;
}
@media (max-width: 600px) {
    .products-block .category-name{
        min-height: unset;
    }
    .products-block .category-name h2{
        font-size: 35px;
    }
}
.products-block h2{
    color: #000;
}
.products-grid-wrap{
    position: relative;
}
.products-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(0, 0, 0, 0.7);
}
.product-card {
    text-decoration: none;
    color: #000;
    background: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.7);
    border-right: 1px solid rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.product-card:nth-child(-n+4) {
    border-top: 1px solid rgba(0,0,0,0.7);
}

@media (max-width: 1024px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* верхняя линия для первых 2 */
    .product-card:nth-child(-n+4) {
        border-top: none;
    }

    .product-card:nth-child(-n+2) {
        border-top: 1px solid rgba(0,0,0,0.7);
    }

    /* правая граница */
    .product-card:nth-child(4n) {
        border-right: 1px solid rgba(0,0,0,0.7);
    }

}


.product-card__price{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    text-align: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.product-card__price del{
    font-size: 10px;
    color: #505050;
}
.variant-price del{
    font-size: 10px;
    color: #505050;
}

@media (max-width: 1024px) {
    .products-grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}

/*@media (max-width: 600px) {*/
/*    .products-grid {*/
/*        -ms-grid-columns: 1fr 1fr;*/
/*        grid-template-columns: 1fr 1fr;*/
/*    }*/
/*}*/

/* блок */
.product-card__variants {
    position: absolute;
    top: 60px;
    right: 10px;

    background: #fff;
    padding: 8px 10px;
    border: 1px solid #eee;

    font-size: 12px;
    line-height: 1.3;

    opacity: 1;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;

    z-index: 5;
}


/* строки */
.variant-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}
.product-card__image{
    padding: 0 10px;
}
.product-card__image img {
    width: 100%;
    height: 300px;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
}
.product-card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
}
.product-card__content {
    padding: 15px;
}
.product-card__title {
    margin-bottom: 10px;
}
@media (max-width: 600px) {
    .product-card__title {
        margin-bottom: 0;
    }
    .product-card__content {
        padding: 8px 8px 0 8px;
    }
    /*.product-card__title {*/
    /*    font-size: 10px;*/
    /*}*/
}
.products-block__more {
    text-align: center;
    margin-top: 40px;
}
.products-block__more a{
    border: 1px solid rgba(0, 0, 0, 0.7);
    padding: 12px 16px;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.category-name .products-block__more {
    margin-top: 17px;
    display: flex;
    position: absolute;
    right: 30px;
}

@media (max-width: 991px) {
    .category-name{
        gap: 30px;
    }
    .category-name .products-block__more {
        position: relative;
        right: unset;
    }
}

@media (max-width: 768px) {
    .category-name{
        /*flex-direction: column;*/
        gap: 25px;
    }
    .category-name .products-block__more {
        margin-top: 0;
    }
    .category-name .products-block__more a{
        padding: 5px 10px;
    }
}




.seo-block{
    background-color: #fff;
    padding-top: 35px;
    padding-bottom: 35px;
}

.seo-block *{
    color: #000;
}
.seo-block p{
    font-size: 11px;
}
.seo-block .wp-block-heading{
    font-size: 12px;
}
.rank-math-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
}
.rank-math-list-item {
    border: 1px solid rgba(0, 0, 0, 0.7);
    padding: 15px;
    cursor: pointer;
}

.rank-math-question {
    cursor: pointer;
    position: relative;
    margin: 0;
    padding-right: 30px;
    font-size: 12px;
}

/* стрелка */
.rank-math-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 22px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    color: #000;
    min-width: 20px;
    text-align: center;
}

/* открытое состояние */
.rank-math-list-item.active .rank-math-question::after {
    content: '-';
}

/* ответ */
.rank-math-answer {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease;
    -o-transition: max-height 0.4s ease;
    transition: max-height 0.4s ease;
}

/* внутренний отступ */
.rank-math-answer p {
    margin: 10px 0 0;
}


/* FOOTER BASE */

.site-footer {
    background: #050505;
    color: #aaa;
    margin-top: 100px;
}

/* TOP */

.footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 40px 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 991px) {
    .footer__top {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
@media (max-width: 768px) {

    .footer__top {
        /*-webkit-box-orient: vertical;*/
        /*-webkit-box-direction: normal;*/
        /*-ms-flex-direction: column;*/
        /*flex-direction: column;*/
        gap: 20px;
        padding: 60px 20px;
    }

}

.footer__col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
@media (max-width: 991px) {
    .footer__col{
        width: 28%;
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
}
@media (max-width: 768px) {
    .footer__col{
        width: 47%;
    }
    .footer__brand{
        width: 100%;
    }
}
@media (max-width: 400px) {
    .footer__col{
        width: 46%;
    }
}


.footer__col svg{
    fill: #fff;
    width: 40px;
    height: 40px;
}
.footer__payments ul, .footer__delivery ul{
    list-style: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px 24px;
}
.footer__payments ul li, .footer__delivery ul li{
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
/* TITLES */

.footer__title {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

/* LOGO */

.footer__logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}
.footer__logo img{
    background-color: #fff;
    max-width: 47px;
    width: 100%;
    border-radius: 50%;
    padding: 5px;
    height: auto;
}

/* MENU */

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

/*@media (max-width: 500px) {*/
/*    .footer-menu {*/
/*        columns: 2;*/
/*    }*/
/*}*/

/* каждый пункт */
.footer-menu li {
    margin-bottom: 12px;
}

/* ссылки */
.footer-menu a {
    position: relative;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

/* hover эффект как в header */
/*.footer-menu a::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: -3px;*/
/*    width: 0;*/
/*    height: 1px;*/
/*    background: #ff3c00;*/
/*    transition: width 0.3s ease;*/
/*}*/

.footer-menu a:hover {
    color: #fff;
}

/*.footer-menu a:hover::after {*/
/*    width: 100%;*/
/*}*/

/* CONTACT */
.footer__contact a{
    color: #aaa;
}
.footer__contact p {
    font-size: 14px;
}

/* BOTTOM */

.footer__bottom {
    text-align: center;
    padding: 25px;
    font-size: 12px;
    color: #666;
}

.wc-block-components-address-form .wc-block-components-checkbox{
    margin-top: 16px!important;
}
.wc-block-components-product-name{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
@media (max-width: 739px) {
    .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block{
        display: none;
    }
}

@media (max-width: 450px) {
    .wc-block-cart-items__row{
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 5px;
    }
    .wc-block-cart-items__row .wc-block-cart-item__image{
        width: 25%;
    }
}

/* вертикальный блок с цветами подкатегорий */
.products-layout {
    position: relative;
}

/* FILTER */
.products-filter {
    position: absolute;
    height: 100%;
    left: -60px; /* вынос за сетку */
    top: 0;
}
@media (max-width: 1600px) {
    .products-filter {
        position: relative;
        left: 0;
        margin-bottom: 15px;
    }
}
@media (max-width: 600px) {
    .category-top-text{
        padding: 0 10px;
    }
}

/* sticky эффект */
.products-filter .category-colors {
    position: sticky;
    top: 120px; /* отступ от хедера */
}
@media (max-width: 1600px) {
    .products-filter .category-colors {
        position: static;
        padding: 0 10px;
    }
}
/* чтобы grid не ломался */
.products-content {
    position: relative;
}

.category-colors {
    background: #fff;
    padding: 10px;
}
@media (max-width: 1600px) {
    .category-colors {
        padding: 0;
    }
}
.category-colors__title{
    margin-bottom: 5px;
}
.category-colors__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

@media (max-width: 1600px) {
    .category-colors__list{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin-top: 0;
        overflow-y: auto;
        padding-bottom: 10px;
    }
}

/* кружки */
.color-circle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #ccc;
}
@media (max-width: 1600px) {
    .color-circle {
        width: 30px;
        height: 30px;
    }
}

/* active */
.color-item.active .color-circle {
    border: 2px solid #000;
}


.woocommerce-checkout input,
.woocommerce-checkout textarea,
.woocommerce-checkout select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0,0,0,0.7);
    font-size: 12px;
    background: #fff;
}
.woocommerce-checkout .woocommerce-notices-wrapper{
    display: none;
}

.woocommerce-checkout h3 {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

#order_review {
    border: 1px solid rgba(0,0,0,0.7);
    padding: 20px;
}

.woocommerce-checkout-payment {
    border: 1px solid rgba(0,0,0,0.7);
    padding: 20px;
    margin-top: 20px;
    display: none;
}
#customer_details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.woocommerce-checkout #order_review_heading{
    display: none!important;
}
.woocommerce-checkout .woocommerce{
    max-width: 1000px;
    margin: 0 auto;
}
.woocommerce-checkout .woocommerce-checkout-payment{
    margin-bottom: 15px;
}
.woocommerce-checkout .woocommerce .col2-set .col-1, .woocommerce-checkout .woocommerce-page .col2-set .col-1,
.woocommerce-checkout .woocommerce .col2-set .col-2, .woocommerce-checkout .woocommerce-page .col2-set .col-2{
    width: 100%;
}


#place_order {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 14px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#place_order:hover {
    background: #222;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
    border: none;
}
.woocommerce-checkout form.checkout {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 400px;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}
@media (max-width: 768px) {
    .woocommerce-checkout form.checkout {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}
.payment_method_paypal {
    padding: 10px 0;
}



/* === CATEGORY SEO TABLE === */
.category-bottom-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Заголовок */
.category-bottom-text thead {
    background: #111;
}

.category-bottom-text th {
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid #222;
}

/* Ячейки */
.category-bottom-text td {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: top;
}

/* Зебра */
.category-bottom-text tbody tr:nth-child(even) {
    background: #fafafa;
}

/* Hover (легкий, без колхоза) */
.category-bottom-text tbody tr:hover {
    background: #f3f3f3;
}
.category-bottom-text {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {

    .category-bottom-text table {
        font-size: 11px;
    }

    .category-bottom-text th,
    .category-bottom-text td {
        padding: 10px 12px;
    }

}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    padding: 12px 15px;
    margin-top: 25px;
    margin-bottom: 35px;

    border: 1px solid rgba(0,0,0,0.7);

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-content: space-around;
}
@media (max-width: 768px) {
    .trust-bar{
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .trust-bar {
        flex-direction: column;
        gap: 10px;
        margin: 0;
    }
    .products-wrap .trust-bar{
        margin: 0 auto 35px;
        width: max-content;
    }
}

.trust-bar span {
    position: relative;
    padding-right: 15px;
}

/* разделители */
.trust-bar span::after {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);

    width: 3px;
    height: 3px;
    background: #ff3c00;
}