@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans.eot');
    src: url('../fonts/NotoSans.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NotoSans.woff2') format('woff2'),
        url('../fonts/NotoSans.woff') format('woff'),
        url('../fonts/NotoSans.ttf') format('truetype'),
        url('../fonts/NotoSans.svg#NotoSans') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Bold.eot');
    src: url('../fonts/NotoSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NotoSans-Bold.woff2') format('woff2'),
        url('../fonts/NotoSans-Bold.woff') format('woff'),
        url('../fonts/NotoSans-Bold.ttf') format('truetype'),
        url('../fonts/NotoSans-Bold.svg#NotoSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
	--lava: #d31818;
	--graphite: #343434;
	--graphite-black: #1c1c1c;
	--white: #fff;
	--text-small: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	padding: 0;
	margin: 0;
	font-family: 'Noto Sans';
	font-weight: normal;
	font-size: 16px;
	color: var(--graphite);
	background: #FDFDFD;
	line-height: normal;
}

* {
	box-sizing: border-box;
}

ul,
li,
span {
	display: block;
	padding: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
}

h1 {
	font-weight: bold;
	font-family: 'Noto Sans';
	color: var(--graphite);
	line-height: normal;
}

.page-title {
	font-size: 48px;
	color: var(--white);
}

h2 {
	font-weight: bold;
	font-family: 'Noto Sans';
	color: var(--graphite-black);
	line-height: normal;
}

.section__title {
	font-size: 32px;
}

h3 {
	font-weight: bold;
	font-size: 24px;
	font-family: 'Noto Sans';
	color: var(--graphite-black);
	line-height: normal;
}

a {
	text-decoration: none;
	color: var(--graphite);
	font-family: 'Noto Sans';
}

p {
	margin: 0;
	padding: 0;
}

img {
	display: block;
	object-fit: cover;
}

button,
.btn {
	padding: 0;
	margin: 0;
	border: none;
	cursor: pointer;
	background: transparent;
	font-family: 'Noto Sans';
	display: inline-block;
	border-radius: 4px;
	font-size: 16px;
	font-weight: normal;
	transition: all .5s ease;
}

.btn {
	padding: 16px 32px;
}

button:active,
button:focus {
	outline: none;
}

input,
select {
	outline: none;
	border: none;
}

input:active {
	outline: none;
}

:focus {
	outline: none;
}

button::-moz-focus-inner {
	border: 0;
}

.container {
	width: 1140px;
	margin: 0 auto;
	position: relative;
}

.btn-red {
	color: var(--white);
	background: var(--lava);
	border: 1px solid var(--lava);
	transition: all .5s ease;
}

.btn-red:hover {
	color: var(--graphite-black);
	background: var(--white);
	transition: all .5s ease;
}

.btn-reverse {
	color: var(--graphite-black);
	background: var(--white);
	border: 1px solid var(--lava);
	transition: all .5s ease;
}

.btn-reverse:hover {
	color: var(--white);
	background: var(--lava);
	transition: all .5s ease;
}

.go-home {
	width: 177px;
	min-width: 177px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

.section__link {
	display: flex;
	align-items: center;
	color: var(--graphite);
	font-size: 16px;
	font-weight: bold;
	padding: 10px 20px;
	transition: all .5s ease;
}

.section__link img {
	margin-left: 16px;
	min-width: 22px;
}

.section__link:hover {
	background: #e0dddd;
	transition: all .5s ease;
}

.section {
	margin-top: 60px;
	padding: 60px 0 150px;
}

/* Сброс для figure и figcaption */
figure {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    display: block;
    line-height: 1;
}

figure img {
    max-width: 100%;
    height: auto;
    display: block;
}

figcaption {
    margin: 0;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    text-align: left;
}

/* header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	background: var(--white);
	width: 100%;
	z-index: 20;
	height: 60px;
	display: flex;
	align-items: center;
	overflow: hidden;
	box-shadow: 11px 6px 10px 0 rgba(52, 52, 52, 0.15), -4px -4px 10px 0 rgba(52, 52, 52, 0.15), -4px 6px 10px 0 rgba(52, 52, 52, 0.15);
}

.header .container {
	position: relative;
	height: 100%;
}

.header .container::before {
    content: '';
    position: absolute;
    left: -1055px;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    height: 100%;
    background: url(../img/header/left-logo.png) no-repeat right center / cover;
    z-index: -1;
}

.top {
	display: flex;
	align-items: center;
	height: 100%;
}

.top__logo {
	display: flex;
	width: 54px;
}

.top__logo img {
	width: 100%;
}

.top__nav {
	margin: 0 28px 0 450px;
}

.header #primary-menu {
	display: flex;
	align-items: center;
}

.header #primary-menu li:not(:last-of-type) {
	margin-right: 28px;
}

.header #primary-menu li a {
	position: relative;
	font-weight: normal;
	font-size: 16px;
	color: var(--graphite-black);
}

.header #primary-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--graphite-black);
    transition: width 0.5s;
}

.header #primary-menu li a:hover:before {
    width: 100%;
    transition: width 0.5s;
}

.top__contact {
	display: flex;
	align-items: center;
	margin-left: auto;
}

.top__contact a {
	font-size: 16px;
	font-weight: bold;
	color: var(--graphite-black);
}

.top__contact a:not(:last-of-type) {
	margin-right: 12px;
}

.top__contact a img {
	min-width: 24px;
}

.underline-animation {
	position: relative;
	color: var(--graphite-black);
}

.underline-animation::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--graphite-black);
    transition: width 0.5s;
}

.underline-animation:hover:before {
    width: 100%;
    transition: width 0.5s;
}

/* main */
main {
	min-height: calc(100vh - 240px - 60px);
}

/* offer */
.offer {
	margin-top: 60px;
	padding: 195px 0;
	background: linear-gradient(157deg, rgba(6, 6, 6, 0.7) 65.51%, rgba(0, 0, 0, 0.7) 100%), url('../img/home/offer/bg.webp') no-repeat center center / cover;
}

.offer h1 {
	margin-bottom: 40px;
}

/* products */
.products {
	padding: 80px 0 40px;
}

.product-swiper {
	height: 540px;
}

.product-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
}

.product-card__img {
	border: 2px solid var(--lava);
	border-radius: 8px;
	overflow: hidden;
	padding: 5px;
	width: 100%;
	height: 204px;
}

.product-card img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 8px;
}

.product-card p {
	margin-top: 8px;
	overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; 
           line-clamp: 2;
   -webkit-box-orient: vertical;
}

.slider__nav {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.slider__nav .swiper-nav {
	display: flex;
}

.swiper-pagination_product {
	position: relative;
	top: auto !important;
	bottom: auto !important;
	text-align: left;
}

.swiper-pagination-bullet {
	width: 15px;
	height: 15px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--graphite);
}

/* sales */
.sales {
	padding: 40px 0 80px;
}

.main-sale {
	padding: 80px 125px 40px 95px;
	border-radius: 8px;
	min-height: 360px;
}

.main-sale__title {
	color: var(--white);
	font-size: 54px;
	font-weight: bold;
}

.main-sale__btn {
	margin: 25px 0 0;
	display: flex;
	justify-content: end;
}

/* main-banner */
.main-banner .wrap {
	position: relative;
}

.main-banner .wrap img {
	border-radius: 8px;
	width: 100%;
}

.main-banner .wrap p {
    font-size: 34px;
    font-weight: bold;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
}

/* main-about */
.main-about {
	padding: 80px 0 40px;
}

.main-about .wrap {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	border-radius: 8px;
}

.main-about .wrap-content {
	padding: 10px 0 10px 30px;
	width: 562px;
	max-width: 100%;
}

.main-about .wrap-content__triggers {
	margin-top: 24px;
	display: flex;
	align-items: start;
	flex-wrap: wrap;
/* 	width: 532px; */
}

.main-about .wrap-content__triggers .trigger {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.main-about .wrap-content__triggers .trigger span {
	font-size: 32px;
	font-weight: bold;
	color: var(--lava);
}

.main-about .wrap-content__triggers .trigger p {
	font-size: var(--text-small);
	color: #000;
	margin-top: 8px;
}

.main-about .wrap-content__triggers .trigger:not(:nth-child(n+1):nth-child(-n+2)) {
	margin-top: 16px;
}

.main-about .wrap-img {
	position: relative;
	width: 562px;
}

/* .main-about .wrap-img::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #fff 0.31%, rgba(255, 255, 255, 0) 36.6%);
} */

.main-about .wrap-img img {
	width: 100%;
	height: 100%;
	border-radius: 0 8px 8px 0;
	object-position: right;
}

/* main-news */
.main-news {
    padding: 80px 0 40px;
    overflow: hidden;
    margin-top: -40px;
}

.news-swiper {
	overflow: visible;
}

.news-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 16px;
}

.news-card {
    width: 100%;
    height: 230px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    font-weight: bold;
    font-size: 16px;
    transition: all .5s ease;
}
.news-card p {
    color: #000;
}

.news-card img {
    width: 48px;
    margin: 20px;
}

.news-card:hover {
    transform: translateY(-3px);
    opacity: .9;
    transition: all .2s ease;
}

.swiper-nav {
    display: none;
}
.swiper-nav-btn {
	width: 40px;
	height: 40px;
	cursor: pointer;
	border-radius: 8px;
	transition: all .5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper-nav-btn:first-of-type {
	margin-right: 15px;
}

.swiper-nav-btn:hover {
	background: #e0dddd;
	transition: all .5s ease;
}

/* contacts */
.contacts {
	padding: 40px 0;
	position: relative;
}

.contacts::after {
	content: '';
	position: absolute;
	z-index: -1;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url('../img/home/contact/Frame\ 54.svg') no-repeat right bottom;
}

.contact-content:not(:first-of-type) {
	margin-top: 24px;
}

.contact-content__list {
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	margin-top: 20px;
}

.contact-content__item {
	width: 33.33%;
	margin-bottom: 12px;
}

/* footer */
.footer {
	height: 240px;
	padding: 36px 0 0;
	background: #23272B;
}

.footer .bottom {
	display: flex;
	align-items: start;
}

.bottom__logo {
	width: 100px;
}

.bottom__logo img {
	width: 100%;
}

.bottom__nav {
	margin-left: 240px;
	width: 174px;
}

.bottom__nav #primary-menu,
.bottom__main-links ul {
	display: flex;
	flex-direction: column;
}

.bottom__nav #primary-menu li:not(:last-of-type),
.bottom__main-links ul li:not(:last-of-type) {
	margin-bottom: 12px;
}

.bottom__nav #primary-menu li a,
.bottom__main-links ul li a {
	font-size: var(--text-small);
	color: var(--white);
	position: relative;
}

.footer #primary-menu li a::before,
.bottom__main-links ul li a::before,
.social__tel::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.5s;
}

.footer #primary-menu li a:hover:before,
.bottom__main-links ul li a:hover::before,
.social__tel:hover::before {
    width: 100%;
    transition: width 0.5s;
}

.bottom__main-links {
	width: 174px;
	margin-left: 16px;
}

.bottom__social {
	margin-left: auto;
}

.social__title {
	font-size: var(--text-small);
	color: var(--white);
}

.social__links {
	margin-top: 16px;
	display: flex;
	align-items: center;
}

.social__links li {
	transition: all .5s ease;
	border-radius: 100%;
}

.social__links li:not(:last-of-type) {
	margin-right: 16px;
}

.social__links li a {
	display: flex;
}

.social__links li a img {
	width: 100%;
}

.social__links li:hover {
	-webkit-box-shadow: 1px 1px 8px 3px rgba(255, 255, 255, 0.8);
	-moz-box-shadow: 1px 1px 8px 3px rgba(255, 255, 255, 0.8);
	box-shadow: 1px 1px 8px 3px rgba(255, 255, 255, 0.8);
	transition: all .5s ease;
}

.social__tel {
	margin-top: 16px;
	font-weight: bold;
	color: var(--white);
	position: relative;
	display: inline-block;
}

/* sales_page */
.sale-content {
	margin-top: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sale-content__banner {
	width: 100%;
	transition: all .5s ease;
}

.sale-content__banner img {
	width: 100%;
	border-radius: 8px;
}

.sale-content__info {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #000;
	transition: all .5s ease;
	align-items: flex-start;
}

.sale-content__info p {
	margin-top: 8px;
	font-weight: bold;
}

.accordion__btn {
	margin-top: 12px;
	font-size: 14px;
	color: var(--lava);
	text-decoration: underline;
	cursor: pointer;
}

.accordion__body p {
	color: #000;
	font-weight: normal;
}

.accordion__body p:not(:last-of-type) {
	margin-bottom: 15px;
}

.accordion__item.active .sale-content__banner {
	width: 59%;
	transition: all .5s ease;
}

.accordion__item.active .sale-content__info {
	width: 39%;
	transition: all .5s ease;
}

/* one-news */
.one-news {
	position: relative;
	overflow: hidden;
}

.one-news::after {
	content: '';
	position: absolute;
	top: 120px;
	right: -150px;
	width: 100%;
	height: 480px;
	background: url('../img/one-news/Group.svg') no-repeat right center;
	z-index: -1;
}

.one-news .content__news-banner {
	padding: 25px 95px;
	border-radius: 8px;
	height: 440px;
}

.one-news .news-banner__logo {
	width: 63px;
}

.one-news .page-title {
	width: 60%;
	margin-top: 25px;
}

.content__news-body {
	margin-top: 24px;
}

.content__news-body h3 {
	margin-top: 12px;
	width: 900px;
	max-width: 100%;
}

.content__news-body p {
	margin-top: 16px;
	font-size: 16px;
	color: #000;
}

.content__news-body ul li {
	display: list-item;
	list-style: disc;
	margin-left: 20px;
	font-size: 16px;
	color: #000;
}

.other-news {
	padding: 0 0 100px;
}

/* catalog */
.search-form {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.search-form__input {
	position: relative;
	margin-right: 16px;
	width: 950px;
	max-width: 100%;
	height: 44px;
}

.search-form__input::after {
	content: '';
	position: absolute;
	width: 26px;
	height: 26px;
	background: url('../img/catalog/basil_search-outline.svg') no-repeat;
	top: 50%;
	left: 20px;
	transform: translate(0, -50%);
	z-index: 1;
}

.search-form__input input {
	padding: 8px 20px 8px 66px;
	font-size: 16px;
	font-weight: normal;
	color: var(--graphite-black);
	border-radius: 4px;
	border: 1px solid var(--lava);
	width: 100%;
	height: 100%;
}

.catalog-nav {
	margin-top: 28px;
}

.catalog-tabs {
	display: flex;
	flex-wrap: wrap;
}

.catalog-tab {
	padding: 5px;
	border-radius: 4px;
	border: 1px solid var(--lava);
	font-size: 16px;
	color: #000;
	font-weight: normal;
	margin: 0 12px 12px 0;
	transition: all .5s ease;
}

.catalog-tab:hover {
	border: 1px solid #AB0000;
	background: #AB0000;
	color: var(--white);
	transition: all .5s ease;
}

.catalog-tab.active {
	background: var(--lava);
	color: var(--white);
	pointer-events: none;
	transition: all .5s ease;
}

.catalog-tab_hide {
	display: none;
}

.catalog-btn {
	display: flex;
	justify-content: end;
}

.catalog-btn__show-more {
	position: relative;
	color: var(--lava);
	font-size: var(--text-small);
	margin-right: 60px;
	transition: all .5s ease;
}

.catalog-btn__show-more::after {
	content: '';
	position: absolute;
	width: 19px;
	height: 19px;
	margin-left: 4px;
	background: url('../img/catalog/iconamoon_arrow-up-2-duotone.svg') no-repeat;
	transition: all .5s ease;
}

.catalog-btn__show-more.show::after {
	transform: rotate(-180deg);
	transition: all .5s ease;
}

.catalog-btn__show-more svg {
	margin-left: 4px;
}

.catalog-content {
	margin-top: 40px;
}

.catalog-title {
	position: relative;
	background: var(--lava);
	padding: 5px 40px 5px 0;
	color: var(--white);
	border-radius: 0 4px 4px 0;
	display: inline-flex;
	align-items: center;
	min-height: 54px;
}

.catalog-title::before {
	content: '';
	position: absolute;
	background: var(--lava);
	height: 100%;
	width: 950px;
	left: -950px;
	top: 50%;
	transform: translate(0, -50%);
	z-index: -1;
}

.catalog-card {
	margin-top: 40px;
	position: relative;
}

.catalog-card.in-basket::before {
	content: '';
	position: absolute;
	z-index: -1;
	background: #F1F2F2;
	left: 50%;
	top: 50%;
	border-radius: 8px;
	transform: translate(-50%, -50%);
	width: 102%;
	height: 104%;
}

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

.catalog-card__left {
	width: 466px;
}

.catalog-card__right {
	width: 563px;
}

.catalog-card__header .catalog-card__right {
	border-bottom: 4px solid transparent;
	border-image: linear-gradient(
		to right, 
		rgba(211, 24, 24, 0),
		rgba(211, 24, 24, 1),
		rgba(211, 24, 24, 0)
	) 1 100%;
	border-image-slice: 1;
	padding-bottom: 10px;
}

.catalog-card__header .catalog-card__right h3 {
	text-align: end;
}

.catalog-card__content {
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin-top: 30px;
}

.catalog-card__content h3{
	margin-bottom: 30px;
}

.catalog-card__img {
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.catalog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 440px;
}

.basket-page .catalog-card__img img {
	object-fit: contain;
}

.catalog-card__specifications h3 {
	background: #666;
	color: var(--white);
	padding: 10px;
	border-radius: 4px;
}

.specifications-table {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
}

.specifications-table p {
	font-size: 16px;
	padding: 2px 10px;
	margin-bottom: 8px;
	border-bottom: 1px solid #000;
}

.specifications-table table {
	border: 0;
	border-collapse: collapse;
	width: 100%;
	font-weight: bold;
}

.specifications-table td {
	width: 50%;
	padding: 7px;
}

.specifications-table tr {
	color: #666;
	border-bottom: #333 solid 1px;
}

.specifications-table tr.alt {
	color: #000;
}

.specifications-table p {
	display: block;
	width: 100%;
	margin: 0;
	padding: 7px;
}

.specifications-btn {
	margin: 16px 0 0;
	display: flex;
	justify-content: end;
}

/*custom wp+woo*/
.no-product {
	margin-top: 20px;
}

/* .specifications-btn .remove-from-cart {
	margin-left: 20px;
} */

.specifications-btn .generate-note {
	margin-top: 50px;
}

.important-information h3 {
	padding: 20px;
	background: var(--lava);
	border-radius: 8px;
	color: #fff;
}

.important-information a {
	color: #fff;
}

/* pattern */
.pattern {
	background: url('../img/pattern.svg') no-repeat center;
}

/* up */
.up {
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	z-index: 9999;
	right: 150px;
	bottom: 30px;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: var(--lava);
}

/* to-basket */
.to-basket {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	z-index: 9999;
	right: 150px;
	top: 50%;
	transform: translate(0, -50%);
	width: 60px;
	height: 60px;
	border-radius: 100%;
	background: var(--lava);
	box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2);
}

.to-basket svg {
	min-width: 30px;
	max-width: 30px;
	min-height: 30px;
	max-height: 30px;
}

.to-basket span {
    width: 21px;
    height: 21px;
    background: #23272B;
    border-radius: 100%;
    font-size: 14px;
    font-weight: 400;
	line-height: 1.2em;
    color: #fff;
    position: absolute;
    z-index: 1;
    bottom: -4px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* mobile-menu start */
.top__burger {
	display: none;
}

#nav-icon {
	width: 23px;
	height: 17px;
	position: relative;
	transform: rotate(0deg);
	transition: .5s ease-in-out;
	cursor: pointer;
	z-index: 999;
}

#nav-icon span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #1b1b1b;
	border-radius: 10px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
	top: 0px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
	top: 8px;
}

#nav-icon span:nth-child(4) {
	top: 16px;
}

#nav-icon.open span:nth-child(1) {
	top: 18px;
	width: 0%;
	left: 50%;
}

#nav-icon.open span:nth-child(2) {
	transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
	transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
	top: 18px;
	width: 0%;
	left: 50%;
}

.mobile-menu {
	display: none;
}

.popup {
	display: none;
}

.popup {
	position: fixed;
	top: 60px;
	right: -100%;
	width: 100%;
	height: 100%;
	z-index: 100;
	display: flex;
	justify-content: end;
	transition: all 0.5s ease;
}

.popup.open {
	right: 0;
	transition: all 0.5s ease;
}

.popup.open .menu-hamburger {
	background: #FDFDFD;
	width: 100%;
	padding: 40px 20px 0;
	transition: all 0.5s ease;
	/* box-shadow: -100px 1000px 0px 1000px rgb(0 9 0 / 20%); */
}

.popup.open #primary-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.popup.open #primary-menu li:not(:last-of-type) {
	margin-bottom: 25px;
}

body.noscroll {
	overflow: hidden;
}
/* mobile-menu end */

/*modal*/
.wrap-modal {
	width: 100%;
	height: 100%;
	opacity: 0;
    visibility: hidden;
}

.wrap-modal.active {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.8);
}

.modal-window {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: auto;
	z-index: 1001;
	border-radius: 12px;
	color: var(--grey-2);
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06);
	background: var(--white);
	text-align: center;
	padding: 50px 30px;
}

.modal-close {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 30px;
	right: 40px;
	z-index: 1002;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	transition: .5s ease;
}

/*13.03.2025*/
.specifications-btn_cart {
	flex-wrap: wrap;
	gap: 15px;
}






/* Responsive */
@media (max-width: 1700px) {
	.one-news::after {
		right: -400px;
	}
}
@media (max-width: 1440px) {
	.header::before {
		width: 10%;
	}
}

@media (max-width: 1368px) {
	.header::before {
		display: none;
	}
	.one-news::after {
		right: -500px;
	}
	.up,
	.to-basket {
		right: 30px;
	}
	
}

@media (max-width: 1199px) {
	.container {
		max-width: 960px;
	}
	.top__nav {
		margin: 0 28px 0 220px;
	}
	.main-banner .wrap p {
		font-size: 30px;
	}
	.main-sale__title {
		font-size: 36px;
	}
	.news-swiper .swiper-slide {
		width: 228px;
	}
	.contact-content__item {
		font-size: 14px;
	}
	.contacts::after {
		background: url(../img/home/contact/Frame\ 54.svg) no-repeat right bottom / 60%;
	}
	.sale-content__info p,
	.accordion__body {
		font-size: 14px;
	}
	.one-news .page-title {
		width: 100%;
	}
	.catalog-card__left {
		width: 43%;
	}
	.catalog-card__right {
		width: 55%;
	}
	.header .container::before {
		left: -875px;
	}
	.product-card__img {
		height: 168px;
	}
	.product-swiper {
		height: 480px;
	}

	


}


@media (max-width: 991px) {

	.container {
		max-width: 720px;
	}
	.top__burger {
		display: block;
		margin-left: 12px;
	}
	.top__nav {
		display: none;
	}
	.page-title {
		font-size: 36px;
	}
	.section__title {
		font-size: 28px;
	}
	.main-sale {
		padding: 80px 60px 40px 60px;
	}
	.main-banner .wrap p {
		font-size: 22px;
	}
	.wrap-img {
		display: none;
	}
	.main-about .wrap-content {
		padding: 10px 30px;
		width: 100%;
	}
	.main-about .wrap-content__triggers {
		width: 100%;
	}
	.swiper-nav {
		display: flex;
		align-items: center;
	}
	.news-swiper .swiper-slide:not(:nth-child(4n+4)) {
		margin-right: 0;
	}
	.contact-content__item {
		width: 50%;
	}
	.bottom__nav {
		margin-left: 66px;
	}
	.sale-content {
		flex-direction: column;
		align-items: start;
	}
	.sale-content__banner,
	.accordion__item.active .sale-content__banner,
	.accordion__item.active .sale-content__info,
	.sale-content__info {
		width: 100%;
	}
	.sale-content__info p,
	.accordion__body {
		font-size: 16px;
	}
	.sale-content__info {
		margin-top: 20px;
	}
	.other-news {
		overflow-x: hidden;
	}
	.one-news .content__news-banner {
		padding: 25px 95px;
		height: 345px;
	}
	.one-news::after {
		height: 380px;
	}
	.catalog-tab {
		font-size: 14px;
	}
	.catalog-card__header .catalog-card__left {
		display: none;
	}
	.catalog-card__header .catalog-card__right {
		width: 100%;
	}
	.catalog-card__header .catalog-card__right h3 {
		text-align: left;
	}
	.catalog-card__content {
		flex-direction: column;
	}
	.catalog-card__content .catalog-card__left {
		width: 100%;
	}
	.catalog-card__content .catalog-card__right {
		width: 100%;
		margin-top: 30px;
	}
	.catalog-card__article-number {
		font-size: 18px;
	}
	.go-home {
		width: 110px;
		min-width: 110px;
		padding: 0 !important;
	}
	.search-form__input input {
		padding: 8px 20px 8px 30px;
		font-size: 14px;
	}
	.search-form__input::after {
		width: 18px;
		height: 18px;
		background: url(../img/catalog/basil_search-outline.svg) no-repeat center / cover;
		left: 5px;
	}
	.catalog-tab {
		font-size: 12px;
		margin: 0 6px 6px 0;
	}
	.catalog-card__specifications h3 {
		font-size: 16px;
	}
	.catalog-card__img {
		height: 100%;
	}
	.header .container::before {
		left: -665px;
	}
	


	

	












}

@media (max-width: 767px) {

	.container {
		width: 100%;
		padding: 0 12px;
		overflow: hidden;
	}
	.btn {
		padding: 12px 22px;
		font-size: 14px;
	}	
	.page-title {
		font-size: 30px;
	}
	.page-title span {
		display: inline;
	}
	.offer {
		padding: 100px 0;
	}
	.section__heading {
		align-items: start;
	}
	.section__title {
		font-size: 22px;
	}
	.section__link {
		font-size: 12px;
		padding: 8px 14px;
		background: #f5f5f5;
	}
	.section__link img {
		margin-left: 6px;
		min-width: 18px;
		width: 18px;
	}
	.products {
		padding: 40px 0 20px;
		overflow: hidden;
	}
	.product-card p {
		margin-top: 5px;
		font-size: 14px;
	}
	.product-swiper {
		overflow: visible;
	}
	.product-swiper .swiper-slide {
		width: 180px;
	}
	.swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}
	.main-sale {
		padding: 40px 30px;
	}
	.main-sale__title {
		font-size: 28px;
	}
	.main-sale__btn {
		margin: 40px 0 0;
	}
	.main-banner .wrap {
		height: 310px;
	}
	.main-banner .wrap img {
		height: 100%;
		object-position: left;
	}
	.main-banner .wrap p {
		font-size: 24px;
		width: 100%;
		text-align: center;
		left: 50%;
	}
	h3 {
		font-size: 20px;
	}
	.main-about .wrap-content__triggers .trigger span {
		font-size: 24px;
	}
	.main-about .wrap-content__triggers .trigger p {
		font-size: 12px;
		margin-top: 4px;
		padding: 0 10px;
	}
	.main-about .wrap-content {
		padding: 10px;
	}
	.news-swiper .swiper-slide {
		width: 228px;
	}
	.contact-content__item {
		padding-right: 40px;
	}
	.bottom__logo {
		width: 63px;
	}
	.bottom__nav,
	.bottom__main-links {
		width: auto;
		margin: 0;
	}
	.bottom__social {
		margin: 0;
	}
	.footer {
		height: auto;
		padding: 36px 0 60px;
	}
	.footer .bottom {
		justify-content: space-between;
	}
	.one-news::after {
		display: none;
	}
	.one-news .content__news-banner {
		padding: 25px 145px 45px 45px;
		height: 100%;
		min-height: 300px;
	}
	.modal-window {
		width: 95%;
		padding: 20px;
	}
	.modal-window h3 {
		font-size: 16px;
	}
	main {
		min-height: 100%;
	}
	body {
		overflow-x: hidden;
	}
	.up,
	.to-basket {
		right: 12px;
	}
	.header .container::before {
		display: none;
	}
	.product-card__img {
		height: 180px;
	}
}
@media (max-width: 575px) {
	.footer .bottom {
		flex-wrap: wrap;

	}
	.bottom__social {
		width: 100%;
		margin-top: 30px;
		display: flex;
		align-items: start;
		justify-content: space-between;
	}
	.social__tel {
		margin-top: 0;
	}
	.one-news .content__news-banner {
		padding: 25px 45px 125px;
	}
}


@media (max-width: 480px) {
	.contact-content_spb .contact-content__item {
		width: 100%;
		padding-right: 0;
	}
	.bottom__logo {
		width: 100%;
	}
	.bottom__nav,
	.bottom__main-links {
		margin-top: 30px;
	}
	.bottom__nav #primary-menu li a, .bottom__main-links ul li a {
		font-size: 12px;
	}
	.top .messenger {
		display: none;
	}
	.sale-content__info p,
	.accordion__body {
		font-size: 14px;
	}
	.section {
		padding: 40px 0 100px;
	}
	.one-news .content__news-banner {
		padding: 25px 25px 75px;
	}
	.specifications-table p {
		font-size: 14px;
	}
	.bottom__logo img {
		width: 80px;
	}
	
	






}

@media (max-width: 420px) {
	.contact-content_other .contact-content__item {
		font-size: 12px;
		padding-right: 15px;
	}
}


.cart-buttons {
	display: none;
	gap: 15px;
}

.cart-buttons.active {
	display: flex;
	flex-wrap: wrap;
}

/* Новые стили */

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

.add-all:disabled {
	opacity: 0.5 !important;
	cursor: not-allowed;
}

@media (max-width: 991px) {
	.catalog-content__header {
		flex-direction: column;
		gap: 20px;
	}
}

body .is-layout-flex {
    display: flex
;
    justify-content: center;
}

.type-page {
	margin-top: 100px;
	display: flex;
	flex-direction: column;
}
.type-page .entry-header {
	max-width: 1170px;
	margin: 0 auto;
}
.type-page .site-main {
	margin-top: 100px;
}

/* Стили для параграфов */
.type-page p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 1.5em;
    color: #333;
}

/* Для первого параграфа */
.type-page p:first-child {
    margin-top: 0;
}

/* Для последнего параграфа */
.type-page p:last-child {
    margin-bottom: 0;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .type-page p {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* СТили кнопок в архтивах */
.btn_blog {
    border: 1px solid var(--lava);
    padding: 10px 20px;
    width: auto;
    display: block;
    margin-top: 18px;
}

.sales_page .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.sale-content {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.sale-content__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin-top: 12px;
}

.sale-content__banner img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 5 / 2;
}

.sale-content h3 {
    font-size: 18px;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .sales_page .content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
    }
}