@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*************************************************************************/

html{
	height:100%;
	width:100%;

	
}

body {
	position:relative;
	height:100%;
	width:100%;
	min-width:520px;
	font-family: "Oswald", sans-serif;
	background:#fff;
	
	/*background: #fff url(../images/bg2.jpg) ;
	background-repeat:no-repeat;
	background-attachment:fixed;
	background-position:center;
	background-size: cover;*/

	margin:0;
	padding:0;
}

strong{font-size:1.05em; font-weight:700;}


input, textarea {outline:none!important;}
input:active, textarea:active {outline:none!important;}
:focus {outline:none!important;}
textarea {resize:none;}
textarea {resize:vertical;}
textarea {resize:horizontal;}

textarea:focus, input:focus{
outline: none!important;
}

*:after,
*:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#back-top span#button, #back-top-prev span#button-prev{
	border-radius:50%!important;
}

.filter-toggle{display:none;}

.js-form-item-city{display:none;}


/*****************************************/

.success-section img{
	width:70%;
	height:auto;
	display:block;
	margin:0 auto;
}

/**/

/* Початкові стани гамбургера */
.hamburger {
    position: fixed;
    top: 3.32%;
    left: 2.5%;
    width: 33px;
    height: 28px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 1; /* Початкове значення - гамбургер видимий */
    transform: scale(1); /* Початковий масштаб */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Анімація змін масштабу і прозорості */
}

/* Анімація для гамбургера */
@keyframes hamburgerShow {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Клас для приховування гамбургера, коли меню відкрите */
.hamburger.hidden {
    display: none; /* Приховуємо гамбургер */
}

/* Клас для анімації появи гамбургера після закриття меню */
.hamburger.show {
    animation: hamburgerShow 0.3s forwards;
    opacity: 1;
    transform: scale(1);
}


.hamburger span {
	display: block;
	height: 2.2px; /* Товщина лінії */
	background-color: #2A2A2A;
	border-radius: 0px;
	width: 100%; /* Повна ширина */
	margin: 3.25px 0; /* Відступи між лініями збільшено трохи */
}


.side-menu.active {
	left:0;
}


body.no-scroll {
	overflow:hidden;
}

.hamburger.hidden {
	display: none;
}

.menu-overlay {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.75);
	backdrop-filter:blur(4px);
	opacity:0;
	visibility:hidden;
	transition:opacity 0.3s ease;
	z-index:999;
}

.menu-overlay.active {
	opacity:1;
	visibility:visible;
}

.side-menu {
	position: fixed;
	top: 0;
	left: -35%;
	width: 25%;
	height: 100%;
	background-color:#fff;
	transition: left 0.6s ease;
	z-index: 1000;
	padding: 40px 0px 20px 0px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: flex-start; /* Вирівнювання по вертикалі */
	align-items: center; /* Вирівнювання по горизонталі */
}

.side-menu.active {
	left: 0;
}

.side-menu.active .top-line-menu{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:45px;
	background:#2A2A2A;
	box-shadow: rgba(0, 0, 0, 0.13) 0px 4px 10px;
}

.side-menu .menu-logo {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin:1.75em 0 3.5em;

}

.side-menu .menu-logo img {
	width:33%;
	height: auto;
}

.side-menu .menu-logo span {
	color: #fff;
	font-size: 1.2em;
	font-weight: 400;
	letter-spacing:.25px;
}

.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.75);
	backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	z-index: 999;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.side-menu ul.menu {
	width: 100%;
	padding: 0;
	margin:1% 0 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-top: 1px solid rgba(0, 0, 0, 0.19);
	border-bottom: 1px solid rgba(0, 0, 0, 0.19);
}

.side-menu ul.menu li.menu__item {
	width: 100%;
	text-align: left;
	border-bottom: 1px solid rgba(0, 0, 0, 0.19);
	-webkit-transition: all .31s;
    -moz-transition: all .31s;
    -o-transition: all .31s;
    -ms-transition: all .31s;
    transition: all .31s;
}

.side-menu ul.menu li.menu__item:last-child {
	border-bottom: none;
}

.side-menu ul.menu li:hover{
	background: rgb(242, 243, 245);
	-webkit-transition: all .31s;
    -moz-transition: all .31s;
    -o-transition: all .31s;
    -ms-transition: all .31s;
    transition: all .31s;
}

.side-menu ul.menu li a.menu__link {
	display: block;
	width: 100%;
	padding: 18px 22px;
	color: #000;
	font-size:1.2em;
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease;
	overflow:hidden;
	letter-spacing:.15px;
}

.side-menu ul.menu li a.menu__link:hover {
	opacity:.85;
}

.side-menu ul.menu li a.menu__link::after {
	content: '';
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display:inline-block;
	background: url('../images/tab-arow.png') no-repeat center center;
	background-size: contain;
	opacity: 0;
	transition: opacity 0.43s ease, right 0.29s ease;
}

.side-menu ul.menu li a.menu__link:hover::after {
	opacity: 1;
	right: 60px;
	transition: opacity 0.43s ease, right 0.09s ease;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: transparent;
	border: none;
	color: #fff;
	font-size: 30px;
	font-weight:200;
	cursor: pointer;
	display:block;
	z-index:9;
}

.f-menu{
	display:inline-block;
}

.f-menu:first-child{
	margin-right:6%;
}
.f-menu:last-child{
	margin-right:0%!important;
}

.f-menu:nth-child(even){
	margin-right:6%;
}

.side-menu .email-go{
    position: absolute;
    display: block;
    z-index: 9;
    bottom: 0px;
    left: 0px;
	text-align:center;
    width: 100%;
    padding:12px 0;
    background: rgb(175, 213, 250);
}


.side-menu .email-go a {
    font-weight: 600;
    line-height: 1;
    color: rgb(0, 0, 0);
    font-size: 1.15em !important;
    display: inline-block !important;
    transition: 0.35s;
	
    padding:7px 0;
	text-decoration:none;
    border-width: initial !important;
    border-style: none !important;
    border-color: initial !important;
    border-image: initial !important;
}

.side-menu .email-go a:hover{
    color: rgba(0, 0, 0, .6);
}


/*****************************************/

.wrapper a{
	text-decoration:none;
	font-size:1em;
	
	-webkit-transition: all .4s ease;
	-moz-transition: all .4 ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
.wrapper a:hover{
	color:#167cb9;
	
	-webkit-transition: all .4s ease;
	-moz-transition: all .4 ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.wrapper {
    position: relative;
	width: 100%;
	
	background:#fff;
	display:inline-block; 
	min-height:70vh;
	padding:0;
	font-family: "Oswald", sans-serif;
}

.mobile-head{display:none;height:0px;}
.mobile-cloud{display:none;height:0px;}
.cloud-mini{display:none;height:0px;}
.mobile-logo{display:none;height:0px;}

/**/

.page-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width:95%;
	margin:8.5px auto 0;
}

.page-top .logo-top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left:3.5%;
}

.page-top .logo-top img {
	height: 65px;
	width: auto;
	display: block;
}

.page-top .logo-top .logo-name {
	font-size: 1.15em;
	font-weight:500;
	text-transform: uppercase;
	line-height: 1.2;
}

.page-top .phones {
	display: flex;
	gap: 0px;
	margin-right:23%;
	margin-top:-4px;
}

.page-top .phones-pages{
	display: flex;
	gap: 0px;
	margin-right:.35%;
	margin-top:-4px;
}

.phones-product-pages{
	display: flex;
	gap: 0px;
	margin-right:6%;
	margin-top:-4px;
}

.phones-product-pages a ,
.phones-pages a ,
.page-top .phones a {
	color: #000;
	font-size:1.025em;
	font-weight:600;
	text-decoration: none;
	transition: color 0.3s ease;
}

.phones-product-pages a:first-child,
.phones-pages a:first-child,
.page-top .phones a:first-child{
	margin-right:28px;
}

.phones-product-pages a:hover ,
.phones-pages a:hover ,
.page-top .phones a:hover {
	color: #8BB7F0;
	transition: color 0.3s ease;
}

/**/


.main-hero {
	display: flex;
	align-items: center; /* <-- тут зміна */
	justify-content: space-between;
	position: relative;
	padding:10px 20px -5vh;
	overflow: visible;
	width:95%;
	margin:.65em auto;
	background:#F2F3F5;
}


.main-hero-text {
	width: 57%;
	display:inline-block;
	padding:0 1.5%;
}

.main-hero-text h1 {
	font-size: 3.1em;
	font-weight: 900;
	margin: .25em 0 0em 0;
	line-height: 1.25;
	text-transform: uppercase;
}

.main-hero-text h1:after{
	content:'';
	width:20%;
	height:4px;
	display:block;
	background:#A3CCF4;
	margin:.65em 0 .75em;
}

.main-hero-text p {
	font-size: 1.1em;
	font-weight: normal;
	line-height: 1.45;
	color: #222;
	max-width:90%;
	margin: 0 0 20px 0px;
}

.main-hero-text .btn-black {
	background-color: #2A2A2A;
	color: #fff;
	padding: 17px 85px 18.5px;
	border: none;
	box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
	text-transform: uppercase;
	font-weight: 600;
	font-size:.88em;
	text-align:center;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin:2.2em 0 0;
	line-height:1;
	letter-spacing:.4px;
	text-decoration: none;
	display: inline-block;
}

.main-hero-text .btn-black:hover {
	background-color: #8BB7F0;
	color:#2A2A2A;
}

.main-hero-banner {
	position: relative;
	width: 35%;
	display:inline-block;
	margin:0 0 0% 15%;
	padding:0;
	text-align:center;
	
}

.main-hero-banner img {
	width:auto;
	height:80vh;
	position: relative;
	margin:-8vh 0 0;
	margin-right:-8%;
	padding:0;
	transition: transform 0.2s ease;
}

/**/

.main-hero-list{
	position:absolute;
	background:#fff;
	padding:5% 8% 5% 5%;
	bottom:15%;
	left:-14%;
	display:inline-block;
}

.main-hero-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-hero-list li {
    font-size: 1.1em;
    margin-bottom: 15px; 
    display: flex;
    align-items: center;  
}

.main-hero-list li:last-child{
    margin-bottom: 0px; 
}

.main-hero-list li::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("../images/check.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
}


/**/

.main-hero-vertical,.page-top-vertical,.main-hero-text-vertical{
	display:none;
}

/**/

.stats-section {
	background: #CEE7FF;
	padding: 50px 0px;
	display: flex;
	justify-content: center;
	width:95%;
	margin:3em auto 0;
}

.stats-row {
	width: 22%;
	display: flex;
	flex-direction: column;
	text-align:left;
}

.stats-row:nth-child(2){
	margin:0 11%;
}

.stats-number {
	font-size: 4.05em;
	font-weight: 800;
	color: #000;
	line-height: 1;
	margin-bottom: .15em;
}

.stats-label {
  font-size: 1.18em;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  line-height: 1.35;
  max-width: 89%;
}

/**/

.home-products-section {
	width: 87%;
	margin: 6em auto 0em;
}

.home-products-section .views-element-container > div > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.home-products-section .views-row {
	width: 30.25%;
	margin-bottom:5.5em;
	box-sizing: border-box;
}

.home-products-section .views-field-field-foto img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.home-products-section .views-field-field-foto *{
	padding:0;
	margin:0;
	line-height:1;
}

.home-products-section .views-field-field-foto{
	border:3.2px solid transparent;
	
	-webkit-transition: all .34s ease;
	-moz-transition: all .34 ease;
	-ms-transition: all .34s ease;
	-o-transition: all .34s ease;
	transition: all .34s ease;
}

.home-products-section .views-row:hover .views-field-field-foto{
	border:3.2px solid #232222;
	box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.13);
	
	-webkit-transition: all .34s ease;
	-moz-transition: all .34 ease;
	-ms-transition: all .34s ease;
	-o-transition: all .34s ease;
	transition: all .34s ease;
}

.home-products-section .row-title{
	font-size:1.23em;
	color:#000;
	font-weight:600;
	margin:20px 0 0;
	line-height:1.23;
	position:relative;
	display:block;
	-webkit-transition: all .34s ease;
	-moz-transition: all .34 ease;
	-ms-transition: all .34s ease;
	-o-transition: all .34s ease;
	transition: all .34s ease;
}

.home-products-section .views-row:hover .row-title{
	color:#8BB7F0;
	-webkit-transition: all .34s ease;
	-moz-transition: all .34 ease;
	-ms-transition: all .34s ease;
	-o-transition: all .34s ease;
	transition: all .34s ease;
}

/**/


.facets-section{
	position:relative;
	display:inline-block;
	width:29%;
	border:0px solid red;
	vertical-align:top;
	margin:2em 4.5% 0 3%;
	min-height:300px;
	font-family: "Oswald", sans-serif;
}

.facets-section h3 {
    padding: 17px 11px 17px 20px;
    background: rgba(206, 231, 255, .38);
    color: #000;
    font-size: 1.43em;
    font-weight: 500;
    margin: 0 0 26px;
    box-shadow: 0 0 2px #dedede;
}

.facets-section .block-facet--checkbox{
	margin-bottom:35px;
}

.facets-section ul{
	display:block;
	margin:0 0 13px;
	text-indent:0;
	padding:20px 7px 5px;
	background:rgba(228, 228, 228,.19);
	
}

.facets-section ul ul{
	margin:15px 0 0 25px;
	text-indent:0;
	padding:0;
	background:transparent;
}

.facets-section li{
	display:block;
	margin:0 0 15px;
	padding:0;
}

.facets-section li span,
.facets-section li label{
	padding:0!important;
	margin:0!important;
	text-indent:0!important;
	display:inline-block;
}

.facets-section ul label{
	margin-left:0px!important;
	font-size:1.05em;
	letter-spacing:0px;
	padding-top:2px!important;
	line-height:1.3;
	cursor:pointer;
}

.facets-section ul ul label{
	margin-left:0px!important;
	font-size:.94em;
	letter-spacing:0px;
	padding-top:2px!important;
	line-height:1.3;
	cursor:pointer;
}

.facets-section li label:hover{
	opacity:.5;
	-webkit-transition: all .34s ease;
	-moz-transition: all .34 ease;
	-ms-transition: all .34s ease;
	-o-transition: all .34s ease;
	transition: all .34s ease;
}

/**/

/* Basic styling */

.facets-section [type=checkbox] {
  width: 1.29rem;
  height: 1.29rem;
  color: dodgerblue;
  vertical-align: middle;
  -webkit-appearance: none;
  background: none;
  border: 0;
  outline: 0;
  margin-right:7.5px;
  margin-top:-1.65px;
  flex-grow: 0;
  border-radius: 50%;
  background-color: #FFFFFF;
  transition: background 100ms;
  cursor: pointer;
}


/* Pseudo element for check styling */

.facets-section [type=checkbox]::before {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1.5px #CCD3D8;
}


/* Checked */

.facets-section [type=checkbox]:checked {
  background-color:#8BB7F0;
}

.facets-section [type=checkbox]:checked~label{
	
}

.facets-section [type=checkbox]:checked~label:hover{
	opacity:.56;
	-webkit-transition: all .34s ease;
	-moz-transition: all .34 ease;
	-ms-transition: all .34s ease;
	-o-transition: all .34s ease;
	transition: all .34s ease;
}

.facets-section [type=checkbox]:checked::before {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}


/* Disabled */

.facets-section [type=checkbox]:disabled {
  background-color: #e4e4e4;
  opacity: 0.24;
  cursor: not-allowed;
}

/**/

.page-title-section{
    display: flex;
	position:relative;
	overflow:hidden;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 95%;
    margin: 2em auto 1.35em;
  
}

.background-title{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    display: block;
    background-image: url(../images/catalog-page.webp);
    width: calc(100% + 105px);
    height: calc(100% + 105px);
    will-change: transform;
    animation: breadcrumbs-bg 40s ease-in-out infinite; /* змінити на 'ease-in-out' для плавності */
    transform: scale(1) translate3d(0, 0, 0); /* стартовий стан без зміщення */
    background-position: 50% 50%;
    background-size: cover;
    z-index: 1;
}

.background-title:after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:block;
    z-index:1;
    background:rgba(19, 47, 77,.05);
}

@keyframes breadcrumbs-bg{
    0% {
        transform: scale(1) translate3d(0, 0, 0); /* Початковий стан */
    }
    50% {
        transform: scale(1.4) translate3d(0, 0, 0); /* Фото збільшується */
    }
    100% {
        transform: scale(1) translate3d(0, 0, 0); /* Фото повертається до початкового розміру */
    }
}

.page-title-section h1{
	font-size: 3.33em;
    font-weight: 900;
    margin: 1.75em 0;
    line-height: 1.25;
	z-index:99!important;
	display:block;
	position:relative;
    text-transform: uppercase;
}

.page-title-section h1:after{
	content:'';
	width:47%;
	height:3.3px;
	position:relative;
	display:block;
	margin:.25em auto 0;
	z-index:99!important;
	background:#A3CCF4;
}

.products-section.taxonomy-pae{
	position:relative;
	display:block;
	width:90%;
	border:0px solid red;
	margin:6em auto;
	vertical-align:top;
}

.products-section{
	position:relative;
	display:inline-block;
	width:63%;
	border:0px solid red;
	margin-top:2em;
	vertical-align:top;
}


.products-section .views-row{
	display:inline-block;
	overflow:hidden;
	width:29%;
	height:auto;
	margin:0 4.33% 7.15% 0;
	text-align:left;
	vertical-align:top;

}

.products-section .views-row *{
	display:inline-block;
	position:relative;
	padding:0;
	margin:0;
	line-height:1;
}

.products-section .views-row:nth-child(3n+3){
	margin:0 0% 7.15% 0;
	
}

.products-section .views-row img{
	display:inline-block;
	width:100%;
	height:auto;
}

.products-section .views-field-field-foto{
	border:2.5px solid transparent;
	margin-bottom:.5em;
	
	-webkit-transition: all .34s ease;
	-moz-transition: all .34 ease;
	-ms-transition: all .34s ease;
	-o-transition: all .34s ease;
	transition: all .34s ease;
}

.products-section .views-row:hover .views-field-field-foto{
	border:2.5px solid #232222;
	box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.13);
	
	-webkit-transition: all .34s ease;
	-moz-transition: all .34 ease;
	-ms-transition: all .34s ease;
	-o-transition: all .34s ease;
	transition: all .34s ease;
}

.products-section .views-row .views-field-field-dovhyy-zaholovok a{
    font-size: 1.08em;
    color: #000;
    font-weight: 500;
	padding:0;
    margin: 0px 0 0;
    line-height: 1.3;
    position: relative;
    display: block;
    -webkit-transition: all .34s ease;
    -moz-transition: all .34 ease;
    -ms-transition: all .34s ease;
    -o-transition: all .34s ease;
    transition: all .34s ease;
}

.products-section .views-row:hover .views-field-field-dovhyy-zaholovok a{
    color: #8BB7F0;
    -webkit-transition: all .34s ease;
    -moz-transition: all .34 ease;
    -ms-transition: all .34s ease;
    -o-transition: all .34s ease;
    transition: all .34s ease;
}

/*******/

.guarantee-section {
    display: flex;
    align-items: stretch;
    background: #F2F3F5;
    overflow: hidden;
	width:95%;
	margin:14em auto 0;
}

.guarantee-section.product-page{
	margin:6em auto 3em;
}

.guarantee-section img {
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
}

.guarantee-text {
    width: 50%;
    padding: 30px 25px 30px 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.guarantee-text h2 {
    font-size: 2.9em;
    font-weight: 700;
    margin: 20px 0 25px;
    line-height: 1.2;
}

.guarantee-text p {
    font-size: 1.1em;
    line-height: 1.5;
    max-width: 90%;
    color: #2A2A2A;
	font-weight:500;
	margin-bottom:5px;
}

/**/

.consultation-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding:0;
	width:95%;
	margin:8em auto 0;
}

.consultation-text {
    width: 50%;
}

.consultation-text h2 {
    font-size: 2.9em;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 25px;
}

.consultation-text p {
    font-size: 1.1em;
    line-height: 1.5;
    max-width: 90%;
    color: #2A2A2A;
	font-weight:400;
	margin-bottom:5px;
}


/* ===== Права колонка з формою ===== */

.webform-section {
    width: 50%;
}


/* Поля в один ряд */
.form-item-name,
.form-item-phone {
    width: 46%;
    display: inline-block!important;
}

.form-item-name{
	margin-right:5%;
}

.form-item-name input,
.form-item-phone input {
    width: 92%;
    padding: 15px 18px;
    border: 1px solid #ccc;
    font-size: 1em;
    border-radius: 2px;
    outline: none;
	font-family: "Oswald", sans-serif;
}

.form-item-name input:focus,
.form-item-phone input:focus,
.form-item-messeage textarea:focus {
    border-color: #000;
}

/* Текстове поле */
.form-item-messeage textarea {
    width: 94%;
    padding: 18px;
	max-width:94%;
	height:100px;
	min-height:100px;
	max-height:140px;
    font-size: 1em;
    border: 1px solid #ccc;
    resize: vertical;
	margin-top:2.5%;
	font-family: "Oswald", sans-serif;
}


/* ===== Кнопка ===== */
#edit-actions-submit {
    width: 100%;
    background: #CEE7FF;  
    color: #000;
    font-weight: 500;
    font-size:.9em;
    padding: 17px 0;
    border: none;
    cursor: pointer;
	margin-top:2.5%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	font-family: "Oswald", sans-serif;
	transition: background-color 0.3s ease;
	box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.15);
}

#edit-actions-submit:hover {
    background: #b7d8ff;
	transition: background-color 0.3s ease;
}

/***************/


.product-images{
	position:relative;
	display:inline-block;
	width:31.55%;
	margin:3% 0 0 5.5%;
}

.product-images .lightgallery-wrapper{
	position:relative;
	display:block;
}

.product-images .lightgallery-wrapper ul.lightgallery{
	position:relative;
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	text-align:left;
}


.product-images .lightgallery-wrapper ul.lightgallery li *{
	margin:0;
	padding:0;
	line-height:1;
}

.product-images .lightgallery-wrapper ul.lightgallery li{
	margin:0;
	padding:0;
	display:inline-block;
}

.product-images .lightgallery-wrapper ul.lightgallery li img{
	width:100%;
	height:auto;
	margin-bottom:-3px;
}

.product-images .lightgallery-wrapper ul.lightgallery li:not(:first-child){
	display:inline-block!important;
	margin-bottom:11.5px;
}
.product-images .lightgallery-wrapper ul.lightgallery li:not(:first-child) img{
	width:auto;
	height:120px;
}

.product-images .lightgallery-wrapper ul.lightgallery li:first-child{
	margin-bottom:25px;
	box-shadow:0 0 7.5px rgba(0,0,0,.26);
}

.product-images .lightgallery-wrapper ul.lightgallery li:not(:first-child){
	box-shadow:0 0 7.5px rgba(0,0,0,.27);
	margin-right:8.5px;
}

.product-images .lightgallery-wrapper ul.lightgallery li:last-child{
	margin:0px;
}

.product-images .lightgallery-wrapper ul.lightgallery li:not(:first-child):hover img{
	opacity:.65;
	-webkit-transition: all .34s ease;
	-moz-transition: all .34 ease;
	-ms-transition: all .34s ease;
	-o-transition: all .34s ease;
	transition: all .34s ease;
}
.product-images .lightgallery-wrapper ul.lightgallery li:not(:first-child) img{
	opacity:1;
	cursor:pointer;
	-webkit-transition: all .34s ease;
	-moz-transition: all .34 ease;
	-ms-transition: all .34s ease;
	-o-transition: all .34s ease;
	transition: all .34s ease;
}

/***/


.lg-backdrop {
    background:rgba(0,0,0,.89)!important
}

.lg-outer .lg-thumb-outer {
    background:transparent!important;
	text-align:center!important;
	width:100%;
	max-height:390px!important;
	bottom:5%!important;
}

.lg-outer .lg-thumb {
    padding: 20px 0!important;
    display:block;
	text-align:center;
	width:100%!important;
}

.lg-thumb-item{
	display:inline-block!important;
	float:none!important;
	margin-right:5px;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
    width:auto!important;
	height:95px!important;
}

.lg-outer .lg-thumb-item img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
	border-color:rgb(169, 210, 243)!important;
}

/***/

.product-info{
	position:relative;
	display:inline-block;
	width:50%;
	padding:0 1.5%;
	margin:1% 0 0 4%;
	vertical-align:top;
}

.product-info .breadcrumb-block {
	position: relative;
	display: block;
	width:96%;
	margin:1.9em 0 3em;
	padding: 20px 0 22px 4%;
	1background:#CEE7FF;
	background:rgba(206, 231, 255,.38);
	-webkit-transition: all .54s ease;
	-moz-transition: all .54 ease;2
	-ms-transition: all .54s ease;
	-o-transition: all .54s ease;
	transition: all .54s ease;
}

.product-info .breadcrumb-block a {
	display: inline-block;
	color: #000;
	line-height:1;
	padding:0;margin:0;
	font-size:1em;
	font-weight: 400;
	-webkit-transition: all .54s ease;
	-moz-transition: all .54 ease;
	-ms-transition: all .54s ease;
	-o-transition: all .54s ease;
	transition: all .54s ease;
}

.product-info .breadcrumb-block a:after {
	display: inline-block;
	color: #000;
	font-size:1.15em;
	font-weight: 400;
	content: '/';
	margin: 0 12px;
}


.product-info .breadcrumb-block a:hover{
	color: #8BB7F0;
	-webkit-transition: all .54s ease;
	-moz-transition: all .54 ease;
	-ms-transition: all .54s ease;
	-o-transition: all .54s ease;
	transition: all .54s ease;
}


.product-info .breadcrumb-block a:last-child:after{display:none}

/**/

.product-info h1{
	font-size: 2.14em;
    font-weight: 500;
    margin: 27px 0 15px;
    line-height: 1.2;
}

.buy-btn{
    background-color: #F39200;
	color: #ffff!important;
	padding: 17px 55px 17.5px;
	border: none;
	box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
	text-transform: uppercase;
	font-weight: 600;
	font-size:.88em;
	text-align:center;
	cursor: pointer;
	width:21%;
	transition: background-color 0.3s ease;
	margin:3.2em 0 0;
	line-height:1;
	letter-spacing:.4px;
	text-decoration: none;
	display: block;
}

.buy-btn:hover {
	background-color: #8BB7F0;
	color:#2A2A2A!important;
}

.details-section{
	position:relative;
	display:block;
	padding:2.5% 4%;
	width:82%;
	margin:2% auto 0;
	background:#F9F9F9;
}

.details-section p {
    font-size: 1.1em;
    font-weight:300;
    line-height: 1.45;
    color: #222;
    max-width: 90%;
    margin: 0 0 20px 0px;
}

.details-section p strong{font-size:1em;}

.details-section li{
	font-size:1em;
	font-weight:400;
	margin-bottom:4px;
}

/**/

.price-text{
	font-weight:normal;
	padding:2% 3%;
	text-align:left;
	display:block;
	position:relative;
	background: rgb(248, 248, 248);
	margin:2.65em 0 0;
}

.price-text p{
	font-size:1.15em;
	margin:10px 0 15px;
	padding-bottom:0;
}

/**/

.technical-section{
	font-weight:normal;
	
	text-align:left;
	display:block;
	position:relative;
	
	margin:0em 0 0;
}

.technical-section span.technical-title{
	font-size:1.35em;
	margin:1.5em 0 .85em;
	line-height:1;
	padding:19px 0 23px 20px;
	background:rgba(206, 231, 255,1);
	position:relative;
	display:block;
	color:#000;
	cursor:pointer;
	box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 5px;
	
}

.technical-section span.technical-title:hover{
	background:rgba(206, 231, 255,.45);
	box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 5px;
	transition: transform 0.3s ease;
}

.technical-section span.technical-title::before {
    content: "";
    position: absolute;
    right: 1.85%;
    top: 50%;
    transform: translateY(-50%) rotate(0deg); /* по центру вертикально */
    background-image: url('../images/arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 37px;
    height: 37px; 
    transition: transform 0.3s ease;
}

.technical-section.open span.technical-title::before {
    transform: translateY(-50%) rotate(90deg);
}

.technical-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #F9F9F9;
    padding: 0 3%; /* початково без вертикального паддінгу */
}

.technical-section.open .technical-body {
    max-height: 900px; /* достатньо, щоб вміст влазив */
    padding: 2% 3%;
	position:relative;
}

.technical-body ul{
	padding:0;
	margin-left:1.5em;
	margin-bottom:30px;
	position:relative;
	display:block;
	
}

.technical-body ul li{
	font-size:1.05em;
	margin-bottom:7px;
}

.technical-section p{
	font-size:1.1em;
	margin:10px 0 15px;
	padding-bottom:0;
	
	position:relative;
	display:block;
}

/**/

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .accordion {
    background-color: #F8F8F8;
    border: 1px solid #ddd;
    border-radius: 0; /* прямі кути */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    cursor: pointer;
    padding: 15px 20px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: background-color 0.3s;
  }

  .accordion:hover {
    background-color: #f0f0f0;
  }

  .accordion-content {
    display: none;
    padding: 15px 20px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
  }

  .accordion.active + .accordion-content {
    display: block;
  }

  .accordion-icon {
    transition: transform 0.3s;
  }

  .accordion.active .accordion-icon {
    transform: rotate(90deg);
  }

/**/

.instruction-section {
	display: inline-block;
	position:relative;
	margin:0em 0 15px;
	
}

.instruction-section a {
	position: relative;
	display: flex;
	align-items: center;
	padding:19px 20px 22px 55px;
	font-weight: 600;
	font-size: .92em;
	text-transform:uppercase;
	color: #fff;
	background:#2A2A2A;
	text-decoration: none;
	line-height: 1.2;
	max-width:310px;
	transition: all 0.3s ease;
	box-shadow:0 0 3px rgba(0,0,0,.15);
}

.instruction-section a:hover{
	background: rgba(206, 231, 255, 1);
	color:#000;
	transition: all 0.3s ease;
}

/* Іконка */
.instruction-section a::before {
	content: "";
	position: absolute;
	left: 4%;
	top: 50%;
	width: 32px;
	height: 32px;
	background: url("../images/instruction.png") no-repeat center / contain;
	transform: translateY(-50%) rotate(0deg);
	transition: transform 0.4s ease;
}

/* Hover-ефект */
.instruction-section a:hover::before {
	transform: translateY(-50%) rotate(180deg);
}


/**/

.product-youtube{
	position:relative;
	display:block;
	width:90%;
	margin:6em auto 3.5em;
	text-align:center;
}

.product-youtube h2{
	font-size: 2.9em;
    font-weight: 700;
    margin: 0px 0 45px;
	padding:0 0 15px;
	text-align:left;
    line-height: 1.2;
	border-bottom:3.3px solid #CEE7FF;
}

.product-youtube .product-video-field{
    width:75%;
	height:auto;
	min-height:auto;
	max-height:auto;
	margin:0 auto;
	display:inline-block;

}

.product-youtube .product-video-field figure{
	box-shadow:0 0 4px rgba(30,30,30,.14);
}

/**/

.related-products-section{
	position:relative;
	display:block;
	width:90%;
	margin:8em auto 1.5em;
}

.related-products-section h3{
	font-size: 2.9em;
    font-weight: 700;
    margin: 0px 0 45px;
	padding:0 0 15px;
    line-height: 1.2;
	border-bottom:3.3px solid #CEE7FF;
}

#block-vologomir-views-block-related-products-block-1 > div > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

#block-vologomir-views-block-related-products-block-1 .views-row {
    width: 22.25%;
    margin-bottom: 5.5em;
	margin-right:2%;
    box-sizing: border-box;
}

#block-vologomir-views-block-related-products-block-1 .views-row:last-child{
   margin-right:0%!important;
}

#block-vologomir-views-block-related-products-block-1 .views-field-field-foto {
    border: 3.2px solid transparent;
    -webkit-transition: all .34s ease;
    -moz-transition: all .34 ease;
    -ms-transition: all .34s ease;
    -o-transition: all .34s ease;
    transition: all .34s ease;
}

#block-vologomir-views-block-related-products-block-1 .views-field-field-foto{
	border:3.2px solid transparent;
	
	-webkit-transition: all .34s ease;
	-moz-transition: all .34 ease;
	-ms-transition: all .34s ease;
	-o-transition: all .34s ease;
	transition: all .34s ease;
}

#block-vologomir-views-block-related-products-block-1 .views-row:hover .views-field-field-foto{
	border:3.2px solid #232222;
	box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.13);
	
	-webkit-transition: all .34s ease;
	-moz-transition: all .34 ease;
	-ms-transition: all .34s ease;
	-o-transition: all .34s ease;
	transition: all .34s ease;
}

#block-vologomir-views-block-related-products-block-1 .views-field-field-foto img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

#block-vologomir-views-block-related-products-block-1 .views-field-field-dovhyy-zaholovok a {
    font-size: 1.14em;
    color: #000;
    font-weight: 600;
    margin: 20px 0 0;
    line-height: 1.23;
    position: relative;
    display: block;
    -webkit-transition: all .34s ease;
    -moz-transition: all .34 ease;
    -ms-transition: all .34s ease;
    -o-transition: all .34s ease;
    transition: all .34s ease;
}

/**/

.sale-block{
	position:relative;
	display:block;
	width:95%;
	margin:0 auto 1.5em;
	padding:4em 0;
	text-align:center;
	background: rgba(206, 231, 255, .3);
}

.sale-block span{
    font-size: 3.1em;
    font-weight: 900;
    margin: .25em 0 45px 0;
    line-height: 1.25;
    text-transform: uppercase;
	display:block;
}

.sale-block span strong{
	color:#F39200;
}

.sale-block a{
    background-color: #2A2A2A;
    color: #fff;
    padding: 19px 145px 20.5px;
    border: none;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
    font-weight: 500;
    font-size: 1.05em;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: .4px;
    text-decoration: none;
    display: inline-block;
}
.sale-block a:hover{
    color: #CEE7FF;
	transition: all 0.3s ease;
}

/**/

.buy-btn-fixed {
    background-color: #F39200;
    color: #fff !important;
    padding: 18px 131px 19.5px;
    border: none;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.25em;
    text-align: center;
    cursor: pointer;
	
    line-height: 1;
    letter-spacing: .8px;
    text-decoration: none;
    display: inline-block;

    position: fixed;
    bottom:14.5%;
    left: 50%;
    z-index: 9;
	-webkit-animation: pulse 2.25s infinite;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

/* активний стан */
.buy-btn-fixed.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

.buy-btn-fixed:hover {
	background-color: #8BB7F0;
	color:#2A2A2A!important;
	transform: translate(-50%, 120%) scale(1);
}



@-webkit-keyframes pulse {
  0% {
    transform: translate(-50%, 120%) scale(0.945);
  }
  65% {
    transform: translate(-50%, 120%) scale(1);
    box-shadow: 0 0 0 12px rgba(255, 208, 94,.195);
  }
  72% {
    box-shadow: 0 0 0 32px rgba(255, 208, 94,.045);
  }
  88% {
    box-shadow: 0 0 0 32px rgba(255, 208, 94,.015);
  }
  100% {
    transform: translate(-50%, 120%) scale(0.945);
    box-shadow: 0 0 0 0 rgba(255, 208, 94,0);
  }
}


/**/

/* overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

/* popup */
.popup {
  background: #fff;
  width: 500px;
  max-width: 90%;
  padding: 30px;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  position: relative;
}

/* active state */
.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup-overlay.active .popup {
  transform: scale(1);
}

/* close button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

/**/

.popup h3{
	font-size: 1.75em;
    font-weight: 700;
    margin: 0px 0 20px;
    padding:18px 0 23px;
    line-height: 1.2;
	text-align:center;
	background: #F9F9F9;
}

.popup h3 strong {
    color: #F39200;
}

/* ===== Загальний контейнер ===== */
#block-vologomir-vebforma-2 form {
    width: 100%;
}

/* ===== Усі поля — з нового рядка ===== */
#block-vologomir-vebforma-2 .form-item {
    width: 100%;
    margin-bottom: 2.5%;
}

/* ===== Input (імʼя, телефон, кількість) ===== */
#block-vologomir-vebforma-2 .form-item input {
    width: 100%;
    padding: 13.5px 18px 15.5px;
    border: 1px solid #ccc;
    font-size: 1em;
    border-radius: 2px;
    outline: none;
    font-family: "Oswald", sans-serif;
    box-sizing: border-box;
}

/* Focus */
#block-vologomir-vebforma-2 .form-item input:focus,
#block-vologomir-vebforma-2 textarea:focus {
    border-color: #000;
}

/* ===== Textarea (коментар) ===== */
#block-vologomir-vebforma-2 textarea {
    width: 100%;
    padding: 18px;
    height: 100px;
    min-height: 100px;
    max-height: 140px;
    font-size: 1em;
    border: 1px solid #ccc;
    resize: vertical;
    font-family: "Oswald", sans-serif;
    box-sizing: border-box;
}

/* ===== Кнопка ===== */
#block-vologomir-vebforma-2 #edit-actions-submit {
    width: 100%;
    background: #CEE7FF;
    color: #000;
    font-weight: 500;
    font-size: 1.1em;
    padding: 16px 0;
    border: none;
    cursor: pointer;
    margin-top: 2.5%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Oswald", sans-serif;
    transition: background-color 0.3s ease;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.15);
}

/* Hover */
#block-vologomir-vebforma-2 #edit-actions-submit:hover {
    background: #b7d8ff;
}

/**/


.single-page-title-section{
    display: flex;
	position:relative;
	overflow:hidden;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 95%;
    margin: 2em auto 1.35em;
	min-height:150px;
}

.background-section{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    display: block;
    background-image: url(../images/single-page.webp);
	
    background-position: 50% 50%;
    background-size: cover;
    z-index: 1;
}

.background-section:after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:block;
    z-index:1;
    background: linear-gradient(339deg, rgba(0, 0, 0, 0.87718837535014) 0%, rgba(6, 39, 69, 0.7483368347338936) 42%, rgba(78, 148, 217, 0.5970763305322129) 100%);
}

@keyframes breadcrumbs-bg{
    0% {
        transform: scale(1) translate3d(0, 0, 0); /* Початковий стан */
    }
    50% {
        transform: scale(1.4) translate3d(0, 0, 0); /* Фото збільшується */
    }
    100% {
        transform: scale(1) translate3d(0, 0, 0); /* Фото повертається до початкового розміру */
    }
}

.single-page-title-section h1{
	font-size: 3.33em;
    font-weight: 900;
    margin: 2.15em 0;
    line-height: 1.25;
	z-index:99!important;
	display:block;
	color:#fff;
	position:relative;
    text-transform: uppercase;
}

.single-page-title-section h1:after{
	content:'';
	width:47%;
	height:3.3px;
	position:relative;
	display:block;
	margin:.25em auto 0;
	z-index:99!important;
	background:#ffba00;
}

.single-page-body{
	position: relative;
    display: block;
    width: 86%;
    padding: 2.5% 4%;
    margin: 2% auto 0px;
    background: rgb(249, 249, 249);
}

.single-page-body p {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.45;
    color: rgb(34, 34, 34);
    max-width: 90%;
    margin: 0px 0px 20px;
}

.single-page-body ul{
	margin:35px auto;
}

.single-page-body li {
    font-size: 1.07em;
    font-weight: 400;
    line-height: 1.42;
    color: rgb(34, 34, 34);
    margin: 0px 0px 14px;
	
    list-style: none;
    background: url(../images/check-blue.png) no-repeat 1.5px 2.5px;
    background-size: 21.5px 21.5px;
    padding-left: 35px;
}

/**/

/****************/

.contact-body{
	position:relative;
	display:block;
	width:100%;
	margin:5% auto 0;
	text-align:center;
}

.ct-row{
	position:relative;
	display:inline-block;
	width:38%;
	vertical-align:top;
	border:0px solid red;
	text-align:left;
}

.ct-row:nth-child(1){
	margin:0 6% 0 0;
}

.contact-image{
	position:relative;
	display:block;
	margin:0 0 7%;
	box-shadow:1px 2.4px 4px #ccc;
}

.contact-image *{
	padding:0;
	margin:0;
	line-height:1;
}

.contact-image img{
	width:100%;
	height:auto;
	display:inline-block;
	z-index:7;
}

.contact-image .hover-logo{
	position:relative;
	display:inline-block;
	z-index:9;
	position:absolute;
	top:4%;
	right:4%;
}

.contact-image .hover-logo img{
	width:250px;
	height:auto;
	display:inline-block;
	z-index:9;
	margin-bottom:-8px;
	
	opacity:.55;
}



.hover-contact{
    position: absolute;
    z-index: 8;
    width: 100%;
    height: 99.9%;
    display: block;
    background: rgb(0,0,0);
    background: linear-gradient(339deg, rgba(0,0,0,0.77718837535014) 0%, rgba(6,39,69,0.7483368347338936) 42%, rgba(78,148,217,0.4970763305322129) 100%);
}

.contact-image span{
	position:absolute;
	bottom:5%;
	left:4%;
	display:inline-block;
	z-index:9;
	color:#fff;
	font-weight:800;
	font-size:1.8em;
}

.r-block{
	position:relative;
	display:block;
}

.r-block a {
    font-size: 1.1em;
    font-weight: 600;
    display: inline-block;
    color: #000;
    margin: 0px 0 0;
    padding: 0 0 6px;
    line-height: 1;
    -webkit-transition: all .45s;
    -moz-transition: all .45s;
    -o-transition: all .45s;
    -ms-transition: all .45s;
    transition: all .45s;
}

.r-block a:hover{
	color:#74B7F9;
	-webkit-transition: all .45s;
    -moz-transition: all .45s;
    -o-transition: all .45s;
    -ms-transition: all .45s;
    transition: all .45s;
}

.ct-mail{
	position:relative;
	display:block;
	margin:.85em 0 15px;
}

.ct-mail a{
	font-size:1.2em;
	font-weight:700;
	color:#3689DB;
	-webkit-transition: all .35s;
    -moz-transition: all .35s;
    -o-transition: all .35s;
    -ms-transition: all .35s;
    transition: all .35s;
}

.ct-mail a:hover{
	color:#000;
	-webkit-transition: all .35s;
    -moz-transition: all .35s;
    -o-transition: all .35s;
    -ms-transition: all .35s;
    transition: all .35s;
}

.ct-adres{
	position:relative;
	display:block;
	margin-top:25px;
	background:#f8f8f8;
}

.ct-adres p{
	margin:0;
	padding:35px 11px;
	font-weight:600;
	font-size:1.1em;
}

.map-contact{
	position:relative;
	display:block;
	margin:45px 0 0;
}

.bottom-info{
	position:relative;
	display:block;
	width:77%;
	margin:70px auto 0;
	background:#f8f8f8;
	padding:15px 20px;
	text-align:left;
}


.bottom-info h4{
	font-size:1.58em;
	margin:35px 0 13px;
	padding:0;
	color:#3689DB;
	line-height:1;
}


.bottom-info a{
	font-size:1.06em;
	font-weight:700;
	color:#000;
	-webkit-transition: all .35s;
    -moz-transition: all .35s;
    -o-transition: all .35s;
    -ms-transition: all .35s;
    transition: all .35s;
}

.bottom-info a:hover{
	color:#3689DB;
	-webkit-transition: all .35s;
    -moz-transition: all .35s;
    -o-transition: all .35s;
    -ms-transition: all .35s;
    transition: all .35s;
}

/****************/

/**/

.footer-section {
	position: relative;
	
	background: #232222;
	min-height: 300px;
	margin: 5em auto -10px;
	color: #fff;
	display:inline-block;
	padding: 40px 0 28px;
	font-family: "Oswald", sans-serif;
	width:100%;
	z-index:12;
}

.footer-rows-section{
	width: 95%;
	display: flex;
	justify-content: center;
	margin: 0em auto 0;
}


/* Колонка */
.footer-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 26%; 
}

.footer-row:nth-child(2){margin:0 6% 0 10.5%}

/* Заголовки */
.footer-row h4 {
	margin: 0 0 14px 0;
	font-size: 1.35em;
	font-weight: 500;
	color: #a9d2f3;
}


.footer-row span {
	display:block;
	text-align:left;
	margin-bottom:4px;
}

.footer-row a {
	color: #fff;
	text-decoration: none;
	font-size: 1.05em;
	display:inline-block;
	outline:none;
	font-weight:500;
}

.footer-row a.mail{
	color: #8BB7F0;
	text-decoration: none;
	font-size: 1.25em;
	display: block;
	margin:15px 0;
	outline:none;
	font-weight:bold;
}

.footer-row a:hover {
	color:#B7D8FF;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4 ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

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

.footer-row li {
	margin-bottom: 9px;
	font-size: 1.04em;
}


.footer-row p {
	margin: 0;
	font-size: 1.05em;
	line-height: 1.4;
}

/**/

.copy {
	width: 95%;
	border-top: 1px solid #5b5b5b;
	padding: 15px 0 0px;
	text-align: center;
	display:block;
	font-size: .9em;
	letter-spacing: 0.8px;
	color: #ccc;
	margin:3em auto 0px;
}


@media only screen and (min-width:1595px){

body {
	font-size:17px;
}

.main-hero-list {
    position: absolute;
    background: #fff;
    padding: 5% 8% 5% 5%;
    bottom: 15%;
    left: -19%;
    display: inline-block;
}

.main-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 10px 20px -2vh;
    overflow: visible;
    width: 95%;
    margin: .65em auto;
    background: #F2F3F5;
}

.main-hero-text {
    width: 60%;
    display: inline-block;
    padding: 0 1.5%;
}



}

@media only screen and (min-width:1665px){

body {
	font-size:19px;
}

.main-hero-text {
    width: 66%;
    display: inline-block;
    padding: 0 1.5%;
}

.main-hero-text .btn-black {
    background-color: #2A2A2A;
    color: #fff;
    padding: 22px 115px 23.5px;
    border: none;
}

}


@media only screen and (min-width:1880px){

body {
	font-size:20.5px;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: #2A2A2A;
    border-radius: 0px;
    width: 100%;
    margin: 3.05px 0;
}

.hamburger {
    position: fixed;
    top: 2.62%;
    left: 2.5%;
    width: 38px;
    height: 31px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.main-hero-text .btn-black {
    background-color: #2A2A2A;
    color: #fff;
    padding: 21px 125px 22.5px;
    border: none;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
    font-weight: 600;
    font-size: .92em;
    margin: 2.2em 0 35px;
}

.buy-btn {
    background-color: #F39200;
    color: #ffff!important;
    padding: 23px 95px 24.5px;
    border: none;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
    font-weight: 600;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
    width: 21%;
    transition: background-color 0.3s ease;
    margin: 3.2em 0 0;
    line-height: 1;
    letter-spacing: .4px;
    text-decoration: none;
    display: block;
}

.buy-btn-fixed {
    background-color: #F39200;
    color: #fff !important;
    padding: 23px 171px 24.5px;
    border: none;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.3em;
}

.technical-section span.technical-title {
    font-size: 1.35em;
    margin: 1.5em 0 .85em;
    line-height: 1;
    padding: 25px 0 32px 20px;
    background: rgba(206, 231, 255,1);
    position: relative;
    display: block;
    color: #000;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 5px;
}

.technical-section span.technical-title::before {
    content: "";
    position: absolute;
    right: 1.85%;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    background-image: url('../images/arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 44px;
    height: 44px;
    transition: transform 0.3s ease;
}

.popup {
    background: #fff;
    width: 600px;
    max-width: 90%;
    padding:75px 60px;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
}

.sale-block a {
    background-color: #2A2A2A;
    color: #fff;
    padding: 25px 145px 27.5px;
    margin-top:18px;
}

.facets-section ul {
    display: block;
    margin: 0 0 13px;
    text-indent: 0;
    padding: 25px 15px 9px;
    background: rgba(228, 228, 228,.19);
}

.facets-section li {
    display: block;
    margin: 0 0 22px;
    padding: 0;
}

.main-hero-text {
    width: 65%;
    display: inline-block;
    padding: 0 1.5%;
}

}

@media only screen and (max-width:1480px){

body {
	font-size:16.4px;
}


.main-hero-banner {
    position: relative;
    width: 35%;
    display: inline-block;
    margin: 0 0 0% -0%;
    padding: 0;
    text-align: center;
}

.main-hero-banner img {
	margin-right:-7%;
}

.facets-section {
    position: relative;
    display: inline-block;
    width: 32%;
    border: 0px solid red;
    vertical-align: top;
    margin: 2em 2.5% 0 3%;
    min-height: 300px;
    font-family: "Oswald", sans-serif;
}

.products-section {
    position: relative;
    display: inline-block;
    width: 61%;
    border: 0px solid red;
    margin-top: 2em;
    vertical-align: top;
}

}


@media only screen and (max-width:1375px){

body {
	font-size:14.1px;
}

.hamburger {
    position: fixed;
    top: 4.52%;
    left: 2.5%;
    width: 30px;
    height: 26px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hamburger span {
    display: block;
    height: 2.0px;
    background-color: #2A2A2A;
    border-radius: 0px;
    width: 100%;
    margin: 3.25px 0;
}

}

@media only screen and (max-width:1150px){
	
body {
	font-size:15.4px;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -75%;
    width: 65%;
    height: 100%;
    background-color: #fff;
    transition: left 0.6s ease;
    z-index: 1000;
    padding: 40px 0px 20px 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.side-menu ul.menu li.menu__item {
    width: 100%;
    text-align: left;
    border-bottom: 1.65px solid rgba(0, 0, 0, 0.39);
    transition: 0.31s;
}

.side-menu ul.menu li a.menu__link::after {
    content: '';
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: inline-block;
    background: url('../images/tab-arow.png') no-repeat center center;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.43s ease, right 0.29s ease;
}

.side-menu ul.menu li a.menu__link {
    display: block;
    width: 100%;
    padding: 18px 25px 21px;
    color: #000;
    font-size: 1.63em;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    overflow: hidden;
    letter-spacing: .15px;
}	

.side-menu .email-go a {
    font-weight: 600;
    line-height: 1;
    color: rgb(0, 0, 0);
    font-size: 1.55em !important;
    display: inline-block !important;
    transition: 0.35s;
    padding: 20px 0;
}
	
.main-hero,.page-top{display:none}	

.hamburger {
    position: fixed;
    top: 45px;
    left: 1.1%;
    width: 39px;
    height: 31px;
}

.hamburger span {
    display: block;
    height: 3.1px;
    background-color: #2A2A2A;
    border-radius: 0px;
    width: 100%;
    margin: 2.05px 0;
}

.page-top-vertical{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width:100%;
	margin:12px auto 24px;
	padding:10px 0 0;
}
/*
.page-top-vertical:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:15px;
	background:#2A2A2A;
	display:block;
	z-index:9;
	box-shadow:0 0 3.5px #333;
}*/

.page-top-vertical .logo-top {
	display: flex;
	align-items: center;
	gap: 19px;
	margin-left:9%;
}

.page-top-vertical .logo-top img {
	height: 75px;
	width: auto;
	display: block;
}

.page-top-vertical .logo-top .logo-name {
	font-size: 1.15em;
	font-weight:500;
	text-transform: uppercase;
	line-height: 1.2;
	margin-left:9px;
}

.page-top-vertical .phones {
	display: flex;
	gap: 0px;
	margin-right:3%;
	margin-top:0px;
}


.page-top-vertical .phones a {
	color: #000;
	font-size:1.15em;
	font-weight:600;
	text-decoration: none;
	transition: color 0.3s ease;
}

.page-top-vertical .phones a:first-child{
	margin-right:35px;
}

.page-top-vertical .phones a:hover {
	color: #8BB7F0;
	transition: color 0.3s ease;
}

	
.main-hero-vertical{
	display: block;
	overflow:hidden;
	width:100%;
	height:93vh;
	position:relative;
}	

.main-hero-banner-vertical{
	display: block;
	width:100%;
	height:100%;
	position:relative;
	
	margin:0em 0 0;
	background-size: cover;    
	background-repeat: no-repeat;
	background-position: center; 
}

.main-hero-banner-vertical:after{
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	display: block;
	width:100%;
	height:100%;
	z-index:6;
	background: linear-gradient(0deg,rgba(0, 0, 0, 1) 13%, rgba(0, 0, 0, 0.8) 37%, rgba(0, 0, 0, 0) 83%);
}

.main-hero-banner-vertical img{
	width:100%;
	height:100%;
	display:inline-block;
	z-index:4;
}


.main-hero-text-vertical {
	width:97%;
	display:inline-block;
	position:absolute;
	bottom:12%;
	left:1.8%;
	z-index:10;
}

.main-hero-text-vertical h1 {
	font-size: 3.3em;
	font-weight: 900;
	margin: .25em 0 0em 0;
	line-height: 1.25;
	color:#fff;
	text-transform: uppercase;
}

.main-hero-text-vertical h1:after{
	content:'';
	width:29%;
	height:4px;
	display:block;
	background:#A3CCF4;
	margin:.75em 0 .85em;
}

.main-hero-text-vertical p {
	font-size: 23px!important;
	font-weight: normal;
	line-height: 1.45;
	color: #fff;
	max-width:90%;
	margin: 0 0 40px 0px;
}

.main-hero-text-vertical .btn-black {
	background-color:#F08900;
	color: #fff;
	padding: 23px 145px 25.5px;
	border: none;
	box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
	text-transform: uppercase;
	font-weight: 600;
	font-size:22px;
	text-align:center;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin:1.4em 0 0;
	line-height:1;
	letter-spacing:.4px;
	text-decoration: none;
	display: inline-block;
}

.main-hero-text-vertical .btn-black:hover {
	background-color: #2A2A2A;
	color:#fff;
}

/**/

.stats-section {
    background: #CEE7FF;
    padding: 0px;
    display: flex;
    justify-content: center;
    width:88%;
	padding:55px 6%;
    margin: 0em auto 0;
}

.stats-row {
    width: 29%;
}

.stats-number {
    font-size: 4.5em;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 23px;
}

.stats-label {
    font-size: 1.2em;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    line-height: 1.35;
    max-width: 97%;
}

.home-products-section .views-row {
    width: 46.5%;
    margin-bottom: 4.15em;
    box-sizing: border-box;
}

.home-products-section .row-title {
    font-size: 1.43em;
    color: rgb(0, 0, 0);
    font-weight: 600;
    line-height: 1.23;
    position: relative;
    display: block;
    margin: 20px 0px 0px;
    transition: 0.34s;
}

.guarantee-section {
    width: 95%;
    margin: 6em auto 3em;
    flex-direction: column;
}

.guarantee-section img {
    width: 100%;
    height: auto;
}

.guarantee-text {
    width: 100%;
    padding: 3.5em 20px 5.5em;
}

.guarantee-text h2 {
    font-size: 3.4em;
    font-weight: 700;
    margin: 20px 0 16px;
    line-height: 1.2;
}

.guarantee-text p {
    font-size: 1.5em;
    line-height: 1.45;
    max-width: 90%;
    color: #2A2A2A;
	font-weight:500;
	margin-bottom:0px;
}

/**/

.consultation-section {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 0;
    width: 95%;
    margin: 9em auto 0;
}

.consultation-text {
    width: 100%;
}

.consultation-text h2 {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 25px;
}

.consultation-text h2:after {
    content: '';
    width: 29%;
    height: 4px;
    display: block;
    background: #A3CCF4;
    margin: .75em 0 .35em;
}

.consultation-text p {
    font-size: 1.64em;
    line-height: 1.45;
    max-width: 100%;
    color: #2A2A2A;
	font-weight:400;
	margin-bottom:2px;
}


.webform-section {
    width: 100%;
	margin:2.5em 0 0;
}

.form-item-name input,
.form-item-phone input {
    width: 92%;
    padding: 17px 18px;
    border: 1.55px solid #ccc;
    font-size: 1.55em;
}

.form-item-messeage textarea {
    width: 94%;
    padding: 18px;
    max-width: 94%;
    height: 100px;
    min-height: 100px;
    max-height: 140px;
    font-size: 1.55em;
    border: 1.55px solid #ccc;
    resize: vertical;
    margin-top: 2.5%;
    font-family: "Oswald", sans-serif;
}

#edit-actions-submit {
    width: 100%;
    background: #CEE7FF;  
    color: #000;
    font-weight: 500;
    font-size:1.6em;
    padding: 23px 0;
    border: none;
    cursor: pointer;
	margin-top:2.5%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	font-family: "Oswald", sans-serif;
	transition: background-color 0.3s ease;
	box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.15);
}

/**/

.footer-rows-section{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "col1 col2"
      "col1 col3";
    gap: 50px;
	width: 92%;
	margin-left:6.5%;
}

.footer-row{
    width: 100%;
    margin: 0;
}

.footer-row:nth-child(1){
    grid-area: col1;
}

.footer-row:nth-child(2){
    grid-area: col2;
	margin: 0 0% 0 6%;
}

.footer-row:nth-child(3){
    grid-area: col3;
	margin: 0 0% 0 6%;
}

.footer-row h4 {
    margin: 0 0 14px 0;
    font-size: 1.6em;
}

.footer-row a {
    color: #fff;
    text-decoration: none;
    font-size: 1.35em;
    display: inline-block;
    outline: none;
    font-weight: 500;
}

.footer-row p {
    margin: 0;
    font-size: 1.35em;
    line-height: 1.4;
}

.footer-row a.mail {
    color: #8BB7F0;
    text-decoration: none;
    font-size: 1.45em;
    display: block;
    margin: 15px 0;
    outline: none;
    font-weight: bold;
}

/**/

.page-title-section h1 {
    font-size: 3.33em;
    font-weight: 900;
    margin: 1.45em 0;
    line-height: 1.25;
    z-index: 99!important;
    display: block;
    position: relative;
    text-transform: uppercase;
}

.products-section .views-row {
    display: inline-block;
    width: 45%;
    height: auto;
    text-align: left;
    vertical-align: top;
    overflow: hidden;
    margin: 0px 4.33% 7.15% 0px!important;
}

.products-section .views-row:nth-child(2n+2) {
    margin: 0px 0% 7.15% 0px!important;
}

.products-section .views-row:nth-child(3n+3) {
    margin: revert;
}

/**/

.single-page-body p {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.45;
    color: rgb(34, 34, 34);
    max-width: 100%;
    margin: 0px 0px 20px;
}

.single-page-body ul {
    margin: 21px auto;
	padding-inline-start: 14px;
}

/**/

.ct-row {
    position: relative;
    display: block;
    width: 95%;
    vertical-align: top;
    border: 0px solid red;
    text-align: left;
	margin:0 auto 2%;
}

.ct-row:nth-child(1) {
    margin: 0 auto 7em;
}

.contact-image {
    max-height:450px;
	overflow:hidden;
}

.contact-image span {
    position: absolute;
    bottom: 5%;
    left: 4%;
    display: inline-block;
    z-index: 9;
    color: #fff;
    font-weight: 800;
    font-size: 2.4em;
}

.r-block a {
    font-size: 1.45em;
}


.ct-adres p {
    font-size: 1.45em;
}

/**/

.product-body{
	position:relative;
	display:block;
	margin:0 auto;
	width:92%;
}

.product-images {
    position: relative;
    display: block;
    width: 100%;
    margin: 3% auto 5.5%;
}

.product-images .lightgallery-wrapper ul.lightgallery li:not(:first-child) img {
    width: auto;
    height: 230px;
}

.product-info {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 1.5%;
    margin: 1% auto 4%;
    vertical-align: top;
}

/**/


.product-body .breadcrumb-block {
	position: relative;
	display: block;
	width:96%;
	margin:1.9em 0 0em;
	padding: 20px 0 27px 4%;
	1background:#CEE7FF;
	background:rgba(206, 231, 255,.38);
	-webkit-transition: all .54s ease;
	-moz-transition: all .54 ease;2
	-ms-transition: all .54s ease;
	-o-transition: all .54s ease;
	transition: all .54s ease;
}

.product-body .breadcrumb-block a {
	display: inline-block;
	color: #000;
	line-height:1;
	padding:0;margin:0;
	font-size:1.25em;
	font-weight: 400;
	-webkit-transition: all .54s ease;
	-moz-transition: all .54 ease;
	-ms-transition: all .54s ease;
	-o-transition: all .54s ease;
	transition: all .54s ease;
}

.product-body .breadcrumb-block a:after {
	display: inline-block;
	color: #000;
	font-size:1.45em;
	font-weight: 400;
	content: '/';
	margin: 0 12px;
}


.product-body .breadcrumb-block a:hover{
	color: #8BB7F0;
	-webkit-transition: all .54s ease;
	-moz-transition: all .54 ease;
	-ms-transition: all .54s ease;
	-o-transition: all .54s ease;
	transition: all .54s ease;
}


.product-body .breadcrumb-block a:last-child:after{display:none}

/**/

.product-body h1{
	font-size: 2.94em;
    font-weight: 500;
    margin: 1.1em 0 1.4em;
    line-height: 1.2;
}

.buy-btn-fixed {
    background-color: #F39200;
    color: #fff !important;
    padding: 24px 181px 26.5px;
    border: none;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 25px!important;
    text-align: center;
    cursor: point5er;
    line-height: 1;
    letter-spacing: .8px;
    text-decoration: none;
    display: inline-block;
    position: fixed;
    bottom: 10.5%;
    left: 50%;
    z-index: 9;
    -webkit-animation: pulse 2.25s infinite;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
}


.buy-btn{
    background-color: #F39200;
	color: #ffff!important;
	padding: 24px 0px 26.5px;
	border: none;
	box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 25px!important;
	text-align:center;
	cursor: pointer;
	width:100%;
	transition: background-color 0.3s ease;
	margin:1.2em 0 1.5em;
	line-height:1;
	letter-spacing:.4px;
	text-decoration: none;
	display: block;
}

.buy-btn:hover {
	background-color: #8BB7F0;
	color:#2A2A2A!important;
}

.product-info {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 0%;
    margin: 1% 0 4% -1%;
    vertical-align: top;
}

.price-text p {
    font-size: 1.75em;
    margin: 10px 0 15px;
    padding-bottom: 0;
}

.technical-section span.technical-title {
    font-size: 26px!important;
    margin: 1.15em 0 .85em;
    padding: 26px 0 28px 24px;
}

.technical-section span.technical-title::before {
    top: 50%;
    width: 45px;
    height: 45px;
}

.technical-body ul li {
    font-size: 1.45em;
    margin-bottom: 7px;
}

.technical-section p {
    font-size: 1.45em;
    margin: 10px 0 15px;
    padding-bottom: 0;
    position: relative;
    display: block;
}

.instruction-section a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 22px 30px 22px 72px;
    font-weight: 600;
    font-size: 1.32em;
    text-transform: uppercase;
    color: #fff;
    background: #2A2A2A;
    text-decoration: none;
    line-height: 1.2;
    max-width: 410px;
    transition: all 0.3s ease;
    box-shadow: 0 0 3px rgba(0,0,0,.15);
}

.details-section {
    position: relative;
    display: block;
    padding: 2.5% 2%;
    width: 98%;
    margin: 2% auto 0;
    background: #F9F9F9;
}

.details-section p {
    font-size: 1.35em;
    font-weight: 300;
    line-height: 1.45;
    color: #222;
    max-width: 99%;
    margin: 0 0 20px 0px;
}

.details-section li{
	font-size: 1.35em;
}

/**/

.product-youtube {
    width: 100%;
    margin: 6em auto 3.5em;
}

.product-youtube .product-video-field {
    width: 100%;
    height: auto;
}

/**/

.related-products-section {
    width: 96%;
    margin: 7em auto 1.5em;
}

#block-vologomir-views-block-related-products-block-1 .views-row {
    width: 46.25%;
    margin-bottom: 4.5em;
    margin-right: 6%;
    box-sizing: border-box;
}

#block-vologomir-views-block-related-products-block-1 .views-row:nth-child(2n+2){
	margin-right:0!important;
}

#block-vologomir-views-block-related-products-block-1 .views-field-field-dovhyy-zaholovok a {
    font-size: 1.6em;
    margin: 20px 0 0;
}

/**/

.sale-block a {
    background-color: #2A2A2A;
    color: #fff;
    padding: 25px 0 26.5px;
    border: none;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
    font-weight: 500;
    font-size: 1.35em;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: .4px;
    text-decoration: none;
    display: block;
	width:65%;
	margin:0 auto;
}

/**/

.success-section h3{
	font-size:1.7em;
	line-height:1.2;
}

.success-section img{
	width:100%;
	height:auto;
}

}


@media only screen and (max-width:770px){

body {
	font-size:16.5px;
}

.hamburger {
    position: fixed;
    top: 35px;
    left: 2.25%;
    width: 43.5px;
    height: 31px;
}

.side-menu {
    left: -85%;
    width: 79%;
}

.close-btn {
    top: 0px;
}

/**/
	
.page-top-vertical {
    display: flex;
    flex-wrap: wrap;
	margin: 0px auto 0px;
}

.page-top-vertical .logo-top {
    width: 100%;
    margin-left: 13%;
    justify-content: flex-start;
}

.page-top-vertical .logo-top img {
    height: 83px;
}

.page-top-vertical .logo-top .logo-name {
    white-space: nowrap; /* назва в один рядок */
    flex: 1;
	margin-left: 1px;
	font-size: 1.45em;
}

.page-top-vertical .phones {
    width: 100%;
    min-width: 100vw!important;
    margin: 15px 0 0 0;
    justify-content: center;
    gap: 15px;
	padding:25px 0;
	background:#F2F3F5;
	
}
	
.page-top-vertical .phones a:first-child {
    margin-right: 30px;
}

.page-top-vertical .phones a {
    color: #000;
    font-size: 1.3em;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

/**/

.main-hero-vertical {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 113vh;
    position: relative;
}

.main-hero-banner-vertical {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0em 0 0;
    background-size:auto 60%;
    background-repeat: no-repeat;
    background-position:top;
}

.main-hero-banner-vertical:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 6;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 33%, rgba(0, 0, 0, 0.8) 57%, rgba(0, 0, 0, 0) 83%);
}

.main-hero-text-vertical h1 {
    font-size: 3em;
    font-weight: 900;
    margin: .25em 0 0em 0;
    line-height: 1.25;
    color: #fff;
    text-transform: uppercase;
}

.main-hero-text-vertical p {
    font-size: 23.25px!important;
    font-weight: normal;
    line-height: 1.5;
    color: #fff;
    max-width: 100%;
    margin: 0 0 40px 0px;
}

.main-hero-text-vertical {
    width: 98%;
    display: inline-block;
    position: absolute;
    bottom: 10.5%;
    left: 1.8%;
    z-index: 10;
}

/**/

.stats-section {
    display: flex;
    flex-direction: column;
    align-items: center;
	width: 94%;
    padding: 35px 3%;
    margin: 0em auto 0;
}

/* один рядок */
.stats-row {
    width: 100%;
    margin: 0 auto;
    padding: 19px 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 35px;
}

/* бордер під усіма, крім останнього */
.stats-row:not(:last-child) {
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.25);
}

/* цифра */
.stats-row .stats-number {
    min-width: 140px;
    text-align: center;
    font-weight: 700;
    line-height: 1;
	font-size: 3.85em;
	padding-right:6px;
}

.stats-label {
    
	font-size: 1.35em;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    line-height: 1.35;
    max-width: 97%;
	margin-top:-4%;
}

/**/

.home-products-section {
    width: 95%;
    margin: 5em auto 0em;
}

.home-products-section .views-row {
    width: 47.45%;
    margin-bottom: 3.75em;
    box-sizing: border-box;
}

.home-products-section .row-title {
    font-size: 1.25em;
	line-height:1.1;
    font-weight: 500;
    margin: 16px 0px 0px;
}

/**/

.guarantee-section {
    width: 100%;
    margin: 3em auto 3em;
    flex-direction: column;
}

.guarantee-text {
    width: 100%;
    padding: 2.5em 15px 3.5em;
}

.guarantee-text h2 {
    font-size: 3.2em;
    font-weight: 700;
    margin: 7px 0 12px;
    line-height: 1.07;
}

.guarantee-text p {
    font-size: 1.4em;
    line-height: 1.45;
    max-width: 99%;
    color: #2A2A2A;
    font-weight: 500;
    margin-bottom: 0px;
}

/**/

.consultation-section {
    width: 94%;
    margin: 7em auto 2em;
}

.consultation-text h2 {
    font-size: 3.2em;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 15px;
}

.consultation-text p {
    font-size: 1.34em;
    line-height: 1.35;
    max-width: 100%;
    color: #2A2A2A;
    font-weight: 400;
    margin-bottom: 2px;
}

/**/

.form-item-name {
    margin-right: 0%;
}

.form-item-name, .form-item-phone {
    width: 100%;
	margin-bottom:15px;
    display: inline-block!important;
}

.form-item-name, .form-item-phone {
    width: 100%;
    display: inline-block!important;
}

.form-item-name input, .form-item-phone input {
    width: 93%;
    padding: 17px 18px 18.5px;
    border: 1.35px solid #ccc;
    font-size: 1.31em;
}

.form-item-messeage textarea {
    width: 93%;
    padding: 18px;
    max-width: 94%;
    height: 100px;
    min-height: 100px;
    max-height: 140px;
    font-size: 1.31em;
    border: 1.35px solid #ccc;
    resize: vertical;
    margin-top: 5px;
    font-family: "Oswald", sans-serif;
}

#edit-actions-submit {
    width: 100%;
    background: #CEE7FF;
    color: #000;
    font-weight: 500;
    font-size: 1.3em;
    padding: 21px 0;
    border: none;
    cursor: pointer;
    margin-top: 2.5%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Oswald", sans-serif;
    transition: background-color 0.3s ease;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.15);
}

/**/

.footer-rows-section {
        display: flex;
        flex-wrap: wrap;
        gap: 35px;
        width: 92%;
        margin: 0 auto;
		text-align:left;
		justify-content: flex-start;
}

.footer-row {
    margin: 0;
}

/* 1-й блок — на всю ширину */
.footer-row:nth-child(1) {
    width: 100%;
}

.footer-row:nth-child(2),
.footer-row:nth-child(3) {
    width: 42%;
	margin-top:3.65%!important;
}

.footer-row:nth-child(2) {
	grid-area: col2;
    margin: 0 0%;
}

.footer-row h4 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
}

.footer-row a {
    color: #fff;
    text-decoration: none;
    font-size: 1.29em;
    display: inline-block;
    outline: none;
    font-weight: 500;
}

.copy p{
	margin-bottom:.35em;
}

/**/



.product-body {
    position: relative;
    display: block;
    width: 100%;
    margin: 0px auto;
	overflow-x:hidden;
}

.product-body .breadcrumb-block {
	position: relative;
	display: block;
	width:97%;
	margin:1.45em 0 0em;
	padding: 20px 0 27px 3%;
	1background:#CEE7FF;
	background:rgba(206, 231, 255,.38);
	-webkit-transition: all .54s ease;
	-moz-transition: all .54 ease;2
	-ms-transition: all .54s ease;
	-o-transition: all .54s ease;
	transition: all .54s ease;
}

.product-body .breadcrumb-block a {
	line-height:1;
	padding:0;margin:0;
	font-size:1.17em;
}

.product-body .breadcrumb-block a:after {
	bottom:-7px;
	font-size:1.21em;
	margin: 0 5px 0 8px;
}

.product-body .breadcrumb-block a:last-child:after{display:none}

/**/

.product-body h1{
	font-size: 2.14em;
    font-weight: 500;
    margin: 1.1em auto 1.4em;
    line-height: 1.2;
	display:block;
	width:95%;
}

.product-images {
    width: 90%;
    margin: 3% auto 5.5%;
}

.product-images .lightgallery-wrapper ul.lightgallery li:not(:first-child) img {
    width: auto;
    height: 109px;
}

.buy-btn-fixed {
    padding: 22px 0 23.5px;
	width:90%;
    font-weight: 500;
    font-size: 22px!important;
    letter-spacing: .7px;
    bottom: 9.5%;
	left: 50%;
	-webkit-animation: pulse 4.15s infinite;
}

.product-info {
    position: relative;
    display: block;
    width: 96%;
    vertical-align: top;
    padding: 0px 0%;
    margin: 1% auto;
}

.buy-btn{
    background-color: #F39200;
	color: #ffff!important;
	padding: 24px 0px 25.5px;
	border: none;
	box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 22px!important;
	text-align:center;
	cursor: pointer;
	width:100%;
	transition: background-color 0.3s ease;
	margin:1.7em 0 2.1em;
	line-height:1;
	letter-spacing:.4px;
	text-decoration: none;
	display: block;
}

.buy-btn:hover {
	background-color: #8BB7F0;
	color:#2A2A2A!important;
}


.price-text p {
    font-size: 1.45em;
    margin: 10px 0 15px;
    padding-bottom: 0;
}

.technical-section span.technical-title {
    font-size: 24.5px!important;
    margin: 1.15em 0 .85em;
    padding: 24px 0 26px 22px;
}

.technical-section span.technical-title::before {
    top: 50%;
    width: 41px;
    height: 41px;
}

.technical-body ul li {
    font-size: 1.31em;
    margin-bottom: 7px;
}

.technical-section p {
    font-size: 1.32em;
    margin: 10px 0 15px;
    padding-bottom: 0;
    position: relative;
    display: block;
}

.instruction-section a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 22px 30px 22px 72px;
    font-weight: 500;
    font-size: 1.2em;
    text-transform: uppercase;
    color: #fff;
    background: #2A2A2A;
    text-decoration: none;
    line-height: 1.2;
    max-width: 350px;
    transition: all 0.3s ease;
    box-shadow: 0 0 3px rgba(0,0,0,.15);
}

.details-section {
    position: relative;
    display: block;
    padding: 4.5% 3%;
    width: 89%;
    margin: 5% auto 0;
    background: #f0f8ff;
}

.details-section p {
    font-size: 1.31em;
    font-weight: 300;
    line-height: 1.45;
    color: #222;
    max-width: 98%;
    margin: 0 0 20px 0px;
}

.details-section li{
	font-size: 1.28em;
}

/**/

.product-youtube {
    width: 96%;
    margin: 3em auto 2.5em;
}

.product-youtube h2 {
    font-size: 2.3em;
    font-weight: 600;
    margin: 0px 0 15px;
    padding: 0 0 15px;
    text-align: left;
    line-height: 1.2;
    border-bottom: 3.3px solid #CEE7FF;
}

.product-youtube .product-video-field {
    width: 100%;
    height: auto;
}

/**/

.related-products-section {
    width: 96%;
    margin: 7em auto 1.5em;
}

.related-products-section h3 {
    font-size: 2.6em;
    font-weight: 700;
    margin: 0px 0 45px;
    padding: 0 0 15px;
    line-height: 1.2;
    border-bottom: 3.3px solid #CEE7FF;
}

#block-vologomir-views-block-related-products-block-1 .views-row {
    width: 47.25%;
    margin-bottom: 4.5em;
    margin-right: 3%;
    box-sizing: border-box;
}

#block-vologomir-views-block-related-products-block-1 .views-row:nth-child(2n+2){
	margin-right:0!important;
}

#block-vologomir-views-block-related-products-block-1 .views-field-field-dovhyy-zaholovok a {
    font-size: 1.2em;
    margin: 20px 0 0;
}

/**/

.sale-block span {
    font-size: 2.87em;
}

.sale-block a {
    background-color: #2A2A2A;
    color: #fff;
    padding: 26px 0 27.5px;
    border: none;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
    font-weight: 500;
    font-size: 1.15em;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: .4px;
    text-decoration: none;
    display: block;
	width:92%;
	margin:0 auto;
}

/**/

.single-page-body p {
    font-size: 1.31em;
    font-weight: 400;
    line-height: 1.45;
    color: rgb(34, 34, 34);
    max-width: 100%;
    margin: 0px 0px 20px;
}
.single-page-body li{
    font-size: 1.24em;
}

/**/

.facets-mobile-section {
    position: fixed;
    top: 0;
    left: -85%; /* сховано за лівим краєм */
    width: 85%;
    height: 100%;
    background: #fff;
    z-index: 1002;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
}

.facets-mobile-section.active {
    left: 0;
}

.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(2px);
    z-index: 900;
    display: none;
}

.filter-overlay.active {
    display: block;
}

.filter-toggle {
    display: block;
    position: relative;
    padding: 19px 0px;
    background: #CEE7FF;
    color: #000;
	z-index:10;
    text-decoration: none;
    border-radius: 2px;
    font-weight: bold;
    width: 95%;
	font-family: "Oswald", sans-serif;
	font-size: 21px!important;
    text-align: center;
	text-transform:uppercase;
    margin: 35px auto; 
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}


/**/

.products-section {
    position: relative;
    display: flex;
    justify-content: space-between; /* Рівномірний простір між елементами */
    width: 95%;
    margin: 1em auto;
    text-align: left; /* Вирівнювання тексту по лівому краю */
}

.facets-section{display:none}

.facets-mobile-section.active .facets-section{
	display:block;
	width:93%;
}

.facets-section .facet-item {
    display: flex;
    align-items: flex-start;
}

/* чекбокс */
.facets-section .facet-item > input[type="checkbox"] {
    flex-shrink: 0;
    margin-right: 10.5px;
    margin-top: 5px;
	width: 1.49rem;
    height: 1.49rem;
}

/* label з текстом */
.facets-section .facet-item > label {
    display: block;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
	font-size: 1.35em;
	top:-7px;
}

.facets-section h3 {
    color: rgb(0, 0, 0);
    font-size: 1.45em;
    font-weight: 500;
    box-shadow: rgb(222, 222, 222) 0px 0px 2px;
    padding: 15px 5px 15px 20px;
    background: rgba(206, 231, 255, 0.38);
    margin: 0px 0px 26px;
}

/**/

.popup h3 {
    font-size: 2.05em;
    font-weight: 700;
    margin: 0px 0 20px;
    padding: 18px 0 23px;
    line-height: 1.2;
    text-align: center;
    background: #F9F9F9;
}

#block-vologomir-vebforma-2 .form-item input {
    width: 100%;
    padding: 15.5px 18px 17.5px;
    border: 1px solid #ccc;
    font-size: 1.2em;
    border-radius: 2px;
    outline: none;
    font-family: "Oswald", sans-serif;
    box-sizing: border-box;
}

#block-vologomir-vebforma-2 textarea {
    width: 100%;
    padding: 18px;
    height: 100px;
    min-height: 100px;
    max-height: 140px;
    font-size: 1.2em;
    border: 1px solid #ccc;
    resize: vertical;
    font-family: "Oswald", sans-serif;
    box-sizing: border-box;
}

#block-vologomir-vebforma-2 #edit-actions-submit {
    width: 100%;
    background: #CEE7FF;
    color: #000;
    font-weight: 500;
    font-size: 1.25em;
    padding: 18px 0;
    border: none;
    cursor: pointer;
    margin-top: 2.5%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Oswald", sans-serif;
    transition: background-color 0.3s ease;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.15);
}

}
