@font-face {
    font-family: 'Involve';
    src: url('../fonts/Involve-Regular.ttf');
    font-weight: 400;
}
@font-face {
    font-family: 'Involve';
    src: url('../fonts/Involve-Oblique.ttf');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Involve';
    src: url('../fonts/Involve-Medium.ttf');
    font-weight: 500;
}
@font-face {
    font-family: 'Involve';
    src: url('../fonts/Involve-MediumOblique.ttf');
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: 'Involve';
    src: url('../fonts/Involve-SemiBold.ttf');
    font-weight: 600;
}
@font-face {
    font-family: 'Involve';
    src: url('../fonts/Involve-SemiBoldOblique.ttf');
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: 'Involve';
    src: url('../fonts/Involve-Bold.ttf');
    font-weight: 700;
}
@font-face {
    font-family: 'Involve';
    src: url('../fonts/Involve-BoldOblique.ttf');
    font-weight: 700;
    font-style: italic;
}

html {
    font-size: calc(100vw / 1920 * 10);
}
body {
    font-family: 'Involve';
    font-weight: 400;
    transition: all .2s linear !important;
    min-height: 100vh;
    font-size: 1.6rem;
    color: #000;
    background: #FFF;
}
a, h1, h2, h3, h4, h5, p, span, button, ul, li {
    padding: 0;
    margin: 0;
    background: transparent;
    text-decoration: none;
    border: none;
    transition: all .2s linear;
    color: #000;
}
input, textarea, select {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    outline: none;
	transition: all .2s linear;
}
.container {
    max-width: 120.3rem;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
div {
    transition: all .2s linear;
}
path, rect, circle {
    transition: all .2s linear;
}
main {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 1440px) {
	html {
		font-size: calc(100vw / 1440 * 10);
	}
}

/* header */

header {
    padding: 2.2rem 0 2.4rem 0;
    border-bottom: 1px solid #B0B0B0;
    position: sticky;
    top: 0;
    z-index: 999;
    background: #FFF;
}
.header-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.header-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.3rem;
}
.logo {
    display: flex;
    width: 25.4rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
}
.logo img {
    width: 100%;
}
.header-top nav ul {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.header-top nav ul li {
    display: flex;
    list-style: none;
}
.header-top nav ul li a {
    color: #888;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.header-top nav ul li a.active, .header-top nav ul li a:hover {
    color: #000;
}
.header-buttons {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.header-button {
    display: flex;
	position: relative;
}
.header-button span {
    position: absolute;
    background: #000;
    border-radius: 100%;
    width: 1.4rem;
    height: 1.4rem;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    right: -0.5rem;
    top: -0.5rem;
}
.header-button svg {
    width: auto;
    height: 2.1rem;
}
.header-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-bottom nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header-bottom nav ul li {
    display: flex;
    list-style: none;
}
.header-bottom nav ul li a {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.header-bottom nav ul li a.active, .header-bottom nav ul li a:hover {
    opacity: .5;
}
.header-search {
    border-radius: 0.4rem;
    border: 1px solid #A3A3A3;
    width: 30.2rem;
    height: 4.8rem;
    display: flex;
}
.header-search input {
    width: 100%;
    padding: 0 2.3rem;
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.header-search input::placeholder {
    color: #888;
}
.header-search__submit {
    width: 6.9rem;
    min-width: 6.9rem;
    height: 4.6rem;
    border-radius: 0 0.4rem 0.4rem 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-search__submit svg {
    width: 2.1rem;
    height: auto;
}
.burger-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 1.8rem;
    gap: 0.8rem;
    position: relative;
    z-index: 999;
}
.bar {
    height: 1px;
    width: 3.4rem;
    background: #000;
    border-radius: 0.2rem;
}
.change .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-0.6rem, 0.6rem);
}
.change .bar:nth-child(2) {
    opacity: 0;
}
.change .bar:nth-child(3) {
    transform: rotate(45deg) translate(-0.6rem, -0.7rem);
}
svg {
    vertical-align: middle;
    overflow: visible;
}
.mobile_menu {
    display: none;
}
.burger-open {
	display: none;
}

@media screen and (max-width: 992px) {
    html {
        font-size: calc(100vw / 320 * 10);
    }
    .container {
        max-width: 29rem;
    }
    header {
        padding: 1.7rem 0;
    }
    .header-container {
        display: flex;
        flex-direction: column;
        gap: 5rem;
    }
    .header-top {
        padding-top: 0;
    }
    .logo {
        width: 12.2rem;
    }
    .header-top nav {
        display: none;
    }
    .header-buttons {
        width: 100%;
        gap: 0.8rem;
    }
    .header-button svg {
        height: 1.7rem;
    }
    .header-bottom {
        display: none;
    }
    .burger-open {
        margin-right: auto;
		display: flex;
    }
    .mobile_menu.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99;
        background: #2E2E2E;
        overflow-y: auto;
        padding: 6.4rem 1.6rem;
        max-height: 100%;
        flex-direction: column;
        gap: 3rem;
    }
    .change .bar {
        background: #FFF;
    }
    .mobile_menu-menu {
        display: flex;
        flex-direction: column;
        gap: 2.3rem;
        align-items: flex-start;
    }
    .mobile_menu-menu nav ul {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .mobile_menu-menu nav ul li {
        display: flex;
        list-style: none;
    }
    .mobile_menu-menu nav ul li a {
        color: #FFF;
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    .header-search {
        width: 100%;
        height: 4.6rem;
        border-color: #FFF;
    }
    .header-search input {
        padding: 0 1.2rem;
    }
    .header-search__submit {
        width: 6.8rem;
        min-width: 6.8rem;
        height: 4.4rem;
        background: #FFF;
    }
    .header-search__submit svg {
        width: 2rem;
    }
    .header-search__submit svg path {
        stroke: #000;
    }
    .header-search input {
        color: #FFF;
    }
    .header-search input::placeholder {
        color: #FFF;
    }
	.header-buttons .header-search {
		display: none;
	}

}

/* banner */

.banner {
    background: linear-gradient(100deg, #EBEBEB 0.33%, #DCDCDC 102.37%);
    position: relative;
    height: 76.7rem;
    display: flex;
    overflow: hidden;
}
.banner-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}
.banner-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
    position: relative;
    z-index: 5;
    max-width: 46rem;
}
.banner-title {
    color: #000;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
    text-transform: uppercase;
}
.banner-title span {
    background: #fff;
    padding: 0.12em 0.4em;
    border-radius: 0.6rem;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    box-shadow: 0.15em 0 0 #fff, -0.15em 0 0 #fff;
}
.banner-link {
    width: 29.2rem;
    color: #343434;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.6rem;
    padding: 0.5rem;
    text-align: center;
    border-radius: 0.5rem;
    border: 1px solid #343434;
}
.banner-img {
    height: 100%;
    width: 58%;
    max-width: 110rem;
    object-fit: cover;
    object-position: center right;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    pointer-events: none;
}

@media screen and (max-width: 992px) {
    .banner {
        height: 49.9rem;
        padding-top: 3rem;
    }
    .banner-container {
        align-items: flex-start;
    }
    .banner-col {
        align-items: center;
        gap: 1.7rem;
    }
    .banner-title {
        font-size: 2.4rem;
        line-height: 3rem;
        text-align: center;
    }
    .banner-link {
        width: 100%;
        padding: 0.2rem;
    }
    .banner-img {
        height: auto;
        right: 0;
        bottom: 0;
        left: 0;
        margin: 0 auto;
        width: 26.7rem;
    }
}

/* categories */

.categories {
    margin: 3.8rem 0 12.6rem 0;
}
.categories-container {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}
.categories-link {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}
.categories-link p {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.categories-link svg {
    width: 1.5rem;
    height: auto;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
}
.categories-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
    padding: 1.1rem;
    border-radius: 0.8rem;
    background: #F2F2F2;
}
.categories-item p {
    color: #000;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 11.6rem;
}
.categories-item img {
    width: 8rem;
    object-fit: contain;
    max-height: 100%;
}
.categories-slider {
    display: none;
}

@media screen and (max-width: 992px) {
    .categories {
        margin: 1.8rem 0 1.5rem 0;
    }
    .categories-container {
        gap: 2rem;
    }
    .categories-link {
        margin: 0 auto;
        gap: 0.6rem;
    }
    .categories-link p {
        font-size: 2rem;
    }
    .categories-link svg {
        width: 0.8rem;
    }
    .categories-grid {
        display: none;
    }
    .categories-slider {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .categories-buttons {
        display: flex;
        justify-content: center;
        gap: 0.6rem;
    }
    .categories_prev {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        border: 1px solid #B6B6B6;
        width: 2.6rem;
        height: 2.6rem;
    }
    .categories_next {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        border: 1px solid #B6B6B6;
        width: 2.6rem;
        height: 2.6rem;
    }
    .categories_prev svg {
        width: 0.5rem;
        height: auto;
    }
    .categories_next svg {
        width: 0.5rem;
        height: auto;
    }
    .categories_swiper {
        width: 100%;
    }
    .categories_swiper .swiper-slide {
        height: auto;
    }
    .categories-item {
        flex-direction: column-reverse;
        gap: 0.5rem;
        padding: 0.8rem;
        border-radius: 0.8rem;
        background: #F2F2F2;
    }
    .categories-item p {
        font-size: 1.5rem;
        max-width: none;
        text-align: center;
    }
    .categories-item img {
        width: auto;
        height: 6.1rem;
    }
}

/* triko */

.triko {
    height: 49.5rem;
    background: #F4F4F4;
    position: relative;
    display: flex;
    margin-bottom: 5.5rem;
    overflow: hidden;
}
.triko::before {
    content: '';
    background-image: url('/wp-content/uploads/2025/11/triko-fon.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 60.85rem;
    height: 100%;
    right: 23.75rem;
    position: absolute;
    bottom: 0;
}
.triko-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}
.triko-col {
    padding-left: 18.9rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    position: relative;
    z-index: 5;
    max-width: 52rem;
}
.triko-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
}
.triko-title {
    color: #000;
    font-size: 5.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.35;
}
.triko-title span {
    background: #fff;
    padding: 0.1em 0.35em;
    border-radius: 0.7rem;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    box-shadow: 0.12em 0 0 #fff, -0.12em 0 0 #fff;
}
.triko-title:first-child {
    margin-left: -13.4rem;
}
.triko-link {
    width: 29.2rem;
    border-radius: 0.5rem;
    border: 1px solid #343434;
    padding: 0.5rem;
    color: #343434;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.6rem;
    text-align: center;
}
.triko-img {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 56%;
    object-fit: cover;
    object-position: center left;
    z-index: 0;
    pointer-events: none;
}

@media screen and (max-width: 992px) {
    .triko {
        height: auto;
        padding: 4.5rem 0;
        margin-bottom: 2rem;
        overflow: hidden;
        position: relative;
    }
    .triko::before {
        display: none;
    }
    .triko-col {
        padding-left: 0;
        gap: 1.5rem;
        max-width: 17.8rem;
    }
    .triko-name {
        gap: 0.7rem;
    }
    .triko-title {
        font-size: 2.2rem;
        line-height: 2.2rem;
    }
    .triko-title:first-child {
        margin-left: 0;
    }
    .triko-link {
        width: 15.3rem;
        font-size: 1.6rem;
        line-height: 2.8rem;
    }
    .triko-img {
        right: 0;
        width: 55%;
        object-position: center;
    }
}

/* about */

.about {
    margin-bottom: 5.5rem;
}
.about-container {
    display: flex;
    gap: 4.7rem;
    align-items: flex-start;
}
.about-img1 {
    width: 47.8rem;
    min-width: 47.8rem;
    object-fit: cover;
    height: 50.3rem;
}
.about-main {
    padding-right: 3.3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.2rem;
}
.about-title {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.about-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.3rem;
}
.about-description p {
    color: #303030;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.2rem;
}
.about-link {
    width: 29.2rem;
    border-radius: 0.5rem;
    border: 1px solid #343434;
    color: #343434;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.6rem;
    padding: 0.5rem;
    text-align: center;
}
.about-img2 {
    width: 69.4rem;
    min-width: 69.4rem;
    object-fit: cover;
    height: 50.3rem;
}

@media screen and (max-width: 1440px) {
	.about-img1 {
		width: 37.8rem;
		min-width: 37.8rem;
		height: 42.3rem;
	}
	.about-img2 {
		width: 35.4rem;
		min-width: 35.4rem;
		height: 42.3rem;
	}
}

@media screen and (max-width: 992px) {
    .about {
        margin-bottom: 1.5rem;
    }
    .about-container {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    .about-img1 {
        display: none;
    }
    .about-main {
        padding: 0 1.5rem;
        align-items: center;
        gap: 2.5rem;
    }
    .about-title {
        text-align: center;
    }
    .about-description {
        align-items: center;
        gap: 1.5rem;
    }
    .about-description p {
        text-align: center;
    }
    .about-link {
        width: 29rem;
        font-size: 1.6rem;
        line-height: 2.8rem;
        padding: 1rem;
    }
    .about-img2 {
        width: 100%;
        min-width: 100%;
        height: 23.8rem;
    }
}

/* individual */

.individual {
    margin-bottom: 5.5rem;
}
.individual-container {
    height: 87.4rem;
    position: relative;
    display: flex;
    max-width: 181rem;
}
.individual-fon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}
.individual-col {
    display: flex;
    max-width: 32.4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.6rem;
    position: absolute;
    z-index: 5;
    right: 15.2rem;
    bottom: 26.2rem;
}
.individual-title {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
}
.individual-title span {
    background: #fff;
    padding: 0.12em 0.4em;
    border-radius: 0.6rem;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    box-shadow: 0.15em 0 0 #fff, -0.15em 0 0 #fff;
}
.individual-link {
    width: 31.5rem;
    border-radius: 0.5rem;
    border: 1px solid #FFF;
    background: #FFF;
    padding: 0.5rem;
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.6rem;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .individual {
        margin-bottom: 3rem;
    }
    .individual-container {
        height: 32.3rem;
        max-width: 29rem;
    }
    .individual-col {
        max-width: 26.6rem;
        width: 26.6rem;
        align-items: center;
        gap: 1.7rem;
        right: 0;
        left: 0;
        margin: 0 auto;
        bottom: 1.6rem;
    }
    .individual-title {
        font-size: 1.6rem;
        max-width: 22.6rem;
        text-align: center;
        line-height: 2.2rem;
    }
    .individual-link {
        width: 100%;
        padding: 0.2rem;
    }
}

/* footer */

footer {
    background: #2E2E2E;
    padding: 7.1rem 0 5.5rem 0;
}
.footer-container {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-main {
    width: 100%;
    max-width: 33.1rem;
    display: flex;
    flex-direction: column;
    gap: 5.6rem;
    align-items: flex-start;
}
.footer-logo {
    display: flex;
}
.footer-logo img {
    width: 25.4rem;
    filter: brightness(0) invert(1);
}
.bapf_sfilter[data-taxonomy="product_cat"] .bapf_head h3:empty::before {
    content: "Категория";
}
.bapf_sfilter[data-taxonomy="price"] .bapf_head h3:empty::before {
    content: "Цена";
}
.footer-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}
.footer-form p {
    margin-bottom: 1.2rem;
    color: #FFF;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.4rem;
}
.footer-form__col {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.footer-form__col > input {
    color: #FFF;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.4rem;
    width: 100%;
    padding-bottom: 2rem;
    border-bottom: 1px solid #5D5D5D;
}
.footer-form__col > input::placeholder {
    color: #FFF;
}
.footer-form__checkbox {
    display: flex;
    align-items: flex-start;
}
.footer-form__checkbox input[type=checkbox]:before {
    content:"";
    display:inline-block;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 0.3rem;
    background-color: #FFF;
    position: absolute;
    cursor: pointer;
}
.footer-form__checkbox input[type=checkbox]:checked:before {
    background:transparent;
    background-image: url('/wp-content/uploads/2025/11/checkbox.svg');
    background-size: 1.4rem;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
}
.footer-form__checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
}
.footer-form__checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}
.footer-form__checkbox input[type="checkbox"]:checked {
    background-image: none;
}
.footer-form__checkbox label {
    color: #FFF;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    padding-left: 2.5rem;
}
.footer-form__checkbox label a {
    color: #FFF;
    text-decoration-line: underline;
}
.footer-form__submit {
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.6rem;
    border-radius: 0.5rem;
    border: 1px solid #FFF;
    background: #FFF;
    padding: 0.5rem;
    text-align: center;
}
.footer-menu ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
}
.footer-menu ul li {
    display: flex;
    list-style: none;
}
.footer-menu ul li a {
    color: #FFF;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.4rem;
    width: 20.3rem;
}
.footer-contact {
    color: #FFF;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
}
.footer-email {
    color: #FFF;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.6rem;
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 20.3rem;
}
.footer-links a {
    color: #FFF;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.footer-main .footer-menu {
    display: none;
}
.footer-main .footer-contacts {
    display: none;
}

@media screen and (max-width: 992px) {
    footer {
        padding: 2.2rem 0 3.9rem 0;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 3.6rem;
    }
    .footer-main {
        max-width: none;
        gap: 3.9rem;
        align-items: center;
    }
    .footer-form {
        align-items: center;
        gap: 2.1rem;
    }
    .footer-form p {
        margin-bottom: 0;
        text-align: center;
    }
    .footer-form__col {
        gap: 2.1rem;
    }
    .footer-form__col > input {
        text-align: center;
        padding-bottom: 1rem;
    }
    .footer-form__checkbox {
        max-width: 20.1rem;
    }
    .footer-form__checkbox label {
        text-align: center;
        padding-left: 2.2rem;
    }
    .footer-form__submit {
        width: 100%;
        font-size: 1.6rem;
        padding: 0.1rem;
    }
    .footer-menu {
        display: none;
    }
    .footer-menu ul {
        align-items: center;
        gap: 1.5rem;
    }
    .footer-menu ul li a {
        text-align: center;
    }
    .footer-contacts {
        display: none;
        align-items: center;
        gap: 2.5rem;
        width: auto;
    }
    .footer-links {
        align-items: center;
        gap: 1rem;
        position: relative;
        max-width: none;
    }
    .footer-links a {
        font-size: 1.4rem;
        text-align: center;
        max-width: 17.1rem;
    }
    .footer-main .footer-menu {
        display: flex;
    }
    .footer-main .footer-contacts {
        display: flex;
    }
}

/* login */

.login {
    margin: 6rem 0;
}
.login-container {
    display: flex;
    flex-direction: column;
    gap: 3.8rem;
}
.title {
    color: #000;
    text-align: center;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.login-form {
    display: flex;
    flex-direction: column;
    gap: 2.6rem;
    max-width: 51.6rem;
    margin: 0 auto;
    width: 100%;
}
.login-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.login-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.login-input input {
    color: #000;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 0.5rem;
    background: #EEE;
    padding: 2rem;
    width: 100%;
}
.login-input input::placeholder {
    color: #000;
}
.login-submit {
    border-radius: 0.5rem;
    background: #000;
    color: #FFF;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 128.906%;
    padding: 1.6rem;
    margin: 0 auto;
    width: 27.7rem;
}
.login-link {
    margin: 0 auto;
    color: #000;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 128.906%;
    text-decoration-line: underline;
}
.login-agreement {
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 2.6rem;
}
.login-agreement label {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    padding-left: 3.1rem;
}
.login-agreement label a {
    color: #000;
    text-decoration-line: underline;
}
.login-agreement input[type=checkbox]:before {
    content:"";
    display:inline-block;
    width: 2rem;
    height: 2rem;
    background-color: #D9D9D9;
    position: absolute;
    margin-top: -1rem;
    cursor: pointer;
}
.login-agreement input[type=checkbox]:checked:before {
    background:transparent;
    background-image: url('/wp-content/uploads/2025/11/checkbox2.svg');
    background-size: 2rem;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
}
.login-agreement input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
}
.login-agreement input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}
.login-agreement input[type="checkbox"]:checked {
    background-image: none;
}

@media screen and (max-width: 992px) {
    .login {
        margin: 3rem 0;
    }
    .login-container {
        gap: 1.6rem;
    }
    .title {
        font-size: 2.4rem;
        line-height: 2.6rem;
    }
    .login-form {
        gap: 1.8rem;
        max-width: none;
    }
    .login-inputs {
        gap: 0.8rem;
    }
    .login-input input {
        border-radius: 0.2rem;
        padding: 1.5rem;
    }
    .login-submit {
        border-radius: 0.2rem;
        padding: 1.8rem;
        width: 100%;
    }
    .login-agreement {
        max-width: 20.5rem;
        margin-bottom: 1rem;
        align-items: flex-start;
    }
    .login-agreement label {
        font-size: 1.4rem;
        padding-left: 2rem;
        text-align: center;
    }
    .login-agreement input[type=checkbox]:before {
        width: 1.7rem;
        height: 1.7rem;
        margin-top: 0;
    }
    .login-agreement input[type=checkbox]:checked:before {
        background-size: 1.7rem;
    }
}

/* breadcrumbs */

.breadcrumbs {
    margin-top: 3rem;
    margin-bottom: 4rem;
}
.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.breadcrumbs ul li {
    list-style: none;
    display: flex;
}
.breadcrumbs p {
    color: #000;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.breadcrumbs a {
    color: #000;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media screen and (max-width: 992px) {
    .breadcrumbs {
        margin-top: 1rem;
        margin-bottom: 3.8rem;
    }
    .breadcrumbs ul {
        gap: 0.5rem;
    }
}

/* delivery */

.delivery {
    margin-bottom: 6rem;
}
.delivery-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.delivery .title {
    text-align: left;
}
.delivery-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.delivery-content p {
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.delivery-content p b {
    font-weight: 700;
}
.delivery-content ul, .delivery-content ol {
    padding: 0;
    margin: 0;
    padding-left: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.delivery-content li {
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.delivery-content a {
    color: #000;
    text-decoration: underline;
}
.delivery-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.delivery-content .opt-link {
    color: #FFF;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.6rem;
    text-decoration: none;
    width: 29.2rem;
    border-radius: 0.5rem;
    background: #000;
    padding: 0.5rem;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .delivery {
        margin-bottom: 3rem;
    }
    .delivery-container {
        gap: 2rem;
    }
    .delivery .title {
        text-align: center;
    }
    .delivery-content {
        gap: 2.5rem;
    }
    .delivery-content p {
        font-size: 1.6rem;
        text-align: center;
    }
    .delivery-content ul, .delivery-content ol {
        padding-left: 2rem;
    }
    .delivery-content li {
        font-size: 1.6rem;
        text-align: center;
    }
    .delivery-content .opt-link {
        width: 100%;
    }
}

/* catalog */

.catalog {
    margin: 3rem 0 6rem 0;
}
.catalog-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.catalog-name h1 {
    color: #000;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 5.6rem;
    text-transform: uppercase;
}
.catalog-filter__button {
    display: none;
}
.catalog-content {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
}
.catalog-left {
    position: sticky;
    top: 10rem;
    display: flex;
    flex-direction: column;
    width: 33.4rem;
    min-width: 33.4rem;
	background: #F5F5F5;
    padding: 1.6rem;
	gap: 3rem;
}
.bapf_sfilter {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.bapf_head h3 {
	color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.reset_variations {
	display: none !important;
}
.woocommerce-variation-description {
	display: none !important;
}
.product_page-content .quantity {
	display: none !important;
}



.catalog-right {
    display: flex;
    flex-direction: column;
    gap: 7.8rem;
    width: 100%;
}
.catalog-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.catalog_item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.catalog_item-wishlist {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.catalog_item-wishlist svg {
    width: 3rem;
    height: auto;
}
.catalog_item-wishlist.active svg path {
    fill: #000;
}
.catalog_item-img {
    background: #E8E8E8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 26.2rem;
}
.catalog_item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.catalog_item-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}
.catalog_item-price {
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.catalog_item-title {
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.catalog-pagination {
    display: flex;
    align-items: center;
    gap: 1.9rem;
    justify-content: center;
}
.catalog-pagination ul {
    display: flex;
    align-items: center;
    gap: 1.9rem;
    justify-content: center;
}
.catalog-pagination ul li {
    display: flex;
    list-style: none;
}
.catalog-pagination__prev {
    color: #4D4D4D;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 1rem;
    background: #FFF;
    padding: 2.4rem 0;
    width: 10rem;
}
.catalog-pagination__item {
    width: 6.8rem;
    height: 6.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4D4D4D;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.catalog-pagination__item.active {
    width: 4.3rem;
    height: 4.3rem;
    border: 1px solid #969696;
}
.catalog-pagination__next {
    color: #4D4D4D;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 1rem;
    background: #FFF;
    padding: 2.4rem 0;
    width: 10rem;
}
.catalog-filter-name {
	display: none;
}

@media screen and (max-width: 992px) {
    .catalog {
        margin: 0 0 3rem 0;
    }
    .catalog-container {
        gap: 1.8rem;
    }
    .catalog-name {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .catalog-name h1 {
        font-size: 2.4rem;
        line-height: 2.4rem;
    }
    .catalog-filter__button {
        border: 1px solid #969696;
        padding: 1rem;
        color: #969696;
        text-align: center;
        font-size: 1.4rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.6rem;
        display: block;
    }
    .catalog-content {
        flex-direction: column;
    }
	.catalog-filter-name {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid #B0B0B0;
        padding: 1.5rem;
	}
	.catalog-filter-name p {
		color: #000;
		font-size: 1.6rem;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
	}
	.catalog-filter-close {
		color: #000;
		font-size: 1.6rem;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		position: absolute;
		left: 1.6rem;
	}
    .catalog-left {
		padding: 6.7rem 1.5rem 2rem 1.5rem;
		gap: 1.6rem;
        display: none;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
		overflow-y: auto;
		background: #F5F5F5;
		width: 100%;
		min-width: 100%;
		max-height: 100%;
    }
    .catalog-right {
        gap: 3.2rem;
    }
    .catalog-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 0.5rem;
    }
    .catalog_item {
        gap: 0.8rem;
    }
    .catalog_item-wishlist svg {
        width: 2rem;
    }
    .catalog_item-img {
        height: 14.3rem;
    }
    .catalog_item-main {
        gap: 0.5rem;
    }
    .catalog_item-price {
        font-size: 1.4rem;
    }
    .catalog_item-title {
        font-size: 1.4rem;
    }
    .catalog-pagination {
        gap: 0.2rem;
    }
    .catalog-pagination ul {
        gap: 0.2rem;
    }
    .catalog-pagination__prev {
        font-size: 1.4rem;
        padding: 0 0.5rem;
        width: auto;
    }
    .catalog-pagination__item {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.6rem;
    }
    .catalog-pagination__item.active {
        width: 2.5rem;
        height: 2.5rem;
    }
    .catalog-pagination__next {
        font-size: 1.4rem;
        padding: 0 0.5rem;
        width: auto;
    }
	.bapf_sfilter {
		gap: 1rem;
	}
	.bapf_head h3 {
		font-size: 1.6rem;
	}
}

/* account */

.account {
    margin: 6rem 0;
}
.account-container, .account-container .woocommerce {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.account-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.2rem;
    position: sticky;
    top: 10rem;
}
.account-menu__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.2rem;
}
.account-menu ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.account-menu ul li {
    display: flex;
    list-style: none;
}
.account-menu__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.account-menu__item p {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 128.906%;
}
.account-menu__item svg {
    width: 1.8rem;
    height: auto;
}
.account-menu__item.active p {
    text-decoration-line: underline;
    font-weight: 700;
}
.account-logout {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 128.906%;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.account-logout svg {
    width: 1.7rem;
    height: auto;
}
.account-content {
    width: 100%;
    max-width: 85.6rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.account-name {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.account-title {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 128.906%;
}
.account_history_count {
    color: #A5A5A5;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 128.906%;
}
.account_history {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.account_history-item {
    border-radius: 0.5rem;
    border: 1px solid #DBDBDB;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.account_history-item__title {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.account_history-item__title p {
    color: #000;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.account_history-item__title p span {
    color: #A5A5A5;
}
.account_history-item__title svg {
    width: 0.6rem;
    height: auto;
}
.account_history-item__products {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.account_history-item__product {
    background: #E8E8E8;
    display: flex;
    width: 13.4rem;
    height: 13.4rem;
    justify-content: center;
    align-items: center;
}
.account_history-item__product img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.account-menu__button {
    display: none;
}
.account-content .woocommerce-notices-wrapper {
	display: none;
}

@media screen and (max-width: 992px) {
    .account {
        margin: 1rem 0 3rem 0;
    }
    .account-container, .account-container .woocommerce {
        flex-direction: column;
        gap: 4rem;
    }
    .account-menu {
        gap: 0;
        position: relative;
        top: 0;
        width: 100%;
    }
    .account-menu__col {
        width: 100%;
        position: absolute;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        left: 0;
        top: 100%;
        z-index: 9;
        border: 1px solid #C9C9C9;
        border-top: none;
        background: #fff;
    }
    .account-menu__col.active {
        max-height: none;
    }
    .account-menu nav {
        padding: 3.4rem 1.7rem;
        width: 100%;
    }
    .account-menu ul {
        gap: 1.8rem;
    }
    .account-menu__item {
        gap: 1.7rem;
    }
    .account-logout {
        width: 100%;
        border-top: 1px solid #B0B0B0;
        padding: 1.8rem 1.7rem;
        gap: 2rem;
    }
    .account-content {
        max-width: none;
        gap: 1.7rem;
    }
    .account_history {
        gap: 1.7rem;
    }
    .account_history-item {
        padding: 2rem 1.4rem;
    }
    .account-menu__button {
        display: flex;
        border: 1px solid #C9C9C9;
        padding: 1.5rem 1.4rem;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .account-menu__button > svg {
        width: 0.6rem;
        height: auto;
    }
    .account-menu__button-row {
        display: flex;
        align-items: center;
        gap: 1.1rem;
    }
    .account-menu__button-row svg {
        width: 2.4rem;
        height: auto;
    }
    .account-menu__button-row p {
        color: #000;
        text-align: center;
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
}

/* account_address */

.account_address {
    max-width: 51.6rem;
    display: flex;
    flex-direction: column;
}
.account_address-form {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.account_address-inputs {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.account_address-input {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.account_address-input label {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.account_address-input input {
    border-radius: 0.5rem;
    background: #EEE;
    padding: 2rem 2.2rem;
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
}
.account_address-submit {
    border-radius: 0.5rem;
    background: #000;
    margin-right: auto;
    width: 27.7rem;
    color: #FFF;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 128.906%;
    padding: 1.6rem;
}

@media screen and (max-width: 992px) {
    .account_address {
        max-width: none;
    }
    .account_address-form {
        gap: 1.8rem;
    }
    .account_address-input {
        align-items: center;
        gap: 0.5rem;
    }
    .account_address-input label {
        text-align: center;
    }
    .account_address-input input {
        text-align: center;
        padding: 1.5rem 2.2rem;
    }
    .account_address-submit {
        width: 100%;
    }
    .account2 .account-title {
        margin: 0 auto;
        text-align: center;
    }
}

/* account_contacts */

.account_contacts .account_address-form {
    gap: 3rem;
}
.account_contacts .login-agreement {
    margin-left: 0;
    margin-bottom: 0;
}
.account_contacts-password {
    display: none;
}
.account_contacts-password.active {
    display: flex;
}
.account_contacts .account_address-submit {
    margin: 0 auto;
}

@media screen and (max-width: 992px) {
    .account_contacts .account_address-form {
        gap: 2.5rem;
    }
    .account_contacts .login-agreement {
        margin-left: auto;
    }
}

/* wishlist */

.wishlist {
    margin-bottom: 6rem;
}
.wishlist-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

@media screen and (max-width: 992px) {
    .wishlist {
        margin-bottom: 3cap;
    }
    .wishlist-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 0.5rem;
    }
}

/* cart */

.cart {
    margin-bottom: 6rem;
}
.cart-container {
    display: flex;
    flex-direction: column;
    gap: 12rem;
}
.cart-main {
    display: flex;
    gap: 4.2rem;
    align-items: flex-start;
}
.cart-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}
.cart-name {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}
.cart-name .title {
    text-align: left;
}
.cart-count {
    color: #A5A5A5;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.cart-form {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.cart-form__name {
    display: flex;
    align-items: center;
    gap: 7.8rem;
    padding-bottom: 3.4rem;
    border-bottom: 1px solid #B0B0B0;
}
.cart-form__all {
    display: flex;
    align-items: center;
    position: relative;
}
.cart-form__all label {
    padding-left: 3.1rem;
    cursor: pointer;
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.cart-form__all input[type=checkbox]:before {
    content:"";
    display:inline-block;
    width: 2rem;
    height: 2rem;
    position: absolute;
    margin-top: -1rem;
    cursor: pointer;
    border: 1px solid #B0B0B0;
}
.cart-form__all input[type=checkbox]:checked:before {
    background:transparent;
    background-image: url('/wp-content/uploads/2025/11/checkbox2.svg');
    background-size: 2rem;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
}
.cart-form__all input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
}
.cart-form__all input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}
.cart-form__all input[type="checkbox"]:checked {
    background-image: none;
}
.cart-form__delete {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}
.cart-form__products {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.cart-form__product {
    position: relative;
    padding-left: 4.4rem;
    display: flex;
    align-items: flex-start;
    gap: 3.2rem;
}
.cart-form__product input[type=checkbox]:before {
    content:"";
    display:inline-block;
    width: 2rem;
    height: 2rem;
    border: 1px solid #B0B0B0;
    position: absolute;
    cursor: pointer;
}
.cart-form__product input[type=checkbox]:checked:before {
    background:transparent;
    background-image: url('/wp-content/uploads/2025/11/checkbox2.svg');
    background-size: 2rem;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
}
.cart-form__product input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
}
.cart-form__product input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}
.cart-form__product input[type="checkbox"]:checked {
    background-image: none;
}
.cart-form__product > input {
    position: absolute;
    top: 0;
    left: 0;
}
.cart-form__product-img {
    width: 13.4rem;
    height: 13.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E8E8E8;
}
.cart-form__product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.cart-form__product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    max-width: 30rem;
}
.cart-form__product-title {
    color: #000;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.cart-form__product-size {
    color: #000;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.cart-form__product-price {
    color: #000;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.cart-form__product-quantity {
    border-radius: 0.5rem;
    border: 1px solid #EDEDED;
    background: #FFF;
    width: 12.2rem;
    height: 3.5rem;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
}
.cart-form__product-quantity input {
    width: 100%;
    color: #2B2B2B;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}
.cart-form__product-quantity input::-webkit-outer-spin-button,
.cart-form__product-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.cart-form__product-quantity input[type="number"] {
    -moz-appearance: textfield;
}
.cart-form__product-quantity__minus {
    width: 3rem;
    min-width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart-form__product-quantity__minus svg {
    width: 1.2rem;
    height: auto;
}
.cart-form__product-quantity__plus {
    width: 3rem;
    min-width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart-form__product-quantity__plus svg {
    width: 1.2rem;
    height: auto;
}
.cart-right {
    border-radius: 0.5rem;
    border: 1px solid #DDD;
    background: #FFF;
    box-shadow: 0 2px 7.6px 0 rgba(101, 101, 101, 0.25);
    width: 35.6rem;
    min-width: 35.6rem;
    display: flex;
    flex-direction: column;
    gap: 5.5rem;
    position: sticky;
    top: 10rem;
    padding: 2.2rem;
}
.cart-total__col {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
}
.cart-total__title {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
}
.cart-total__column {
    display: flex;
    flex-direction: column;
    gap: 5.5rem;
}
.cart-total__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-total__row p {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}
.cart-total__row2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-total__row2 p {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
}
.cart-total__row2 p:nth-child(2) {
    font-weight: 400;
}
.cart-link {
    border-radius: 0.5rem;
    background: #000;
    padding: 1.6rem;
    color: #FFF;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 128.906%;
	width: 100%;
}
.cart-add {
    display: flex;
    flex-direction: column;
    gap: 5.4rem;
}
.cart-add .title {
    font-weight: 400;
    text-align: left;
}
.cart-add-sider {
    display: flex;
    align-items: center;
    position: relative;
}
.cart-add_swiper {
    width: 100%;
    max-width: 113.5rem;
}
.cart-add_swiper .swiper-slide {
    height: auto;
}
.cart-add__prev {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.6rem;
    height: 4.6rem;
    border-radius: 100%;
    background: #FFF;
    box-shadow: 0 2px 6.2px 0 rgba(171, 171, 171, 0.25);
    position: absolute;
    left: 0;
    z-index: 3;
}
.cart-add__next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.6rem;
    height: 4.6rem;
    border-radius: 100%;
    background: #FFF;
    box-shadow: 0 2px 6.2px 0 rgba(171, 171, 171, 0.25);
    position: absolute;
    right: 0;
    z-index: 3;
}
.cart-add__prev svg {
    width: 0.8rem;
    height: auto;
}
.cart-add__next svg {
    width: 0.8rem;
    height: auto;
}

@media screen and (max-width: 992px) {
    .cart {
        margin-bottom: 3rem;
    }
    .cart-container {
        gap: 5rem;
    }
    .cart-main {
        flex-direction: column;
        gap: 2.8rem;
    }
    .cart-left {
        gap: 2rem;
    }
    .cart-name {
        gap: 1.6rem;
    }
    .cart-count {
        font-size: 2.4rem;
    }
    .cart-form {
        gap: 2rem;
    }
    .cart-form__name {
        justify-content: space-between;
        gap: 0;
        padding-bottom: 2.8rem;
    }
    .cart-form__products {
        gap: 2.8rem;
    }
    .cart-form__product {
        padding-left: 0;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .cart-form__product-info {
        align-items: center;
        gap: 0.5rem;
        max-width: none;
    }
    .cart-form__product-title {
        font-size: 1.6rem;
        text-align: center;
    }
    .cart-form__product-size {
        font-size: 1.6rem;
        text-align: center;
    }
    .cart-form__product-price {
        font-size: 1.6rem;
        text-align: center;
    }
    .cart-form__product-quantity {
        margin-right: auto;
    }
    .cart-right {
        width: 100%;
        min-width: 100%;
        gap: 3rem;
        position: relative;
        top: 0;
        padding: 2rem 1.5rem;
    }
    .cart-total__col {
        gap: 2.9rem;
    }
    .cart-total__title {
        text-align: center;
    }
    .cart-total__column {
        gap: 3.5rem;
    }
    .cart-add {
        gap: 2rem;
    }
    .cart-add .title {
        text-align: center;
    }
    .cart-add-sider {
        flex-direction: column;
        gap: 3rem;
    }
    .cart-add_swiper {
        max-width: none;
    }
    .cart-add__buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
    }
    .cart-add__prev {
        width: 2.6rem;
        height: 2.6rem;
        border: 1px solid #B6B6B6;
        box-shadow: none;
        position: relative;
    }
    .cart-add__next {
        width: 2.6rem;
        height: 2.6rem;
        border: 1px solid #B6B6B6;
        box-shadow: none;
        position: relative;
    }
    .cart-add__prev svg {
        width: 0.5rem;
    }
    .cart-add__next svg {
        width: 0.5rem;
    }
    .cart-add__prev svg path {
        fill: #B6B6B6;
    }
    .cart-add__next svg path {
        fill: #B6B6B6;
    }
}

/* checkout */

.checkout {
    margin-bottom: 7.5rem;
}
.checkout-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.checkout-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    max-width: 51.6rem;
}
.checkout .title {
    text-align: left;
}
.checkout-col {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.checkout-item {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.checkout-item > h3 {
    color: #000;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.account_address-input textarea {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 0.5rem;
    background: #EEE;
    padding: 1.6rem;
    width: 100%;
    height: 14.5rem;
    min-height: 14.5rem;
}
.account_address-input textarea::placeholder {
    color: #000;
}
.checkout-delivery {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
}
.checkout-delivery li {
    display: flex;
    align-items: flex-start;
    position: relative;
}
.checkout-delivery label {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    padding-left: 3.1rem;
}
.checkout-delivery label b {
    font-weight: 700;
}
.checkout-delivery input[type=radio]:before {
    content:"";
    display:inline-block;
    width: 2rem;
    height: 2rem;
    border: 1px solid #B0B0B0;
    border-radius: 100%;
    position: absolute;
    cursor: pointer;
}
.checkout-delivery input[type=radio]:checked:before {
    background:transparent;
    background-image: url('/wp-content/uploads/2025/11/radio.svg');
    background-size: 2rem;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
}
.checkout-delivery input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
}
.checkout-delivery input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}
.checkout-delivery input[type="radio"]:checked {
    background-image: none;
}
.checkout .login-agreement {
    margin-left: 0;
    align-items: flex-start;
    margin-bottom: 0;
}
.checkout .login-agreement input[type=checkbox]:before {
    margin-top: 0;
}
.checkout-right {
    position: sticky;
    top: 10rem;
    border-radius: 0.5rem;
    border: 1px solid #DDD;
    background: #FFF;
    box-shadow: 0 2px 7.6px 0 rgba(101, 101, 101, 0.25);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 2.2rem;
    width: 35.6rem;
    min-width: 35.6rem;
}
.checkout-order {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /*добавил отступ под блоком с картинками из заказа #sb*/
    margin-bottom:1.5rem;
}
.checkout-order__title {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
}
.checkout-order__products {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.checkout-order__product {
    background: #E8E8E8;
    display: flex;
    width: 8.4rem;
    height: 8.4rem;
}
.checkout-order__product img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.checkout-order__col {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.checkout-order__col > p {
    color: #000;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 128.906%;
}
.checkout-order__col > p b {
    font-weight: 700;
}

@media screen and (max-width: 992px) {
    .checkout {
        margin-bottom: 3rem;
    }
    .checkout-container {
        flex-direction: column;
        gap: 4rem;
    }
    .checkout-left {
        gap: 2.5rem;
        max-width: none;
    }
    .checkout .title {
        text-align: center;
    }
    .checkout-col {
        gap: 2.5rem;
    }
    .checkout-item {
        gap: 1.5rem;
    }
    .checkout-item > h3 {
        text-align: center;
    }
    .account_address-input textarea {
        padding: 1.3rem;
        height: 11.4rem;
        min-height: 11.4rem;
    }
    .account_address-input textarea::placeholder {
        text-align: center;
    }
    .checkout-delivery {
        gap: 0.8rem;
    }
    .checkout .login-agreement {
        margin-left: auto;
        max-width: 23.5rem;
    }
    .checkout-right {
        position: relative;
        top: 0;
        gap: 1.2rem;
        padding: 0.7rem 0.7rem 1.4rem 0.7rem;
        width: 100%;
        min-width: 100%;
    }
    .checkout-order {
        gap: 1.2rem;
    }
    .checkout-order__title {
        font-size: 2rem;
    }
    .checkout-order__products {
        gap: 0.5rem;
    }
    .checkout-order__product {
        width: 7rem;
        height: 7rem;
    }
    .checkout-order__col {
        gap: 1.5rem;
    }
    .checkout-order__col > p {
        font-size: 1.3rem;
    }
}

/* about_page */

.about_page-container {
    display: flex;
    flex-direction: column;
}
.about_page-banner {
    height: 76.7rem;
}
.about_page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_page-sport {
    margin: 6.6rem 0 7.8rem 0;
}
.about_page-sport__container {
    display: flex;
    flex-direction: column;
    gap: 7.8rem;
}
.about_page-sport__name {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.about_page-sport__title {
    color: #000;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.6rem;
    text-transform: uppercase;
    max-width: 51.5rem;
}
.about_page-sport__description {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem;
    max-width: 52.8rem;
}
.about_page-sport__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.about_page-sport__item {
    background: #F4F4F4;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 3rem;
}
.about_page-sport__item-title {
    color: #000;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.8rem;
    text-transform: uppercase;
}
.about_page-sport__item-description {
    color: #303030;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem;
}
.about_page-equipment {
    margin-bottom: 8.7rem;
}
.about_page-equipment__container {
    display: flex;
    flex-direction: column;
    gap: 5.6rem;
}
.about_page-title {
    color: #000;
    text-align: center;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.6rem;
}
.about_page-equipment__col {
    display: flex;
    flex-direction: column;
    gap: 5.6rem;
}
.about_page-equipment__slider {
    display: flex;
    align-items: center;
    position: relative;
}
.about_page-equipment__swiper {
    width: 100%;
    max-width: 105.3rem;
}
.about_page-equipment__swiper .swiper-slide {
    height: auto;
}
.about_page-equipment__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.about_page-equipment__prev {
    position: absolute;
    left: 0;
    width: 6.2rem;
    height: 6.2rem;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #BCBCBC;
}
.about_page-equipment__next {
    position: absolute;
    right: 0;
    width: 6.2rem;
    height: 6.2rem;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #BCBCBC;
}
.about_page-equipment__prev svg {
    width: 1.1rem;
    height: auto;
}
.about_page-equipment__next svg {
    width: 1.1rem;
    height: auto;
}
.about_page-equipment__link {
    color: #FFF;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 128.906%;
    width: 20.9rem;
    border-radius: 0.5rem;
    background: #000;
    padding: 1.6rem;
    margin: 0 auto;
}
.about_page-trust {
    background: #F4F4F4;
    padding: 5rem 0 6rem 0;
}
.about_page-trust__container {
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
}
.about_page-trust__sliders {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.about_page-trust__sliders .swiper {
    width: 100%;
}
.about_page-trust__sliders .swiper .swiper-slide {
    height: auto;
    width: 20.1rem;
}
.about_page-trust__item {
    border-radius: 0.8rem;
    background: #2E2E2E;
    height: 20.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about_page-trust__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.about_page-our_equipment {
    margin: 6rem 0;
}
.about_page-our_equipment__container {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}
.about_page-our_equipment__slider {
    display: flex;
    align-items: center;
    position: relative;
}
.about_page-our_equipment__swiper {
    width: 100%;
    max-width: 101.3rem;
}
.about_page-our_equipment__swiper .swiper-slide {
    height: auto;
}
.about_page-our_equipment__item {
    display: flex;
    height: 64.9rem;
    width: 100%;
}
.about_page-our_equipment__item img {
/*     width: 100%;
    height: 100%; */
	margin: 0 auto;
    object-fit: cover;
}
.about_page-our_equipment__prev {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid #6A6A6A;
    width: 6.2rem;
    height: 6.2rem;
    position: absolute;
    left: 0;
}
.about_page-our_equipment__next {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid #6A6A6A;
    width: 6.2rem;
    height: 6.2rem;
    position: absolute;
    right: 0;
}
.about_page-our_equipment__prev svg {
    width: 1.1rem;
    height: auto;
}
.about_page-our_equipment__next svg {
    width: 1.1rem;
    height: auto;
}

@media screen and (max-width: 992px) {
    .about_page-banner {
        height: 49.9rem;
    }
    .about_page-sport {
        margin: 1.7rem 0 4.5rem 0;
    }
    .about_page-sport__container {
        gap: 4rem;
    }
    .about_page-sport__name {
        flex-direction: column;
        align-items: center;
        gap: 1.7rem;
    }
    .about_page-sport__title {
        font-size: 2.2rem;
        line-height: 2.6rem;
        text-align: center;
        max-width: none;
    }
    .about_page-sport__description {
        text-align: center;
        line-height: 2.2rem;
        max-width: none;
    }
    .about_page-sport__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        min-width: 100vw;
        margin-left: -1.5rem;
    }
    .about_page-sport__item {
        padding: 2rem 1.5rem;
        align-items: center;
        gap: 1rem;
    }
    .about_page-sport__item-title {
        text-align: center;
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
    .about_page-sport__item-description {
        text-align: center;
        font-size: 1.6rem;
        line-height: 2.3rem;
    }
    .about_page-equipment {
        margin-bottom: 4rem;
    }
    .about_page-equipment__container {
        gap: 1.6rem;
    }
    .about_page-title {
        font-size: 2.2rem;
        line-height: 3rem;
    }
    .about_page-equipment__col {
        gap: 2.5rem;
    }
    .about_page-equipment__slider {
        flex-direction: column;
        gap: 1.6rem;
    }
    .about_page-equipment__buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
    }
    .about_page-equipment__prev {
        position: relative;
        width: 2.6rem;
        height: 2.6rem;
    }
    .about_page-equipment__next {
        position: relative;
        width: 2.6rem;
        height: 2.6rem;
    }
    .about_page-equipment__prev svg {
        width: 0.6rem;
    }
    .about_page-equipment__next svg {
        width: 0.6rem;
    }
    .about_page-equipment__link {
        width: 100%;
    }
    .about_page-trust {
        padding: 4rem 0;
    }
    .about_page-trust__container {
        gap: 3.2rem;
    }
    .about_page-trust__sliders {
        gap: 1.2rem;
    }
    .about_page-trust__sliders .swiper .swiper-slide {
        width: 9.3rem;
    }
    .about_page-trust__item {
        border-radius: 0.4rem;
        height: 9.3rem;
    }
    .about_page-trust__item img {
        max-width: 80%;
        max-height: 80%;
    }
    .about_page-our_equipment {
        margin: 3rem 0;
    }
    .about_page-our_equipment__container {
        gap: 2.6rem;
    }
    .about_page-our_equipment__slider {
        flex-direction: column;
        gap: 2rem;
    }
    .about_page-our_equipment__swiper {
        min-width: 100vw;
        margin-left: -1.5rem;
    }
    .about_page-our_equipment__item {
        height: 20.7rem;
    }
    .about_page-our_equipment__buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
    }
    .about_page-our_equipment__prev {
        position: relative;
        width: 2.6rem;
        height: 2.6rem;
    }
    .about_page-our_equipment__next {
        position: relative;
        width: 2.6rem;
        height: 2.6rem;
    }
    .about_page-our_equipment__prev svg {
        width: 0.6rem;
    }
    .about_page-our_equipment__next svg {
        width: 0.6rem;
    }
}

/* product_page */

.product_page {
    margin-bottom: 6rem;
}
.product_page-container {
    display: flex;
    flex-direction: column;
    gap: 8.4rem;
}
.product_page-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.product_page-images {
    height: 42.3rem;
    display: flex;
    gap: 2.5rem;
    width: 49.2rem;
    min-width: 49.2rem;
}
.product_page-images__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 5.7rem;
    min-width: 5.7rem;
}
.product_page-images__prev {
    display: flex;
}
.product_page-images__prev svg {
    width: 1.4rem;
    height: auto;
}
.product_page_thumbs {
    height: 33rem;
    width: 100%;
}
.product_page_thumbs .swiper-slide {
    cursor: pointer;
    background: #E8E8E8;
    height: 6.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s all;
}
.product_page_thumbs .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product_page_thumbs .swiper-slide-thumb-active {
    opacity: .5;
}
.product_page-images__next {
    display: flex;
}
.product_page-images__next svg {
    width: 1.4rem;
    height: auto;
}
.product_page_swiper {
    width: 100%;
}
.product_page_swiper .swiper-slide {
    height: auto;
}
.product_page_swiper-img {
    display: flex;
    width: 100%;
    height: 100%;
}
.product_page_swiper-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product_page-content {
    width: 100%;
    max-width: 64.1rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.product_page-col {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.product_page-title {
    color: #000;
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.product_page-sku {
    color: #000;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.product_page-form {
    display: flex;
    flex-direction: column;
    gap: 2.6rem;
}
.product_page-price, .woocommerce-variation-price {
    color: #000;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.single_variation_wrap {
    display: flex;
    flex-direction: column;
    gap: 2.6rem;
}
.product_page .variations tr {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
}
.product_page .variations label {
	color: #8D8D8D;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.product_page-variation {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.product_page-variation p {
    color: #8D8D8D;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.product_page-variation select, .product_page .variations select {
    width: 33.7rem;
    border-radius: 0.5rem;
    border: 1px solid #D7D7D7;
    padding: 1.5rem 1.3rem;
    cursor: pointer;
    background-image: url('/wp-content/uploads/2025/11/select.svg');
    background-position: center right 1rem;
    background-repeat: no-repeat;
    background-size: 1.4rem;
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 128.906%;
}
.product_page-variation select, .product_page .variations select {
    -webkit-appearance: none;
    -moz-appearance: none;
}
.product_page-variation select::-ms-expand, .product_page .variations select::-ms-expand {
    display: none;
}
.product_page-buttons {
    display: flex;
    gap: 0.7rem;
}
.product_page-submit {
    width: 27.7rem;
    border-radius: 0.5rem;
    background: #000;
    color: #FFF;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 128.906%;
    padding: 1.6rem;
}
.product_page-wishlist {
    width: 5.3rem;
    height: 5.3rem;
    border-radius: 0.5rem;
    border: 1px solid #D7D7D7;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_page-wishlist svg {
    width: 3rem;
    height: auto;
}
.product_page-wishlist.active svg path {
    fill: #000;
}
.product_page-description {
    display: flex;
    flex-direction: column;
    padding-bottom: 1.7rem;
    border-bottom: 1px solid #E2E2E2;
    margin-top: 2rem;
}
.product_page-description__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product_page-description__button p {
    color: #000;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}
.product_page-description__content {
    color: #000;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-height: 0;
    position: relative;
    overflow: hidden;
}
.product_page-description__content p {
    color: #000;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.product_page-description__content ol, .product_page-description__content ul {
	margin: 0;
	padding-left: 3rem;
}
.product_page-description.active .product_page-description__content {
    margin-top: 2rem;
}
.product_page-description.active .product_page-description__button p:nth-child(2) {
    transform: rotate(45deg);
}

@media screen and (max-width: 992px) {
    .product_page {
        margin-bottom: 3rem;
    }
    .product_page-container {
        gap: 5rem;
    }
    .product_page-main {
        flex-direction: column;
        gap: 4rem;
    }
    .product_page-images {
        height: auto;
        flex-direction: column-reverse;
        gap: 1rem;
        width: 100%;
        min-width: 100%;
    }
    .product_page-images__col {
        flex-direction: row;
        align-items: center;
        width: 100%;
        min-width: 100%;
    }
    .product_page-images__prev {
        transform: rotate(270deg);
    }
    .product_page-images__prev svg {
        width: 1.2rem;
    }
    .product_page_thumbs {
        height: auto;
        width: 100%;
        max-width: 25.4rem;
    }
    .product_page_thumbs .swiper-slide {
        height: 5.2rem;
    }
    .product_page-images__next {
        transform: rotate(-90deg);
    }
    .product_page-images__next svg {
        width: 1.2rem;
    }
    .product_page_swiper-img {
        height: 30rem;
    }
    .product_page-content {
        max-width: none;
        align-items: center;
        gap: 1.2rem;
    }
    .product_page-col {
        align-items: center;
        gap: 0.8rem;
    }
    .product_page-title {
        text-align: center;
        font-size: 2.2rem;
    }
    .product_page-sku {
        text-align: center;
    }
    .product_page-form {
        width: 100%;
        gap: 2.2rem;
    }
    .product_page-price, .woocommerce-variation-price {
        text-align: center;
        font-size: 1.8rem;
    }
	.single_variation_wrap {
		width: 100%;
		gap: 2.2rem;
	}
    .product_page-variation {
        gap: 0.8rem;
    }
    .product_page-variation p, .product_page .variations label {
        font-size: 1.2rem;
    }
	.product_page .variations td {
		width: 100%;
	}
    .product_page-variation select, .product_page .variations select {
        padding: 1.2rem 0.9rem;
        font-size: 1.5rem;
        width: 100%;
    }
    .product_page-submit {
        width: 100%;
        padding: 1.2rem;
    }
    .product_page-wishlist {
        width: 4.5rem;
        min-width: 4.5rem;
        height: 4.5rem;
    }
    .product_page-wishlist svg {
        width: 2rem;
    }
    .product_page-description {
        padding-bottom: 1.5rem;
        margin-top: 1rem;
    }
    .product_page-description__button p {
        font-size: 1.2rem;
    }
    .product_page-description__content {
        font-size: 1.2rem;
    }
    .product_page-description__content p {
        font-size: 1.2rem;
    }
    .product_page-description.active .product_page-description__content {
        margin-top: 1rem;
    }
}

/* woocommerce-pagination */

.woocommerce-pagination {
	display: none;
}
.woocommerce-account .woocommerce::after, .woocommerce-account .woocommerce::before {
    display: none;
}
.account-container .woocommerce {
	width: 100%;
}
.woocommerce ul#shipping_method li {
    margin: 0;
}
#add_payment_method #payment ul.payment_methods::after, #add_payment_method #payment ul.payment_methods::before, .woocommerce-cart #payment ul.payment_methods::after, .woocommerce-cart #payment ul.payment_methods::before, .woocommerce-checkout #payment ul.payment_methods::after, .woocommerce-checkout #payment ul.payment_methods::before {
	display: none;
}
.woocommerce ul#shipping_method li input {
    margin: 0;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: transparent;
}
#add_payment_method #payment div.form-row, .woocommerce-cart #payment div.form-row, .woocommerce-checkout #payment div.form-row {
    padding: 0;
    margin: 0;
}
#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods {
    text-align: left;
    padding: 0;
    border-bottom: none;
    margin: 0;
    list-style: none outside;
    margin-bottom: 2rem;
}
#add_payment_method #payment ul.payment_methods li input, .woocommerce-cart #payment ul.payment_methods li input, .woocommerce-checkout #payment ul.payment_methods li input {
    margin: 0;
}

@media screen and (max-width: 992px) {
    
}

/* size_page */

.size_page {
	margin-bottom: 15rem;
}
.size_page-container {
	display: flex;
    flex-direction: column;
    gap: 6rem;
}
.size_page-container > h1 {
    color: #000;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.size_page-main {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.size_page-main img {
	width: 100%;
}

@media screen and (max-width: 992px) {
	.size_page {
		margin-bottom: 4rem;
	}
	.size_page-container {
		gap: 1.2rem;
	}
	.size_page-container > h1 {
		font-size: 2.4rem;
		text-align: center;
	}
	.size_page-main {
		gap: 2rem;
	}
}

/* contacts_page */

.contacts_page {
	margin-bottom: 8rem;
}
.contacts_page-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contacts_page-container > h1 {
    color: #000;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.contacts_page-main {
	display: flex;
    flex-direction: column;
    gap: 6.5rem;
}
.contacts_page-row {
	display: flex;
    gap: 9.5rem;
}
.contacts_page-block {
	display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contacts_page-block p {
	color: #000;
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.contacts_page-block p:nth-child(1) {
	font-weight: 700;
}
.contacts_page-block2 {
	display: flex;
    flex-direction: column;
	align-items: flex-start;
    gap: 1rem;
}
.contacts_page-block2 a {
	color: #000;
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.contacts_page-row2 {
    display: flex;
    align-items: flex-end;
    gap: 22rem;
}
.contacts_page-row2 > a {
	color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}
.contacts_page-buttons {
	display: flex;
    gap: 2.2rem;
}
.contacts_page-button {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    border-radius: 0.5rem;
    background: #000;
    width: 16.4rem;
    height: 4rem;
}
.contacts_page-button svg {
	width: 1.5rem;
    height: auto;
}
.contacts_page-button p {
    color: #FFF;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.contacts_page-button2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16.4rem;
    height: 4rem;
    border-radius: 0.5rem;
    border: 1px solid #343434;
    color: #151515;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media screen and (max-width: 992px) {
	.contacts_page {
		margin-bottom: 4rem;
	}
	.contacts_page-container > h1 {
		text-align: center;
		font-size: 2.4rem;
	}
	.contacts_page-main {
		align-items: center;
		gap: 2rem;
	}
	.contacts_page-row {
		align-items: center;
		flex-direction: column;
		gap: 2.5rem;
	}
	.contacts_page-block {
		align-items: center;
	}
	.contacts_page-block p {
		text-align: center;
	}
	.contacts_page-block2 {
		align-items: center;
	}
	.contacts_page-block2 a {
		text-align: center;
	}
	.contacts_page-row2 {
		width: 100%;
		align-items: center;
		flex-direction: column;
		gap: 2rem;
	}
	.contacts_page-buttons {
		flex-direction: column;
		width: 100%;
		gap: 1.2rem;
	}
	.contacts_page-button {
		width: 100%;
	}
	.contacts_page-button2 {
		width: 100%;
	}
}

/* header */



.bapf_sfilter ul li {
	position: relative;
}
.bapf_sfilter.bapf_ckbox input[type=checkbox]:before {
	content: "";
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    position: absolute;
    cursor: pointer;
    margin-top: -0.7rem;
    border: 0.5px solid #969696;
    background: #F4F4F4;
}
.bapf_sfilter.bapf_ckbox input[type=checkbox]:checked:before {
    background:transparent;
    background-image: url('/wp-content/uploads/2025/11/checkbox.svg');
    background-size: 1.3rem;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
}
.bapf_sfilter.bapf_ckbox input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
	    margin: 0;
}
.bapf_sfilter.bapf_ckbox input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}
.bapf_sfilter.bapf_ckbox input[type=checkbox]:checked {
    background-image: none;
}
.bapf_sfilter ul li label {
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    padding-left: 2.5rem;
}
.bapf_sfilter ul li {
	margin-bottom: 1rem !important;
}




@media screen and (max-width: 992px) {
	.bapf_sfilter.bapf_ckbox input[type=checkbox]:before {
		margin-top: 0;
	}
	.bapf_sfilter ul li label {
		padding-left: 1.5rem;
	}
	
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}