/* ========== GENERAL.CSS ========== */

html {
	font-size: var(--font-size);
	background-color: #f5f5f5;
}

body {
	position: relative;
	width: 100%;
	min-height: 100vh;
	min-width: 370px;
	margin: 0;
	overflow-x: hidden;
	color: var(--clr-text);
	font-size: 16px;
	line-height: 1.3;
	font-family: var(--font);

}

::selection {
	color: #fff;
	background-color: var(--clr-accent);
}

:focus {
	outline: none !important;
}

input,
textarea,
button,
select,
a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none !important;
	font-size: 1em;
	font-family: inherit;
	background: none;
	box-shadow: none;
}

input,
button,
select {
	line-height: 1;
}

input[type=number] {
	-moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

*[class$=__media] {
	flex-shrink: 0;
}

button {
	cursor: pointer;
}

* {
	-webkit-tap-highlight-color: transparent !important;
}

textarea {
	overflow: auto;
	resize: none;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
form {
	display: block;
}

main {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* gap: var(--main-content-gap); */
}

* {
	box-sizing: border-box;
}

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

.hero_block_content strong {
	font-family: var(--font_accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0;
	font-family: var(--font_accent);
	line-height: 0.97;
}

h1,
.h1,
.text-content h1 {
	font-size: clamp(1.75rem, 1.3rem + 2.25vw, 4rem);
	line-height: 0.95;
}

h2,
.h2,
.text-content h2 {
	font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
	letter-spacing: -2px;
}

h3,
.h3,
.text-content h3 {
	font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.85rem);
}

h4,
.h4,
.text-content h4 {
	font-size: clamp(1.125rem, 1.05rem + 0.38vw, 1.5rem);
}

.container {
	/* max-width: var(--container); */
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding: 0 clamp(0.938rem, -0.375rem + 6.56vw, 7.5rem);
}


section {
	padding-top: var(--block-vertical-padding);
	padding-bottom: var(--block-vertical-padding);
}

.section_p {
	padding-top: var(--block-vertical-padding);
	padding-bottom: var(--block-vertical-padding);
}

.section_pt {
	padding-top: var(--block-vertical-padding);
	padding-bottom: 0;
}

.section_pb {
	padding-bottom: var(--block-vertical-padding);
	padding-top: 0;
}

.section_pt_0 {
	padding-top: 0;
	padding-bottom: 0;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mt0 {
	margin-top: 0 !important;
}

.pt100 {
	padding-bottom: clamp(1.875rem, 1.75rem + 3.3vw, 6.25rem) !important;
}

.pb100 {
	padding-top: clamp(1.875rem, 1.75rem + 3.3vw, 6.25rem) !important;
}

.pb40 {
	padding-bottom: clamp(1.875rem, 1.75rem + 0.63vw, 2.5rem) !important;
}

.fsz24 {
	font-size: clamp(1.125rem, 1.05rem + 0.38vw, 1.5rem);
	letter-spacing: -1px;
}

.pb30 {
	padding-bottom: 30px !important;
}

.pb24 {
	padding-bottom: 24px !important;
}

.title_bb {
	border-bottom: 1px solid #E7E7E7;
}

.pt84 {
	padding-top: clamp(1.875rem, 1.2rem + 3.38vw, 5.25rem);
}

p {
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1.1;
}

b,
strong {
	font-weight: bold;
}

img,
video {
	height: auto;
	border-style: none;
	vertical-align: middle;
	object-fit: cover;
	object-position: center;
}

img {
	max-width: 100%;
}

img.contain,
video.contain {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
}

a[href^="tel:"] {
	white-space: nowrap;
}

a:not([href]) {
	cursor: default;
}

a {
	color: var(--clr-text);
	text-decoration: none;
	transition: .5s all;
}

a:hover {
	color: var(--clr-accent) !important;
	transition: .5s all;
}

svg,
path {
	/* transition: .5s all; */
}

ul,
ol,
dl {
	margin: 0;
	padding: 0;
	list-style-type: none;
}


table {
	border-collapse: collapse;
}

label {
	display: block;
	margin-bottom: 0;
}

.no-scroll {
	overflow: hidden;
}

.hidden {
	display: none;
}

.img {
	display: block;
	position: relative;
	flex-shrink: 0;
	overflow: hidden;
}

.img img,
.img svg,
.img video {
	display: block;
	z-index: 0;
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	transition: opacity 0.3s;
}

.img_contain img,
.img_contain svg,
.img_contain video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.img_height img,
.img_height svg {
	width: auto;
	height: 100%;
}

.img_over img.under,
.img_over svg.under,
.img_over video.under {
	opacity: 0;
	z-index: 1;
	position: absolute;
	inset: 0;
}

.img_over img.over,
.img_over img.under,
.img_over svg.over,
.img_over svg.under,
.img_over video.over,
.img_over video.under {
	transition: opacity 0.3s;
}

.img_over:hover img.over,
.img_over:hover svg.over,
.img_over:hover video.over {
	opacity: 0;
}

.img_over:hover img.under,
.img_over:hover svg.under,
.img_over:hover video.under {
	opacity: 1;
}

.img_absolute {
	position: absolute;
	inset: 0;
}

.img_absolute img,
.img_absolute svg,
.img_absolute video {
	width: 100%;
	height: 100%;
	inset: 0;
}

.is-block {
	display: block;
}

.flex {
	display: flex;
}

.flex-center {
	justify-content: center;
}

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

.flex-align_center {
	align-items: center;
}

.bold {
	font-weight: 700;
}

.wrapper {
	/* background: var(--clr-wrapper); */
	background: url(../img/decor-color.webp), linear-gradient(94deg, #FFF1F1 -11.36%, #BFCBF9 95.63%), #F3F3F3;
	/* background-image: url(../img/decor-color.png); */
	background-repeat: no-repeat;
	background-size: auto;
	background-position: right top;
}

.items,
.row {
	display: flex;
	flex-wrap: wrap;
	margin: calc(0px - var(--gap));
}

.item,
.col {
	padding: var(--gap);
}

.inner {
	display: block;
	height: 100%;
}

.v992,
.v768,
.v576,
.v320 {
	display: none !important;
}

#jGrowl {
	display: none !important;
}

.hscroll {
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}

.hscroll::-webkit-scrollbar {
	display: none;
}

.clear {
	clear: both;
}

.scroll {
	overflow-y: auto;
}

.scroll::-webkit-scrollbar,
textarea::-webkit-scrollbar {
	width: 6px;
}

.scroll::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track {
	border-radius: var(--border-radius-div);
	background-color: #cccccc;
}

.scroll::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
	border-radius: var(--border-radius-div);
	background-color: var(--clr-accent);
}

.scroll::-webkit-scrollbar-thumb:hover,
textarea::-webkit-scrollbar-thumb:hover {
	background-color: var(--clr-accent-hover);
}

ymaps ymaps[class$=map-copyrights-promo] {
	display: none !important;
}

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

/* ========== GLOBAL.CSS ========== */

.text-content {
	max-width: 100%;
	/* overflow: hidden; */
	line-height: 1.35;
}

.text-content>*:first-child {
	margin-top: 0;
}

.text-content>*:last-child {
	margin-bottom: 0;
}

.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
	margin-bottom: 20px;
	font-weight: 600;
	line-height: 1.3;
}

.text-content h2,
.text-content h3,
.text-content h4 {
	margin-top: 1em;
}

.text-content h2:not(:first-child),
.text-content h3:not(:first-child),
.text-content h4:not(:first-child) {
	margin-top: 1em;
}

.text-content hr {
	display: block;
	height: 2px;
	margin: 1.5rem 0;
	border: none;
	background: var(--clr-gray);
}

.hero_block_content .text-content h1,
.text-content p,
.text-content>ul,
.text-content>ol,
.text-content q,
.text-content blockquote,
.text-content table,
.text-content img,
.text-content iframe {
	margin-bottom: 10px;
}

.hero_block_content .text-content h1 {
	font-size: 1em;
	font-weight: 400;
}

.text-content.about p {
	font-size: clamp(1rem, 0.75rem + 0.63vw, 1.5rem);
}

.blue {
	color: var(--clr-primary);
}

.text-content p img,
.text-content p iframe {
	margin-bottom: 0 !important;
}

.text-content ol,
.text-content ul {
	margin-left: 1.5rem;
}

.text-content ul ul,
.text-content ul ol,
.text-content ol ul,
.text-content ol ol {
	margin-top: 0.8em;
}

.text-content ul {
	list-style: disc;
}

.text-content ul ul {
	list-style-type: circle;
}

.text-content ol {
	list-style-type: decimal;
}

.text-content li {
	/* margin-bottom: 0.8em; */
}

.text-content li::marker {
	color: var(--clr-accent);
}

.text-content li+li {
	margin-top: 0.2em;
}

.text-content blockquote {
	position: relative;
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
	padding: clamp(0.625rem, 0.563rem + 0.31vw, 0.938rem);
	padding-right: 0;
	border-left: solid 3px var(--clr-primary);
}

.text-content blockquote>*:last-child {
	margin-bottom: 0 !important;
}

.text-content table {
	width: 100% !important;
	border-radius: var(--border-radius);
	overflow: hidden;
	border-spacing: 0;
	border-collapse: collapse;
	min-width: 450px;
}

.text-content table.price td:last-child {
	white-space: nowrap;
}

.text-content td,
.text-content th {
	width: auto !important;
	height: auto !important;
	padding: 0.8em 1.2em;
	border: 0 !important;
	vertical-align: top;
	border-left: 1px solid rgba(232, 232, 232, 0.3) !important;
}

.text-content td:first-child,
.text-content th:first-child {
	border-left: none !important;
}

.text-content th {
	color: #fff;
	font-weight: 600;
	background: var(--clr-primary);
}

.text-content tr {
	height: auto !important;
	transition: background-color 0.3s;
	border-bottom: 1px solid rgba(232, 232, 232, 0.3) !important;
}

.text-content tr:last-child {
	border-bottom: none !important;
}

.text-content tr:nth-child(2n+1) {
	background: #fafafa;
}

.text-content tr:nth-child(2n+2):hover {
	background: #f7f7f7;
}

.text-content tr:nth-child(2n+3):hover {
	background: #f7f7f7;
}

.text-content img,
.text-content iframe {
	max-width: 100%;
}

.text-content .fl {
	float: left;
	margin-right: 2rem;
}

.text-content .fr {
	float: right;
	margin-left: 2rem;
}

.text-content a {
	color: var(--clr-primary);
	transition: all 0.3s;
}

.text-content a[href^="tel:"] {
	color: var(--clr-primary);
}

.text-content a[href^="mailto:"]:hover {
	text-decoration: underline;
}

.text-content a:hover,
.text-content a[href^="tel:"] {
	filter: brightness(var(--hover-brightness));
}

.text-content a:active {
	filter: brightness(var(--active-brightness));
}

.modal {
	display: none;
	width: 30rem;
	max-width: 98%;
	padding: 2rem;
	border-radius: var(--border-radius-div);
	cursor: default !important;
	background: #fff;
}

.form {
	position: relative;
}

.form.success .form__content {
	opacity: 0;
	visibility: hidden;
}

.form__content {
	position: relative;
	transition: opacity 0.3s;
}

.form__success {}

.success {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	align-items: center;
	height: 100%;
	grid-gap: 1.25em;
}

.success_horizontal {
	flex-direction: row;
	text-align: left;
}

.success_horizontal .checkmark {
	width: 5em;
	height: 5em;
}

.success__title {
	margin-bottom: 0.2em;
	font-weight: 700;
	font-size: 1.4em;
	font-family: var(--font_accent);
}

.success__description {
	font-size: 1em;
}

.checkmark {
	display: block;
	width: 6em;
	height: 6em;
	border-radius: 50%;
	animation: checkmark_fill 0.4s ease-in-out 0.4s forwards, checkmark_scale 0.3s ease-in-out 0.9s both;
	stroke-width: 3;
	stroke: #fff;
	stroke-miterlimit: 10;
}

.checkmark__circle {
	animation: checkmark_stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	stroke-width: 2;
	stroke-miterlimit: 10;
	stroke: var(--clr-primary);
	fill: none;
}

.checkmark__check {
	animation: checkmark_stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
	transform-origin: 50% 50%;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	stroke: var(--clr-primary);
}

.selector {
	display: block;
	position: relative;
	z-index: 1;
}

.selector select {
	display: none;
}

.selector_mobile select {
	display: block !important;
	opacity: 0 !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 1;
}

.selector_mobile .selector__list {
	display: none !important;
}

.selector.is-active .selector__list {
	opacity: 1;
	visibility: visible;
}

.selector__label {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 0;
	cursor: pointer;
}

.selector__title {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.selector__title.is-disabled {
	opacity: 0.7;
}

.selector__btn {
	display: flex;
	align-items: center;
	justify-content: center;
}

.selector__list {
	top: 100%;
	position: absolute;
	opacity: 0;
	visibility: hidden;
	z-index: 20;
}

.selector__option {
	cursor: pointer;
}

.selector__option.is-disabled {
	display: none;
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	line-height: 1;
	text-align: center;
	text-overflow: ellipsis;
	vertical-align: middle;
	white-space: nowrap;
	padding: clamp(1.125rem, 1.05rem + 0.38vw, 1.5rem) clamp(1.5rem, 1.175rem + 1.63vw, 3.125rem);
	cursor: pointer;
	border-radius: var(--btn-border-radius);
	transition: all .5s;
	font-weight: 600;
	-webkit-border-radius: var(--btn-border-radius);
	-moz-border-radius: var(--btn-border-radius);
	-ms-border-radius: var(--btn-border-radius);
	-o-border-radius: var(--btn-border-radius);
	gap: 10px;
}


.btn svg,
.btn rect,
.btn path,
.btn svg:hover,
.btn rect:hover,
.btn path:hover {
	transition: all .5s;
}

.btn-primary {
	background-color: var(--clr-accent);
	color: #fff;
	border-radius: var(--btn-border-radius);
	/* border: 1px solid var(--clr-accent); */
}

.btn-primary:hover {
	background-color: #13122C;
	color: #fff !important;
	/* border: 1px solid #13122C; */
}

.btn:hover {
	transition: all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
}

.btn-secondary {
	background-color: var(--clr-primary);
	color: #fff;
	border: 1px solid transparent;
}

.btn-secondary:hover {
	background-color: var(--clr-primary);
	color: #fff !important;
}

.btn-black {
	background-color: #13122C;
	color: #fff;
}


.btn>span {
	display: flex;
	z-index: 1;
	position: relative;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.btn_full {
	width: 100% !important;
}

.btn:disabled {
	opacity: 0.7;
	cursor: default;
}

.btn:hover {
	color: #fff !important;
}

form input,
form textarea {
	font-family: var(--font_accent);
}

.swiper-fade .swiper-slide {
	opacity: 0 !important;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
	opacity: 1 !important;
}

.btn-dark {
	border: 1px solid rgba(19, 18, 44, 0.10);
	background: #13122C;
	padding: 24px 24px 10px;
	white-space: pre-wrap;
}

.btn-dark img {
	margin-left: 0;
	opacity: 1;
	visibility: visible;
	margin-right: 10px;
	transform: translate(10px);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}


.btn-dark:hover {
	/* background-color: rgba(0, 109, 235, 1); */
	color: rgba(0, 109, 235, 1) !important;
}

.btn-dark:hover svg path {
	fill: rgba(0, 109, 235, 1);
}

.btn-small {
	max-width: 330px;
	border-radius: 10px;
	color: #fff;
	font-size: 16px;
	text-transform: none;
}

.btn svg {
	flex-shrink: 0;
}

.btn-sm {
	padding: 16px 16px;
}

.btn-trans {
	border: 1px solid var(--clr-primary);
	color: var(--clr-primary);
	gap: 6px;
}

.btn-trans:hover {
	background-color: var(--clr-primary);
}



.btn-trans:hover svg path {
	fill: #fff;
}
.sm-text {
    font-size: 0.875rem;
}

/* ========== LAYOUT.CSS ========== */

.away {
	padding: 20px 20px 35px;
	line-height: 160%;
	text-align: center;
	background: #fff;
}

.away-wrapper {
	margin: 50px auto;
}

.away__header {
	margin-bottom: 7px;
	font-weight: 700;
}

.away__browsers {
	padding: 20px 24px;
}

.away__browser {
	display: inline-block;
	margin: 0 10px;
	padding: 20px 20px 15px;
	border-radius: 4px;
	font-weight: 500;
	font-size: 14px;
	transition: background-color 0.3s;
}

.away__browser:hover {
	background: #fafafa;
}

.away__browser-ico {
	display: block;
	margin-bottom: 10px;
	width: 80px;
	height: 80px;
	background-image: url(../img/browsers.png);
}

.away__browser-ico.atom {
	background-position: 0 -400px;
}

.away__browser-ico.chrome {
	background-position: 0 -160px;
}

.away__browser-ico.firefox {
	background-position: 0 -80px;
}

.away__browser-ico.opera {
	background-position: 0 -240px;
}

.error-page {
	display: flex;
	z-index: 9999999999;
	position: relative;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	padding: 1rem;
	color: var(--clr-text);
	line-height: 1;
	text-align: center;
	background-color: #fff;
}

.error-page__title {
	margin-bottom: 1.8rem;
	color: var(--clr-accent);
	font-weight: bold;
	font-size: min(7.5em, 16vw);
}

.error-page__description {
	font-weight: 500;
	font-size: min(1.6em, 6vw);
}

.pageup {
	display: block;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	z-index: 90;
	position: fixed;
	right: 3vw;
	bottom: 3vw;
	width: 3rem;
	height: 3rem;
	border-radius: var(--btn-border-radius);
	cursor: pointer;
	background: var(--clr-accent);
	transition: opacity 0.3s, visibility 0.3s, bottom 0.3s;
}

.pageup:hover::after {
	opacity: 0.08;
}

.pageup:active::after {
	opacity: 0.1;
}

.pageup.is-active {
	opacity: 1;
	visibility: visible;
	bottom: 4.6vw;
}

.pageup::after {
	display: block;
	opacity: 0;
	z-index: 0;
	position: absolute;
	content: "";
	background: #000;
	transition: opacity 0.3s;
	inset: 0;
}

.first-screen_wrapper {
	background-repeat: no-repeat;
	background-size: cover;
}

#header {
	display: flex;
	flex-direction: column;
}

.header_bottom_container .logo img {
	max-width: clamp(11.563rem, 10.759rem + 2.23vw, 13.438rem);
	height: clamp(2.188rem, 1.925rem + 1.31vw, 3.5rem);
}

.header_nav .btn {
	padding: 19px clamp(1.25rem, -0.417rem + 2.22vw, 2.25rem);
	font-size: clamp(1rem, 0.583rem + 0.56vw, 1.25rem);
	display: flex;
	align-items: center;
	gap: 12px;
}

.header-top_nav {
	display: flex;
	/* align-items: center; */
	gap: clamp(1.875rem, 0.875rem + 2.08vw, 3.375rem);
}

.pageup:before {
	display: block;
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1em;
	height: 1em;
	margin-top: -0.3em;
	margin-left: -0.5em;
	border-top: solid 0.19em #fff;
	border-left: solid 0.19em #fff;
	content: "";
	transform: rotate(45deg);
	transform-origin: center;
}

.header_bottom {
	position: relative;
	z-index: 50;
}

.header.absolute {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}

.header.absolute a {
	/* color: var(--clr-wrapper); */
}

.header.absolute .burger-line {
	/* background: var(--clr-wrapper); */
}

.header_bottom-wrapper {
	padding: clamp(1.25rem, 1.036rem + 0.6vw, 1.75rem) 0;
}

.fixed-header .header_bottom-wrapper {
	padding: 0;
}

.fixed-header .header_nav-btns .btn {
	border-radius: 0;
}

.header_bottom_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 56px;
	gap: 54px;
	margin: clamp(0.938rem, -0.466rem + 2.26vw, 2.25rem) auto;
	margin-top: 0;
}

.fixed-header .header_bottom_container {
	margin-top: clamp(0.938rem, -0.466rem + 2.26vw, 2.25rem);
}

.header_bottom_container .logo {
	min-width: max-content;
}

.header_nav-btns,
.header_nav-btns .btn {
	height: 100%;
	display: flex;
	align-items: center;
}

.header_nav {
	position: relative;
	display: flex;
	align-items: center;
	height: 64px;
	justify-content: space-between;
	background-color: var(--clr-primary);
	width: 100%;
	/* max-width: 1680px; */
	padding: 0;
	border-radius: 5px;
}


.header-contacts_phone {
	display: flex;
	align-items: end;
	flex-direction: column;
	justify-content: space-between;
	gap: 3px;
}

.header-contacts_phone .header-tel {
	font-size: clamp(1.25rem, 0.634rem + 0.72vw, 1.5rem);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-contacts_phone .header-tel_wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-tel_wrapper:hover svg {
	animation: 1.2s ease-in-out 0s normal none infinite running trambling-animation;
}

@keyframes trambling-animation {

	0%,
	50%,
	100% {
		transform: rotate(0deg);
	}

	10%,
	30% {
		transform: rotate(-10deg);
	}

	20%,
	40% {
		transform: rotate(10deg);
	}
}

.header-contacts_phone .header-callbacK_btn {
	text-decoration: underline;
	font-size: 14px;
	font-weight: 300;
}

.nav__list {
	list-style-type: none;
	width: 100%;
	display: flex;
	align-items: center;
	font-weight: 600;
	gap: clamp(1.25rem, -4.914rem + 7.22vw, 3.75rem);
	padding-left: clamp(1.25rem, -4.914rem + 7.22vw, 3.75rem);
}

.nav__list>.nav__item>.nav__link {
	color: #fff;
	margin-top: 15px;
	padding-bottom: 15px;
	position: relative;
}

.nav__list>.nav__item>.nav__link:hover {
	color: #A6CCF6 !important;
}

.opros_list_btn,
.catalog_download {
	gap: 12px;
}

.header_nav-btns .catalog_download {
	background-color: transparent;
	border-left: 1px solid #fff;
	height: 26px !important;
	border-radius: 0;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}

.header_nav-btns .catalog_download:hover {
	background-color: transparent;
}

.nav__submenu_item {
	display: inline-block;
	position: relative;
	color: #fff;
	/* padding-bottom: 10px; */
}

.nav__link img {
	display: none;
}

.nav__submenu>.nav__item>.nav__link {
	display: block;
	width: 100%;
	position: relative;
}

.nav__submenu>.nav__item>.nav__link img {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	visibility: hidden;
	opacity: 0;
	display: block;
	margin-left: -25px;
	margin-right: 10px;
	transform: translateY(5px);
}

.nav__submenu>.nav__item>.nav__link:hover img {
	visibility: visible;
	opacity: 1;
	margin-left: 0;
	transform: translateY(0px);
}

.nav__list .nav__link {
	position: relative;
}


.nav__list>.nav__item>.nav__link,
.nav__submenu>.nav__item>.nav__link {
	font-size: clamp(1rem, 0.583rem + 0.56vw, 1.25rem);
	font-weight: 500;
	display: flex;
	align-items: center;
}

.nav__submenu>.nav__item>.nav__link:hover {
	color: var(--clr-primary) !important;
}

.nav__submenu {
	position: absolute;
	top: 50px;
	left: -42px;
	width: max-content;
	width: 400px;
	border-radius: 4px;
	z-index: 200;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	gap: 14px;
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
	transform: translateY(1em);
	z-index: 8;
	padding: 36px 42px;
	display: flex;
}


.nav__submenu .nav__item:last-child {
	border: none;
}

.nav__submenu_item:hover .nav__submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: all .3s;
	box-shadow: 0px 2px 0px 0px #00000012;
	z-index: 100;
}

.nav__submenu_item:hover .nav__submenu .nav__item {
	margin-bottom: 0;
	transition: all .3s;
}

.header-arrow {
	margin-left: 6px;

}

.header-arrow path {
	transition: .3s stroke;
}


.callback-search {
	width: 257px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.search_form_btn {
	width: 100%;
	border-radius: 5px;
	background: #F9F9F9;
	display: flex;
	height: 100%;
	max-width: 890px;
}

.main_search .btn {
	border: 1px solid transparent;
}

.main_search input::placeholder {
	color: #C2C2C2;
}

.main_search input:focus {
	border: none !important;
}

.main_search {
	display: flex;
	align-items: center;
	gap: 5px;
	justify-content: space-between;
	width: 100%;
	flex-direction: row-reverse;
	padding-left: 24px;
}

.main_search input {
	padding-left: 0;
	font-size: 14px;
	width: 100%;
	height: 100%;
	padding-right: 24px;
}

.header_nav_mobile .main_search input {
	border-radius: 0px;
	margin-right: 0;
	font-size: 17px;
	padding: 10px;
	width: 100%;
	padding-left: 0;
}

.header_nav_mobile .main_search {
	padding-left: 0;
}

.hidden_phones {
	visibility: hidden;
	display: flex;
	flex-direction: column;
	opacity: 0;
	display: flex;
	z-index: 15;
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
	position: absolute;
	transform: translateY(1em);
	padding-top: 10px;
}

.hidden_phones a {
	background-color: #fff;
	padding: 10px;
}


.hidden_phones a:first-child {
	position: relative;
	border-radius: 5px 5px 0px 0px;
	padding-bottom: 5px;
}

.hidden_phones a:last-child {
	border-radius: 0px 0px 5px 5px;
	padding-top: 5px;
}

.hidden_phones a:first-child::before {
	content: "";
	display: block;
	position: absolute;
	width: 0.5em;
	height: 0.5em;
	background: #fff;
	transform-origin: bottom left;
	transform: rotate(45deg);
	bottom: 100%;
	left: 1em;
}

.header-location br {
	display: none;
}



.callback_box .input-box {
	/* display: none; */
}

.btn_search {
	height: 25px;
}

.btn_search:hover svg,
.btn_search:hover rect,
.btn_search:hover path {
	transition: all .3s;
}

.btn_search:hover svg path {
	fill: var(--clr-primary);
}


.header-top {
	height: 42px;
	background-color: var(--clr-primary);
	display: flex;
	align-items: center;
}

.fixed-header_wrapper {
	background: var(--clr-primary);
}

.fixed-header_nav {
	display: flex;
	align-items: center;
	gap: 24px;
}

.fixed-header_nav_btns {
	display: flex;
	align-items: center;
	gap: 12px;
}

.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: var(--clr-primary);
	z-index: 97;
	transition: transform 0.5s, box-shadow 0.5s;
	transform: translateY(-150%);
	margin: 0 auto;
}

.fixed-header .nav__list {
	padding: 0;
}

.fixed-header.is-active {
	transform: translateY(0);
	backdrop-filter: blur(35px);
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.burger {
	position: relative;
	display: none;
	cursor: pointer;
	user-select: none;
	min-width: 30px;
	height: 20px;
	opacity: 0;
	visibility: hidden;
	background: transparent;
	z-index: 9999;
}

.burger-line {
	position: absolute;
	display: block;
	right: 0;
	width: 100%;
	height: 2px;
	opacity: 1;
	border: none;
	outline: none;
	border-radius: 1rem;
	background: #000;
	transition: 0.5s ease-in-out;
}

.burger-line:nth-child(1) {
	top: 0px;
}

.burger-line:nth-child(2) {
	top: 0.5em;
}

.burger-line:nth-child(3) {
	top: 1em;
}

.mobile_menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	width: 100%;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transition: all 0.35s ease-in-out;
	background-color: rgba(0, 0, 0, 0.65);
}

/* MOBILE DROPDOWN */
.nav__submenu_mobile {
	display: none;
}

/* MOBILE DROPDOWN */

.header_nav_mobile-logo {
	max-width: 180px;
}


.callback_modal,
.quiz-modal {
	max-width: 470px;
	width: 95%;
	background-color: #fff;
	padding: 34px 26px clamp(2.125rem, 1.988rem + 0.69vw, 2.813rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: var(--border-radius);
	background-color: var(--clr-wrapper);
	display: none;
}

.quiz_form_tabs .tab {
	display: flex;
	flex-direction: column;
	gap: 15px;
	visibility: hidden;
	position: absolute;
}

.quiz_form_tabs .tab.active {
	visibility: visible;
	position: relative;
}

.quiz_form_label {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-bottom: 10px;
}

.quiz_form_label .err,
.quiz_form_label .placeholder {
	position: absolute;
	font-size: 14px;
	bottom: -9px;
}

.quiz_form_label .err {
	color: var(--clr-accent);
	display: none;
}

.quiz_form_label .err.show {
	display: inline;
}

.quiz_form_label .err.show+.placeholder {
	display: none;
}

.callback_modal_form_inputs input {
	padding: 20px 35px 20px 35px;
	background-color: #fff;
	border-radius: var(--btn-border-radius);
	font-weight: 700;
	line-height: 110%;
	border: 1px solid var(--clr-primary);
	width: 100%;
}

.hint-input {
	position: relative;
}

.hint {
	position: fixed;
	opacity: 0;
	visibility: hidden;
	padding: 20px;
	border-radius: 5px;
	background: #F6F6F6;
	font-size: 14px;
	box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
	transform: translate(-50%, -110%);
	z-index: 100;
	pointer-events: none;

}

.hint::after {
	content: "";
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	background: #f6f6f6;
	top: 100%;
	left: 50%;
	transform: rotate(45deg) translate(-50%, -50%);
}

.hint.show {
	visibility: visible;
	opacity: 1;
	transition: opacity .7s;
	transition-delay: 0.5s;
}

.quiz_buttons {
	display: flex;
	gap: var(--gap);
	margin-top: 10px;
}

.quiz_buttons .btn {
	flex-grow: 1;
}

.callback_modal_title {
	font-size: 1.5em;
	font-weight: 700;
	line-height: 110%;
	padding-bottom: 1em;
}

.callback_modal_subtitle {
	text-align: center;
	padding-bottom: clamp(1.25rem, 1.05rem + 1vw, 2.25rem);
}

.callback_modal_form {
	width: 100%;
	max-width: 345px;
}

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

}

.callback_modal_form_inputs input {
	padding: 20px 35px 20px 35px;
	background-color: #fff;
	border-radius: var(--btn-border-radius);
	font-weight: 700;
	line-height: 110%;
	border: 1px solid var(--clr-primary);
	width: 100%;
}

.feedback_form_content input {
	border: 1px solid transparent;
}

.feedback_form_content input::placeholder {
	font-weight: 400;
}

.callback_modal button {
	width: 100% !important;
}



.fancybox__content>.carousel__button.is-close svg {
	filter: none;
}

.carousel__button.is-close {
	justify-content: end;
}

.policy_text a {
	text-decoration: underline;
}

#footer {
	background-color: var(--footer-color);
	border-radius: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	color: #fff;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.footer_item {
	flex: 1 1 250px;
}

.footer_item.logo {
	display: flex;
	flex-direction: column;
	height: auto;
	gap: 12px;
	justify-content: space-between;
}

.footer_btns {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer_btns .btn {
	background: rgba(255, 255, 255, 0.10);
}

#footer hr {
	opacity: 0.5;
}

.footer ul a {
	color: #A6CCF6;
}

.footer a {
	font-weight: 600;
	color: #fff;
}

.footer a:hover {
	color: #fff !important;
	opacity: 1;
}

/* .footer ul:hover a:not(:hover) {
  opacity:.5;
} 
 */
.footer_container {
	padding-top: var(--block-vertical-padding);
	padding-bottom: var(--block-vertical-padding);
}

.footer_content .logo img {
	max-width: clamp(11.563rem, 10.625rem + 4.69vw, 16.25rem);
}

.footer_content {
	color: #fff;
	display: flex;
	/* flex-wrap: wrap; */
	gap: 50px;
	justify-content: space-between;
}

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

.footer_about_site a {
	opacity: 0.5;
}

.footer_about_site a:hover {
	color: #fff !important;
	opacity: 1;
}

.footer-list>*:first-child {
	font-weight: bold;
	padding-bottom: 30px;
}

.footer_contacts {
	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: space-between;
	align-items: flex-end;
}

.footer_contacts>*:first-child {
	padding: 0;
}

.footer_nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer_nav a {
	text-decoration: underline;
}

.footer_nav a:hover {
	text-decoration: none;
}

.footer-list ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer_container.copyright {
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
}

.footer_container.copyright a:hover svg {
	filter: drop-shadow(0px 0px 5px var(--clr-accent));
}


.footer_container.copyright svg {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.footer_container.copyright a:hover {
	color: #fff !important;
}

.footer-uptop {
	border: 1px solid #fff;
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font_accent);
	background-color: transparent;
	padding-right: 10px;
	padding-left: 40px;
	height: 60px;
}

.footer-uptop:hover {
	color: #fff;
	border: 1px solid #fff;
}

.footer-uptop svg {
	rotate: 180deg;
}


.breadcrumbs svg {
	height: 7px;
	opacity: 0.5;
}

.breadcrumbs {
	padding-top: clamp(0rem, -4.583rem + 6.11vw, 2.75rem);
	padding-bottom: clamp(0.625rem, -0.208rem + 1.11vw, 1.125rem);
}

.breadcrumbs a {
	opacity: 0.7;
	color: var(--clr-primary);
	font-weight: 300;
}

.breadcrumb-item.active {
	font-weight: 300;
	opacity: 1;
}

.breadcrumbs_list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(0.375rem, 0.3rem + 0.38vw, 0.75rem);
	font-size: clamp(0.75rem, 0.725rem + 0.13vw, 0.875rem);
}

.footer-uptop:hover svg {
	transform: translate(0px, 3px);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.footer-uptop svg {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}


.header_nav_mobile .opros_list_btn,
.header_nav_mobile .catalog_download {
	background-color: var(--clr-primary);
}

/* ========== VARIATIONS.CSS ========== */


/* FORM WRAPPER   */

.feedback_form_container.feedback_form_wrapper-row {
    flex-direction: row;
    align-items: start;
    gap: 30px;
}

.feedback_form_container.feedback_form_wrapper-row .feedback_form_text {
    text-align: left;
    width: 100%;
}

.feedback_form_container.feedback_form_wrapper-row .feedback_form {
    padding: 0;
}

.feedback_form_container.feedback_form_wrapper-row .feedback_form,
.feedback_form_container.feedback_form_wrapper-row .feedback_form_content {
    flex-direction: column;
}


.feedback_form_container.feedback_form_wrapper-row .feedback_form input {
    width: 100%;
    background-color: unset;
    border-radius: 0;
    padding-left: 5px;
    border-bottom: 2px solid #68686870;
}

.feedback_form_container.feedback_form_wrapper-row .feedback_form input:focus {
    border-bottom: 2px solid #686868b8;
}

.feedback_form_container.feedback_form_wrapper-row .feedback_form_content .feedback_form_text br,
.feedback_form_container.feedback_form_wrapper-row .feedback_form_text-intro {
    display: none;
}

.feedback_form_container.feedback_form_wrapper-row .btn {
    margin-top: 15px;
}

.feedback_form_container.feedback_form_wrapper-row .form_messangers {
    text-align: left;
    align-items: start;
}

.feedback_form_container.feedback_form_wrapper-row .hide-police_p {
    display: block !important;
}

.feedback_form_container.feedback_form_wrapper-row {
    background-position: left 10% bottom -10%;
    background-image: url('/img/phone.png') !important;
    background-size: auto;
}

 .feedback_form_text .form_messangers {
    display: none;
}

.feedback_form_wrapper-row-join .feedback_form_text .form_messangers {
    display: flex;
}

.feedback_form_wrapper-row-join .form_mess-wrapper .form_messangers {
    display: none;
}

.feedback_form_container.feedback_form_wrapper-row .feedback_form input {
    width: 100%;
    background-color: unset;
    border-radius: 0;
    padding: 10px 30px;
    padding-left: 0px;
    border-bottom: 2px solid #68686847;
}

/* ===== PRODUCT PAGE ===== */
.product-hero { padding-top: 0; padding-bottom: var(--block-vertical-padding); }
.product-hero_wrapper {
  display: flex;
  gap: clamp(1.5rem, 0.5rem + 5vw, 4rem);
  align-items: flex-start;
}

/* Gallery */
.product-gallery {
  width: 50%;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}
.product-gallery_main {
  background: #fff;
  border: 1px solid #E7E7E7;
  border-radius: var(--border-radius);
  padding: clamp(1rem, 0.5rem + 2.5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(20rem, 15rem + 25vw, 35rem);
  margin-bottom: var(--gap);
  position: relative;
  overflow: hidden;
}
.product-gallery_main img {
  max-height: 100%; max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.product-gallery_main:hover img { transform: scale(1.03); }
.badge-stock {
  position: absolute;
  top: 20px; left: 20px;
  background: #22C55E;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}
.product-gallery_thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 5px;
}
.product-gallery_thumbs::-webkit-scrollbar { height: 4px; }
.product-gallery_thumbs::-webkit-scrollbar-track { background: #E7E7E7; border-radius: 2px; }
.product-gallery_thumbs::-webkit-scrollbar-thumb { background: var(--clr-primary); border-radius: 2px; }
.gallery-thumb {
  flex-shrink: 0;
  width: 90px; height: 90px;
  border: 2px solid #E7E7E7;
  border-radius: calc(var(--border-radius) / 2);
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center; justify-content: center;
  background: #fff;
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--clr-primary); }
.gallery-thumb img { max-height: 100%; max-width: 100%; object-fit: contain; }

/* Product Info */
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
}
.product-info_header { display: flex; flex-direction: column; gap: 12px; }
.product-sku { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.product-sku span { font-size: 0.875rem; color: #666; }
.sku-value {
  font-family: var(--font_accent);
  font-weight: 600;
  color: var(--clr-text);
  background: #F3F3F3;
  padding: 4px 10px;
  border-radius: 4px;
}
.stock-badge { color: #22C55E; font-size: 0.875rem; font-weight: 500; }
.product-title {
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--clr-text);
}
.product-subtitle {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  color: #555;
  line-height: 1.4;
}

/* Price Block */
.product-price_block {
  background: linear-gradient(135deg, #F8F9FF 0%, #F3F3F3 100%);
  border: 1px solid #E7E7E7;
  border-radius: var(--border-radius);
  padding: clamp(1.25rem, 1rem + 1.25vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-price_row { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.product-price_current {
  font-size: clamp(1.75rem, 1.4rem + 1.75vw, 3rem);
  font-weight: 700;
  color: var(--clr-text);
  font-family: var(--font_accent);
  letter-spacing: -1px;
}
.product-price_old { font-size: 1.25rem; color: #999; text-decoration: line-through; }
.product-price_note { font-size: 0.875rem; color: #666; }
.product-price_note strong { color: var(--clr-primary); }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-actions .btn { flex: 1; min-width: 200px; padding: clamp(1rem, 0.8rem + 1vw, 1.375rem) clamp(1.5rem, 1rem + 2.5vw, 3rem); }

/* Key Specs */
.product-key_specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.key-spec_item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #FAFAFA;
  border-radius: calc(var(--border-radius) / 2);
  border: 1px solid #F0F0F0;
}
.key-spec_icon {
  width: 40px; height: 40px;
  background: var(--clr-primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.key-spec_icon svg { width: 20px; height: 20px; }
.key-spec_text { display: flex; flex-direction: column; gap: 2px; }
.key-spec_label { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
.key-spec_value { font-weight: 600; font-size: 0.9375rem; color: var(--clr-text); }

/* Benefits */
.product-benefits { display: flex; flex-direction: column; gap: 12px; }
.benefit-item { display: flex; align-items: center; gap: 12px; font-size: 0.9375rem; color: #444; }
.benefit-item svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--clr-primary); }

/* ===== TABS ===== */
.product-tabs_section {
  background: var(--clr-wrapper);
  padding-top: var(--block-vertical-padding);
  padding-bottom: var(--block-vertical-padding);
}
.product-tabs_wrapper {
  background: #fff;
  border-radius: var(--border-radius);
  padding: clamp(1.25rem, 0.75rem + 2.5vw, 3.75rem);
}
.product-tabs_nav {
  display: flex;
  gap: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
  border-bottom: 2px solid #E7E7E7;
  margin-bottom: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  flex-wrap: wrap;
}
.product-tab_btn {
  padding-bottom: 16px;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  font-weight: 500;
  color: #999;
  cursor: pointer;
  border: none;
  background: none;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.product-tab_btn:hover { color: var(--clr-primary); }
.product-tab_btn.active { color: var(--clr-primary); font-weight: 600; }
.product-tab_btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: var(--clr-primary);
}
.product-tab_content { display: none; animation: fadeIn 0.5s ease; }
.product-tab_content.active { display: block; }

/* Specs Table */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid #E7E7E7; transition: background 0.2s; }
.specs-table tr:hover { background: #FAFAFA; }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td {
  padding: clamp(0.75rem, 0.6rem + 0.75vw, 1.25rem) clamp(0.5rem, 0.25rem + 1.25vw, 1.5rem);
  font-size: clamp(0.875rem, 0.8rem + 0.38vw, 1.125rem);
}
.specs-table td:first-child { width: 45%; color: #666; font-weight: 400; }
.specs-table td:last-child { font-weight: 600; color: var(--clr-text); }
.specs-table tr:nth-child(odd) { background: #FAFAFA; }
.specs-table tr:nth-child(odd):hover { background: #F0F0F0; }

/* Dimensions */
.dimensions-note {
  background: #FFF8E1;
  border-left: 4px solid #FFC107;
  padding: 16px 20px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin-bottom: 24px;
  font-size: 0.9375rem;
  color: #5D4037;
}
.table-scroll { overflow-x: auto; }
.dimensions-table { width: 100%; border-collapse: collapse; font-size: clamp(0.8125rem, 0.75rem + 0.31vw, 1rem); }
.dimensions-table th, .dimensions-table td {
  padding: 12px 10px;
  text-align: center;
  border: 1px solid #E7E7E7;
}
.dimensions-table th { background: var(--clr-primary); color: #fff; font-weight: 600; white-space: nowrap; }
.dimensions-table td { background: #fff; }
.dimensions-table tr:nth-child(even) td { background: #FAFAFA; }
.dimensions-table .dim-group { background: #E3F2FD; font-weight: 600; color: var(--clr-primary); }
.dimensions-table .highlight-row { background: #E3F2FD !important; font-weight: 700; }
.dimensions-legend { margin-top: 20px; font-size: 0.875rem; color: #666; }

/* Docs */
.docs-list { display: flex; flex-direction: column; gap: 12px; }
.docs-list_item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: #FAFAFA;
  border-radius: calc(var(--border-radius) / 2);
  border: 1px solid #E7E7E7;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--clr-text);
}
.docs-list_item:hover {
  border-color: var(--clr-primary);
  background: #F0F4FF;
  color: var(--clr-primary) !important;
}
.docs-list_item:hover .docs-arrow { transform: translateX(4px); }
.docs-icon {
  width: 48px; height: 48px;
  background: #FFEBEE;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.docs-icon svg { width: 24px; height: 24px; }
.docs-info { flex: 1; }
.docs-name { font-weight: 600; font-size: 1rem; margin-bottom: 2px; }
.docs-meta { font-size: 0.8125rem; color: #888; }
.docs-arrow { transition: transform 0.3s; color: var(--clr-primary); }

/* Application Cards */
.app-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.app-card {
  background: #FAFAFA;
  border: 1px solid #E7E7E7;
  border-radius: var(--border-radius);
  padding: clamp(1.25rem, 1rem + 1.25vw, 2rem);
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.3s;
}
.app-card:hover {
  border-color: var(--clr-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,71,151,0.08);
}
.app-card_icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--clr-primary), #0066CC);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.app-card_icon svg { width: 24px; height: 24px; color: #fff; }
.app-card_title { font-weight: 600; font-size: 1.0625rem; }
.app-card_desc { font-size: 0.875rem; color: #666; line-height: 1.5; }

/* ===== SEO TEXT ===== */
.seo-text_section { padding-top: var(--block-vertical-padding); padding-bottom: var(--block-vertical-padding); }
.seo-text_wrapper { max-width: 900px; }
.seo-text_wrapper h2 { margin-bottom: 20px; font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.85rem); }
.seo-text_wrapper h3 { margin-top: 28px; margin-bottom: 14px; font-size: clamp(1.125rem, 1.05rem + 0.38vw, 1.5rem); }
.seo-text_wrapper p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #444;
  font-size: clamp(0.9375rem, 0.9rem + 0.19vw, 1.0625rem);
}
.seo-text_wrapper ul { margin-left: 1.5rem; margin-bottom: 16px; }
.seo-text_wrapper ul li { margin-bottom: 8px; line-height: 1.6; color: #444; }
.seo-text_wrapper ul li::marker { color: var(--clr-primary); }
.seo-text_wrapper blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--clr-primary);
  background: #F8F9FF;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-style: italic;
  color: #555;
}

/* ===== RELATED PRODUCTS ===== */
.related-section { background: var(--clr-wrapper); padding-top: var(--block-vertical-padding); padding-bottom: var(--block-vertical-padding); }
.section_title { margin-bottom: clamp(1.5rem, 1rem + 2.5vw, 3rem); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--gap); }
.related-card {
  background: #fff;
  border-radius: var(--border-radius);
  border: 1px solid #E7E7E7;
  overflow: hidden;
  transition: all 0.4s;
  display: flex; flex-direction: column;
}
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: transparent;
}
.related-card_img {
  height: 200px;
  padding: 20px;
  display: flex; align-items: center; justify-content: center;
  background: #FAFAFA;
  border-bottom: 1px solid #F0F0F0;
}
.related-card_img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.related-card_body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.related-card_title { font-weight: 600; font-size: 1rem; line-height: 1.3; }
.related-card_spec { font-size: 0.8125rem; color: #888; }
.related-card_price { font-family: var(--font_accent); font-weight: 700; font-size: 1.25rem; margin-top: auto; padding-top: 10px; }
.related-card_link { display: flex; align-items: center; gap: 6px; font-size: 0.875rem; font-weight: 600; color: var(--clr-primary); margin-top: 8px; }
.related-card_link:hover { gap: 10px; }

/* ===== CTA ===== */
.product-cta { padding-top: var(--block-vertical-padding); padding-bottom: var(--block-vertical-padding); }
.product-cta_wrapper {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #003366 100%);
  border-radius: var(--border-radius);
  padding: clamp(2rem, 1rem + 5vw, 4rem);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.product-cta_text { flex: 1; min-width: 280px; }
.product-cta_text h2 { color: #fff; margin-bottom: 12px; font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem); }
.product-cta_text p { opacity: 0.85; font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem); max-width: 600px; }
.product-cta_actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */

@media (max-width: 991.98px) {
  .product-hero_wrapper { 
    display: block; 
    gap: clamp(1.5rem, 0.5rem + 5vw, 4rem);
  }
  .product-gallery { 
    width: 90%; 
    flex-shrink: 0;
    position: static;
    top: auto;
    margin: 0 auto var(--gap);
  }
  .product-gallery_main { height: clamp(16rem, 10rem + 30vw, 25rem); }
  .product-info { 
    width: 100%; 
    flex: none; 
    min-width: 0;
    display: block;
  }
  .product-info_header {margin-bottom:20px;}
  .product-key_specs {margin-bottom:20px;}
  
  .product-actions { 
    display: block;
  }
  .product-actions .btn { 
    width: 100%; 
    min-width: unset; 
    flex: none; 
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
  .product-actions .btn:last-child {
    margin-bottom: 0;
  }
  .product-price_row { 
    flex-wrap: wrap; 
  }
  .nav__list { display: none; }
  .burger { display: block; opacity: 1; visibility: visible; }
  .header_nav-btns { display: none; }
  .header-contacts_phone { display: none; }
  .footer_content { flex-direction: column; }
  .footer_contacts { align-items: flex-start; }
  .dimensions-layout { flex-direction: column; }
  .dimensions-scheme { width: 100%; position: relative; top: 0; }
  .scheme-box { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 767.98px) {
  .product-key_specs { grid-template-columns: 1fr; }
  .product-tabs_nav { gap: 16px; }
  .product-tab_btn { font-size: 0.9375rem; padding-bottom: 12px; }
  .dimensions-table { font-size: 0.75rem; }
  .dimensions-table th, .dimensions-table td { padding: 8px 6px; }
  .app-cards { grid-template-columns: 1fr; }
  .product-cta_wrapper { text-align: center; justify-content: center; }
  .product-cta_actions { width: 100%; justify-content: center; }
  .header-top_nav { display: none; }
  .product-info_header {margin-bottom:20px;}
  .product-key_specs {margin-bottom:20px;}
  
}
@media (max-width: 575.98px) {
  .product-hero_wrapper { display: block; }
  .product-gallery { width: 90%; margin: 0 auto var(--gap); position: static; top: auto; }
  .product-info { width: 100%; flex: none; display: block; }
  .product-info_header {margin-bottom:20px;}
  .product-key_specs {margin-bottom:20px;}
  .product-actions { display: block; }
  .product-actions .btn { 
    width: 100%; 
    min-width: unset; 
    flex: none; 
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
  .product-actions .btn:last-child { margin-bottom: 0; }
  .product-price_row { flex-direction: column; gap: 8px; }
  .gallery-thumb { width: 70px; height: 70px; }
  .product-tabs_nav { gap: 12px; }
  .product-tab_btn { padding-bottom: 10px; font-size: 0.875rem; }
  .related-grid { grid-template-columns: 1fr; }
}
