/* Core variables */
:root {
	--pure-white: #ffffff;
	--white: #fafafa;
	--cream-white: #f2ece8;
	--somber-sky: #e8ecf2;
	--sky: #bdc6d9;
	--ozone: #7c99ff;
	--blue: #152e54;
	--dark: #292d35;
	--danger-red: #ea3921;
	--red: #ff4d4e;
	--red-required: #ff6594;
	--star-red: #fe3d1e;
	--another-red: #f14545;
	--some-gray: #bdc7d9;
	--eblgray: #e8e8e8;
	--green: #3fb6a0;
	--ozone-hover: #f3f5ff;
	--card-shadow: 0 10px 30px rgba(87, 108, 120, .2);
	--block-shadow: 0 15px 30px rgba(0, 0, 0, .15);
	--txt-gray: #8996ac;

	--header-height: 74px;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--gap-grid: 30px;
}

*,
:before,
:after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
	border-color: currentColor;
}

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	position: relative;
	scrollbar-gutter: stable;
}

body {
	background-color: var(--white);
	color: var(--blue);
	margin: 0;
	font: 400 14px/1 Geologica, Helvetica Neue, Arial, sans-serif;
	-webkit-tap-highlight-color: #0000;
	overflow-x: hidden !important;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
hr,
figure,
p,
pre {
	margin: 0;
}

[hidden],
template,
.hidden {
	display: none !important;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline
}

b,
strong {
	font-weight: 600;
}

small {
	font-size: 80%;
}

sub,
sup {
	vertical-align: baseline;
	font-size: 66%;
	line-height: 0;
	position: relative;
}

sup {
	top: -.5em;
}

sub {
	bottom: -.25em;
}

svg:not(:root) {
	overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
[role="button"] {
	cursor: pointer;
}

button {
	-webkit-appearance: button;
	appearance: none;
	background-color: transparent;
	background-image: none;
}

:disabled {
	cursor: default;
}

/* Swyper ++++ */
.swiper {
	display: block;
	list-style: none;
	margin-inline: auto;
	overflow: hidden;
	padding: 0;
	position: relative;
	z-index: 1;
}

.swiper-vertical>.swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	display: flex;
	height: 100%;
	position: relative;
	width: 100%;
	z-index: 1;
	will-change: transform;
}

.swiper-horizontal {
	touch-action: pan-y;
}

.swiper-vertical {
	touch-action: pan-x;
}

.swiper-slide {
	flex-shrink: 0;
	height: 100%;
	position: relative;
	width: 100%;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
}

.swiper-backface-hidden .swiper-slide {
	backface-visibility: hidden;
}

/* Swyper ---- */

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: rect(0 0 0 0);
	border: 0;
}

.txt-selected {
	position: relative;
	text-shadow: none;
	--bg: var(--green);
}

.txt-selected:before {
	position: absolute;
	content: '';
	inset: 0;
	background: var(--bg);
	z-index: -1;
	padding: 0 10px;
	width: calc(100% + 10px);
	transform: translateX(-5px);
	border-radius: 4px;
	margin: 3px 0 0;
}

.page-wrapper {
	position: relative;
	display: flex;
	min-height: 100dvh;
	flex-direction: column;
}

.page-content {
	padding-top: 10px;
}

.container {
	margin: auto;
	width: 100%;
	max-width: 1620px;
	padding-inline: 10px;
}

@media (max-width: 768px) {
	.xs\:hidden {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.md\:hidden {
		display: none !important;
	}

	.container {
		padding-inline: 10px;
	}

}

@media (min-width: 1024px) {
	.lg\:block {
		display: block;
	}

	.lg\:hidden {
		display: none !important;
	}
}

@media (min-width: 1280px) {
	.llg\:block {
		display: block;
	}

	.llg\:hidden {
		display: none !important;
	}
}

.m-auto {
	margin: auto !important;
}

.mb-\[30px\] {
	margin-bottom: 30px !important;
}

.mb-\[50px\] {
	margin-bottom: 50px !important;
}

.mt-\[30px\] {
	margin-top: 30px !important;
}

.flex {
	display: flex !important;
}

.table {
	display: table !important;
}

.h-fit {
	height: fit-content !important;
}

.w-fit {
	width: fit-content !important;
}

.flex-col {
	flex-direction: column !important;
}

.flex-col-reverse {
	flex-direction: column-reverse !important;
}

.items-center {
	align-items: center !important;
}

.gap-\[10px\] {
	gap: 10px !important;
}

.gap-\[30px\] {
	gap: 30px !important;
}

.gap-\[50px\] {
	gap: 50px !important;
}

.text-\[16px\] {
	font-size: 16px !important;
}

.text-\[23px\] {
	font-size: 23px !important;
}

.text-\[24px\] {
	font-size: 24px !important;
}

.font-light {
	font-weight: 300 !important;
}

.font-medium {
	font-weight: 500 !important;
}

.font-semibold {
	font-weight: 600 !important;
}

.normal-case {
	text-transform: none !important;
}

.text-anotherRed {
	color: var(--another-red) !important;
}

.text-danger-red {
	color: var(--danger-red) !important;
}

.text-dark {
	color: var(--dark) !important;
}

.text-ozone {
	color: var(--ozone) !important;
}

.text-red-required {
	color: var(--red-required) !important;
}

.underline {
	text-decoration-line: underline !important;
}

a {
	background: transparent;
	text-decoration: none;
	color: var(--blue);
}

input[type="search"] {
	-webkit-appearance: textfield;
	appearance: textfield;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	pointer-events: none;
	-webkit-user-select: none;
	user-select: none;
}

input {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	appearance: none;
}

.rotate180 {
	transform: rotate(180deg);
}

.rotate270 {
	transform: rotate(270deg);
}

.link_color {
	color: var(--ozone);
	cursor: pointer;
	transition: .2s ease;
}

.link_color:hover {
	text-decoration: underline;
}

.color-red {
	color: var(--another-red) !important;
}

.btn {
	display: flex;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-md);
	padding: 0 24px;
	-webkit-user-select: none;
	user-select: none;
	transition: .3s ease;
}

.btn:has(svg) {
	gap: 10px;
}

.btn.dark {
	background-color: var(--blue);
	color: var(--pure-white);
	box-shadow: 0 0 0 0 #bdc7d9;
}

.device-no-touch .btn.dark:hover {
	box-shadow: -4px 4px 0 0 #bdc7d9;
}

.btn.ozone {
	background-color: #617de1;
	color: var(--pure-white);
}

.device-no-touch .btn.ozone:hover {
	box-shadow: -4px 4px 0 0 #c6d2ff;
}

.btn.ozone:active {
	background-color: var(--ozone);
}

.btn.gray {
	background-color: var(--somber-sky);
	color: var(--blue);
	box-shadow: 0 0 0 0 #bdc7d9;
}

.device-no-touch .btn.gray:hover {
	box-shadow: -4px 4px 0 0 #bdc7d9;
}

.btn.light {
	background-color: var(--white);
	color: var(--blue);
}

.device-no-touch .btn.light:hover {
	background-color: var(--pure-white);
	box-shadow: -4px 4px 0 0 #aec0d987;
}

.btn.green,
.btn.added {
	background-color: var(--green);
	color: var(--pure-white);
	text-shadow: 0px 0px 1px #1c695b;
}

.device-no-touch .btn.green:hover,
.device-no-touch .btn.added:hover {
	box-shadow: -4px 4px 0 0 #c6ebe4;
}

.btn.green:active,
.btn.added:active {
	opacity: 0.8;
}

.btn:active {
	box-shadow: none;
	transform: translate3d(0, 2px, 0) scale3d(0.99, 0.99, 1);
}

.btn[inert] {
	animation: loadingAnim 4000ms infinite;
	background-size: 300% 300% !important;
	background: linear-gradient(269deg, var(--some-gray) 10%, var(--blue) 90%);
	opacity: 0.7;
}

.scroll-x::-webkit-scrollbar {
	height: 2px;
	border-radius: 4px;
	background: linear-gradient(90deg, rgb(226 226 244), rgba(0, 0, 0, 0));
}

.scroll-x::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: var(--some-gray);
}

.scroll-y {
	overflow-y: auto;
	padding-inline: 3px 6px;
}

.scroll-y::-webkit-scrollbar {
	width: 2px;
	border-radius: 4px;
	background: linear-gradient(90deg, rgb(226 226 244), rgba(0, 0, 0, 0));
}

.scroll-y::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: var(--some-gray);
}

@media (max-width: 768px) {
	.extend-edge {
		padding-inline: 10px;
		margin-inline: -10px;
	}
}

.radio,
.checkbox {
	position: relative;
}

.radio input,
.checkbox input {
	position: absolute;
	z-index: -100;
}

.radio input:checked+label::before,
.checkbox input:checked+label::before {
	background-color: var(--blue);
	border: 7.5px solid var(--some-gray);
}

.radio label,
.checkbox label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
}

.radio label::before,
.checkbox label::before {
	content: "";
	display: block;
	height: 25px;
	min-height: 25px;
	width: 25px;
	min-width: 25px;
	border-radius: 100%;
	background-color: var(--some-gray);
	border: 0 solid var(--some-gray);
	transition: all 0.4s ease-out;
	will-change: auto;
}

.inpt {
	display: flex;
	height: 58px;
	width: 100%;
	border-radius: 8px;
	padding-inline: 20px;
	font-size: 16px;
	color: var(--blue);
	background: #d9deec45;
	transition: box-shadow 0.3s ease-out;
}

textarea.inpt {
	padding: 20px;
}

.inpt::placeholder {
	font-weight: 300;
	color: var(--some-gray);
}

.inpt-box {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.inpt-box__name {
	font-size: 14px;
	color: #223c63d4;
	font-weight: 500;
}

.padding-top {
	margin-top: 40px;
}

.header-top {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-block: 10px 4px;
	font-size: 13px;
}

.header-top__left {
	display: flex;
	gap: 4px;
}

.header-top__right {
	display: flex;
	gap: 14px;
	align-items: center;
}

.header-top__chat-btn {
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
	line-height: 18px;
	font-weight: 400;
	color: #47556b;
}

.header-top__chat-btn:before {
	content: "";
	background-color: #13b474;
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.geocity__btn {
	display: flex;
	align-items: center;
	gap: 4px;
}

.page-header {
	position: static;
	padding-block: 8px;
	top: 0;
	z-index: 11;
	transition: box-shadow .2s ease-out;
	background-color: var(--white);
}

.page-header.fixed {
	box-shadow: 0 6px 12px 0 rgb(0 0 0 / 7%);
}

.header-top__info {
	display: flex;
	align-items: center;
	color: #47556b;
	gap: 4px;
}

.page-header__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

@media (min-width: 768px) {
	.page-header {
		position: sticky;
	}

	.page-header__wrapper {
		justify-content: flex-start;
		gap: 20px;
	}
}

@media (min-width: 1440px) {
	.page-header__wrapper {
		justify-content: space-between;
	}
}

.page-header-btns {
	display: flex;
	gap: 1rem;
}

@media (max-width: 480px) {
	.page-header-btns {
		margin: 0;
	}
}

@media (max-width: 1280px) {
	.page-header-btns {
		margin-right: auto;
	}
}

.page-header-btns__catalog {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: var(--blue);
	padding: 11px 24px;
}

@media (min-width: 768px) {
	.page-header-btns__catalog {
		width: fit-content;
	}
}

.page-header-btns__menu {
	display: grid;
	width: 42px;
	height: inherit;
	place-content: center;
	border-radius: 8px;
	background: #f1f2f6;
	color: #47556b;
	position: relative;
}

.page-header-btns__menu.active {
	box-shadow: -2px 1px 4px rgba(87, 108, 120, .2);
	background: #e8ecf3;
}

@media (max-width: 1280px) {
	.page-header__left {
		margin-right: auto;
	}
}

.page-header-search {
	display: none;
}

.page-header-nav {
	display: none;
}

@media (min-width: 1280px) {
	.page-header-btns__menu {
		display: none;
	}

	.page-header-nav {
		display: flex;
		align-items: center;
		max-width: fit-content;
		flex: 1;
		flex-wrap: wrap;
		height: 20px;
		overflow: hidden;
		gap: .7em;
		z-index: 2;
	}
}

.page-header-nav__item {
	height: 20px;
	font-weight: 500;
}

.page-header-nav__item[data-content="Colormix"] {
	color: var(--star-red);
}

.page-header-nav.mini {
	font-size: 12px;
	color: #47556b;
}

.page-header-controls__ul {
	display: flex;
}

.page-header-controls__li-content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	color: rgb(82, 99, 126);
	transition: color 0.3s ease-out;
	align-items: center;
	cursor: pointer;
	width: 56px;
}

.page-header-controls__li-content:hover,
.page-header-controls__li-content.active {
	color: var(--ozone);
}

.page-header-controls__txt {
	font-size: 12px;
	text-wrap-mode: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	width: inherit;
	text-align: center;
}

.page-header-num {
	display: grid;
	place-content: center;
	font-size: 18px;
	font-weight: 600;
	text-wrap-mode: nowrap;
}

.num-desc {
	font-size: 11px;
	color: #8d9faf;
	font-weight: 500;
}

@media (min-width: 1920px) {
	.page-header-num {
		font-size: 20px;
	}
}

.page-header__left,
.page-header__right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.page-header-contacts {
	display: flex;
	max-width: fit-content;
}

.page-header-contacts__wrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	max-width: 451px;
	gap: 10px;
	height: 39px;
	justify-self: flex-end;
}

@container (width <=451px) {

	.page-header-contacts__wrapper {
		max-width: 214px;
	}
}

@container (width <=130px) {

	.page-header-contacts__wrapper {
		display: none;
	}
}

.page-header .site-logo>svg {
	aspect-ratio: 203 / 53;
	height: 44px;
	width: auto;
	color: inherit;
}

.page-header-burger {
	position: absolute;
	left: 0;
	top: 64px;
	z-index: 10;
	display: none;
	width: 100%;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	border-radius: 12px;
	background-color: var(--white);
	padding-block: 28px;
	opacity: 0;
	display: none;
	box-shadow: var(--card-shadow);
	transition: 0.3s ease-out;
}

.page-header-burger.active {
	display: flex;
	opacity: 1;
}

@media (min-width: 768px) {
	.page-header-burger {
		left: 490px;
		top: 20px;
		width: fit-content;
		padding: 14px 20px 20px 20px;
		gap: 1em;
		box-shadow: var(--card-shadow);
	}
}

@media (min-width: 1280px) {
	.page-header-burger {
		left: 19%;
	}
}

@media (min-width: 1440px) {
	.page-header-burger {
		display: none;
	}
}

.page-header-burger .page-header-nav__list li {
	margin: 0;
	width: 100%;
}

@media (min-width: 768px) {
	.page-header-burger .page-header-nav__item {
		padding: 9px 20px 9px 10px;
		flex: 1;
		border-radius: 8px;
		font-size: 14px;
	}

	.page-header-burger .page-header-nav__item:hover {
		background-color: var(--ozone-hover);
	}

	.page-header-burger .page-header-nav__item:after {
		content: '';
		position: absolute;
		left: -11px;
		width: 10px;
		height: 10px;
		margin: auto;
		line-height: 50px;
		font-size: 22px;
		background: #7c99ff00;
		border: 2px solid var(--ozone);
		border-radius: 3px;
		rotate: 45deg;
		transform: translate(-10px, -10px);
		transition: .2s ease;
		opacity: 0;
		visibility: hidden;
	}

	.page-header-burger .page-header-contacts__ul {
		align-self: flex-start;
	}
}

@media (min-width: 1024px) {
	.page-header-burger .page-header-burger__top {
		display: none;
	}
}

.page-header-burger .page-header-controls__wrapper {
	display: block;
}

.page-header-burger .page-header-controls__ul> :first-child {
	display: block;
}

.page-header-burger .page-header-nav__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px 0;
	height: auto;
}

@media (min-width: 1024px) {
	.page-header-burger .page-header-nav__list {
		gap: 0;
	}

	.page-header-burger .page-header-num {
		display: none;
	}

	.page-header-burger .page-header-contacts__ul {
		display: none;
	}
}

@media (min-width: 480px) {
	.page-header-burger .page-header-controls__ul> :nth-child(2) {
		display: none;
	}

	.page-header-burger .page-header-controls__ul> :nth-child(3) {
		display: none;
	}
}


@media (min-width: 768px) {
	.page-header-burger .page-header-nav__list {
		gap: 0;
		overflow: visible;
	}
}

@media (min-width: 1024px) {
	.page-header-burger .page-header-controls__ul {
		display: none;
	}

	.page-header-burger .page-header-controls__ul> :first-child {
		display: none;
	}
}

.page-header-contacts__link {
	display: grid;
	place-content: center;
	width: 38px;
	height: 38px;
	border-radius: 6px;
	transition: color .2s ease, background .2s ease;
}

.page-header-contacts__link {
	color: #47556b;
}

.page-header-burger [data-dropdown-wrapper] {
	position: static;
	display: none;
	width: 100%;
}

.device-no-touch .page-header-burger [data-dropdown]:hover [data-dropdown-wrapper] {
	margin-top: 20px;
	display: block;
	opacity: 1;
}

.page-header-burger [data-dropdown-content] {
	align-items: center;
	padding: 0;
}

@media (min-width: 1024px) {
	.page-header-burger [data-dropdown-content] {
		align-items: flex-start;
	}
}

.page-header-btns .page-header-btns__catalog {
	display: flex;
	height: 40px;
	font-size: 13px;
	z-index: 2;
}

.page-header-call {
	display: flex;
	align-items: center;
	padding: 6px 16px;
	font-size: 13px;
	height: 40px;
}

.page-header__btn-action {
	padding: 6px 10px;
	color: #47556b;
}

a.site-logo {
	color: inherit;
	margin-right: 14px;
}

@media (max-width: 768px) {
	.page-header-btns {
		display: none;
	}

	.site-logo {
		flex: 1;
	}

	.page-header .site-logo>svg {
		width: 164px;
		transform: translate(0, 4px);
	}
}

@media (width >=768px) {
	:root {
		--text-logo: block;
	}
}

.hamburger {
	position: relative;
	height: 14px;
	width: 20px;
	transition: height .2s;
}

.hamburger__bar,
.hamburger:before,
.hamburger:after {
	backface-visibility: hidden;
	background: currentColor;
	border-radius: 1.5px;
	height: 2.4px;
	left: 0;
	position: absolute;
	right: 0;
	transition: transform .2s ease-out;
	content: "";
}

[data-toggle-burger] .hamburger:before {
	top: 0;
}

[data-toggle-burger] .hamburger:after {
	bottom: 0;
}

[data-toggle-burger] .hamburger__bar {
	top: 6px;
	transition: opacity .1s ease-out;
}

[data-toggle-burger].active .hamburger:before {
	transform: translateY(6px) rotate(45deg) scaleX(1.2);
	background: currentColor;
}

[data-toggle-burger].active .hamburger:after {
	transform: translateY(-6px) rotate(-45deg) scaleX(1.2);
	background: currentColor;
}

[data-toggle-burger].active .hamburger__bar {
	opacity: 0;
}

[data-toggle-burger].active {
	color: var(--ozone);
}

.hamburger-mob {
	padding: 7px;
	height: 100%;
	display: flex;
	align-items: center;
}

.breadcrumbs {
	--br-gap: 12px;
	display: flex;
	width: fit-content;
	align-items: center;
	gap: var(--br-gap, 15px);
	font-size: 13px;
	text-wrap: nowrap;
	overflow: hidden;
	overflow-x: auto;
}

.breadcrumbs__list-item {
	display: flex;
	align-items: center;
	gap: var(--br-gap, 15px);
}

span.breadcrumbs__item {
	color: var(--txt-gray);
}

@media (max-width: 768px) {
	.breadcrumbs {
		margin-inline: -9px;
		padding-left: 9px;
		width: auto;
		font-size: 12px;
		--br-gap: 8px;
	}

	.breadcrumbs::-webkit-scrollbar {
		width: 0;
		height: 0;
	}

	a.breadcrumbs__item {
		padding: 8px 0;
	}

	.breadcrumbs svg {
		width: 10px;
		height: 10px;
	}
}

.tabbar {
	z-index: 999;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .08), 0 1px 4px rgba(0, 0, 0, .05);
}

.tabbar__list {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 60px;
	background-color: var(--pure-white);
	box-shadow: 0 20px 60px rgba(87, 108, 120, .24);
}

.tabbar__item {
	flex: 0 0 20%;
	font-size: 11px;
	line-height: 14px;
	text-wrap-style: balance;
}

.tabbar__item,
.tabbar__item a {
	color: #8c98ae;
}

.tabbar__item.active,
.tabbar__item.active a {
	color: var(--ozone);
}

.bar-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.bar-item__icon {
	width: 24px;
	height: 24px;
}

.counter {
	position: absolute;
	top: -6px;
	left: calc(50% + 3px);
	width: 20px;
	height: 20px;
	display: grid;
	place-content: center;
	border-radius: 20px;
	font-size: 10px;
	background: var(--ozone);
	border: 2px solid var(--white);
	color: var(--white);
	scale: 1;
	pointer-events: none;
	user-select: none;
	transition: scale .2s ease;
}

.counter[data-cnt="0"] {
	scale: 0;
}


pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace;
	font-size: 1em;
}

input::placeholder,
textarea::placeholder {
	opacity: 1;
	color: #b4bfd3;
}

:where(.device-no-touch) a:hover {
	color: var(--ozone);
}

a:active,
a:hover {
	outline: 0
}

a:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px
}

a.btn-added {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all 0.15s ease 0s;
	flex: 1;
	white-space: nowrap;
	padding: 0;
	height: 100%;
	font-size: 13px;
	gap: 2px;
	font-weight: 423;
	color: inherit !important;
}

.mini-added {
	font-size: 11px;
	font-weight: 400;
	line-height: 1.29;
}

:focus {
	outline: none !important
}

details::details-content {
	block-size: 0;
	overflow: hidden;
	transition: alle;
	transition-duration: .2s;
	transition-behavior: allow-discrete;
}

details[open]::details-content {
	block-size: auto;
	margin-top: 1.4em;
}

summary {
	cursor: pointer;
}

.summary-arrow {
	transform: rotate(90deg);
	transform-origin: 4px;
	transition: .2s ease;
}

details[open] .summary-arrow {
	transform: rotate(-90deg);
}

/* Swyper ++++ */
@media(min-width: 1620px) {

	.swiper-gradient {
		position: relative;
		overflow: visible;
	}

	.swiper-gradient:before,
	.swiper-gradient:after {
		content: '';
		display: block;
		position: absolute;
		height: 100%;
		top: 0;
		right: 100%;
		background-image: linear-gradient(to left, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 1) 70%);
		width: calc((100vw - 1460px) / 2);
		pointer-events: none;
		z-index: 3;
	}

	.swiper-gradient:after {
		left: 100%;
		right: unset;
		background-image: linear-gradient(to right, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 1) 70%);
	}
}

.swiper-scrollbar {
	touch-action: none;
	position: absolute;
	left: 1%;
	bottom: -5px;
	z-index: 0;
	width: calc(99%);
	height: 2px;
	border-radius: 4px;
	background: linear-gradient(90deg, rgb(226 226 244), rgba(0, 0, 0, 0));
}

.swiper-scrollbar-drag {
	height: 100%;
	border-radius: 4px;
	background-color: var(--some-gray);
}

.swiper-pagination {
	position: absolute;
	bottom: 8px;
	left: 50%;
	display: flex;
	background-color: #0003;
	border-radius: 32px;
	column-gap: 4px;
	padding: 4px 6px;
	z-index: 2;
	transform: translate(-50%);
	pointer-events: none;
}

.swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	border-radius: 10px;
	background-color: #f3f5fb;
	opacity: .6;
	transition: width .2s, background-color .2s cubic-bezier(.17, .67, .83, .67);
	will-change: auto;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background-color: #fff;
	width: 22px;
}

.popup__close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6px;
	color: #637491;
	background: #ebeff9;
	border-radius: 12px;
	z-index: 1;
}

/* Swyper ---- */

.device-no-touch a.whatsapp:hover,
a.whatsapp:active {
	color: #4caf50;
}

.device-no-touch a.vk:hover,
a.vk:active {
	color: #07f;
}

/* Footer ++++ */
footer {
	padding-block: 32px 20px;
	color: #8d9faf;
	background-color: var(--dark);
	font-size: 12px;
	line-height: 1.3;
	overflow: hidden;
}

.page-footer {
	display: grid;
	gap: 24px 50px;
	white-space: nowrap;
}

.page-footer a {
	color: var(--white);
}

.device-no-touch .page-footer a:hover,
.page-footer a:active {
	color: var(--ozone);
}

.page-footer__wrapper {
	display: grid;
	gap: inherit;
}

.page-footer__doc {
	display: grid;
	align-items: center;
	justify-content: start;
	gap: 1em;
	font-size: 12px;
	text-wrap: nowrap;
}

.page-footer-contacts {
	display: grid;
	gap: inherit;
}

.page-footer-contacts__wrapper {
	display: grid;
	gap: 1em;
}

.page-footer-phone__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	margin-top: 3px;
}

.page-footer-phone__item {
	font-size: 20px;
	font-weight: 500;
}

.page-footer-link {
	display: grid;
	place-content: center;
	font-size: 14px;
	background-color: #373b43;
	flex: 1;
	border-radius: 12px;
	height: 40px;
}

.page-footer-links {
	display: grid;
	flex: 1;
	gap: 18px 80px;
	padding: 14px;
	border-radius: 16px;
	background-color: #373b43;
}

.page-footer-nav summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4px;
	font-size: 15px;
	color: #b3bdc6;
	line-height: 1.3em;
}

.page-footer-nav__list {
	display: grid;
	gap: 1em;
	padding-inline: 4px;
}

.page-footer-messenger__wrap {
	display: flex;
	justify-content: start;
	gap: 8px;
	margin-top: 3px;
}

.page-footer-logo {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.page-footer__requisites {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 11px;
	line-height: 16px;
}

@media (min-width:768px) {
	footer {
		font-size: 13px;
		padding-inline: 20px;
	}

	.page-footer__wrapper {
		grid-auto-flow: column;
		justify-content: space-between;
	}

	.page-footer-links {
		grid-auto-flow: column;
		justify-content: start;
		background-color: unset;
		padding: 0;
	}

	.page-footer-link.mail {
		display: block;
		background: unset;
		height: unset;
		width: unset;
	}

	.page-footer__doc {
		grid-auto-flow: column;
	}

	.page-footer-contacts {
		grid-auto-flow: column;
	}
}

/* Footer ----- */

.page-header-search {
	position: absolute;
	left: 0;
	right: 0;
	top: 56px;
	opacity: 0;
	width: 100%;
	background-color: var(--white);
	will-change: padding;
	transition: opacity .3s ease, display .5s allow-discrete,
		padding .3s ease;
	box-shadow: 0 8px 12px 0 rgb(0 0 0 / 7%);
	z-index: 4;
}

.page-header-search.visible {
	opacity: 1;
	display: block;
	padding-top: 10px;
	padding-bottom: 14px;
	z-index: 1;
}

@starting-style {
	.page-header-search.visible {
		opacity: 0;
	}
}

.page-header-search-form input[type="search"] {
	height: 44px;
	width: 100%;
	border-radius: 16px;
	background-color: var(--pure-white);
	padding-inline: 18px;
	border: 2px solid var(--some-gray);
}

.page-header-search-form input[type="search"]:focus {
	border-color: var(--ozone);
}

.page-header-search-form__wrapper {
	height: fit-content;
	margin: auto;
	width: 100%;
	max-width: 550px;
	position: relative;
}

.page-header-search-form__cancel {
	position: absolute;
	display: none;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	color: #637491;
	width: 24px;
	height: 24px;
	top: 50%;
	right: 54px;
	transform: translateY(-50%);
}

.page-header-search-form__cancel:hover {
	color: var(--red);
	background-color: #f42d680f;
}

.page-header-search-form__submit {
	position: absolute;
	display: grid;
	place-content: center;
	border-radius: 16px;
	width: 46px;
	color: #fff;
	background: var(--ozone);
	right: 0;
	top: 0;
	height: 100%;
}

.search-result {
	position: absolute;
	display: flex;
	flex-direction: column;
	top: calc(100% + 10px);
	width: 100%;
	background: var(--pure-white);
	height: fit-content;
	border-radius: 12px;
	box-shadow: var(--card-shadow);
	padding: 10px 10px;
}

.search-result-item {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px;
	justify-content: flex-start;
	gap: 4px;
	border-radius: 6px;
	transition: background-color 0.3s, color 0.3s;
}

.device-no-touch .search-result-item:hover,
.search-result-item.selected {
	background-color: var(--ozone-hover);
	color: var(--ozone);
}

.search-result-item:not(:hover):after {
	content: '';
	bottom: -1px;
	position: absolute;
	width: 98%;
	background: var(--somber-sky);
	height: 1px;
	z-index: 0;
}

.search-result-item__info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 13px;
}

.search-result-item__desc {
	font-size: 12px;
	color: var(--txt-gray);
}

.search-result-all {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
	background-color: var(--ozone-hover);
	padding: 10px 8px;
	border-radius: 8px;
}

.search-no-result {
	display: grid;
	place-content: center;
	padding: 12px;
}

.search-history-container {
	padding: 8px 0;
}

.history-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	cursor: pointer;
	text-decoration: none;
	color: #333;
}

.history-item:hover,
.history-item.selected {
	background-color: #f5f5f5;
}

.history-item__text {
	flex-grow: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.history-item__delete {
	background: transparent;
	border: none;
	color: #999;
	font-size: 20px;
	line-height: 1;
	padding: 0 5px;
	margin-left: 10px;
	cursor: pointer;
	flex-shrink: 0;
}

.history-item__delete:hover {
	color: #d9534f;
}

.search-error {
	padding: 15px;
	color: #c7254e;
	text-align: center;
}

.reviews-slider__slide {
	height: auto !important;
	width: clamp(300px, 85vw, 380px);
}

.reviews-slider__wrapper {
	display: flex;
	gap: 14px;
	height: 100%;
}

.reviews-slider.swiper {
	overflow: visible;
}

.reviews-wrapper {
	display: grid;
	gap: 30px;
}

@media(min-width: 768px) {
	.reviews-wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media(min-width: 1920px) {
	.reviews-wrapper {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.reviews-card {
	--rcard-padding: 20px 24px;
	;
	position: relative;
	display: flex;
	height: 100%;
	flex-direction: column;
	gap: 14px;
	border-radius: 16px;
	background-color: var(--cream-white);
	padding: var(--rcard-padding);
	color: var(--dark);
}

.reviews-card__uinfo {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.reviews-card__uname {
	font-size: 20px;
	font-weight: 600;
}

.reviews-card__urank {
	font-size: 12px;
	margin-bottom: 10px;
}

.reviews-card__comment {
	line-height: 1.4;
}

.reviews-card__comment {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
	line-height: 1.4;
}

.reviews-card__rating {
	display: flex;
	gap: 10px;
	margin-top: auto;
}

.reviews-card__star {
	color: var(--some-gray);
}

.reviews-card__star.filled {
	color: var(--star-red);
}

.reviews-card:before {
	position: absolute;
	right: var(--rcard-padding);
	top: var(--rcard-padding);
	content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSczNycgaGVpZ2h0PScyOCcgdmlld0JveD0nMCAwIDM3IDI4Jz48dXNlIHhsaW5rOmhyZWY9Jy9sb2NhbC9zdmcvaWNvbnMuc3ZnI2ljb24tLXF1b3RlJz48L3VzZT48L3N2Zz4=");
}

.reviews-block .btn {
	width: fit-content;
	min-width: 250px;
	margin: auto;
	margin-top: 12px;
	font-size: 13px;
	font-weight: 500;
}

.product-card__buy-block .qty {
	height: 42px;
}

.product-card {
	transition: box-shadow 0.3s ease-out;
	border-radius: 10px;
	position: relative;
}

.device-no-touch .product-card:has(a.product-card__link:hover) a.product-card__link {
	color: var(--ozone);
}

.product-card__wrapper {
	display: flex;
	height: 100%;
	flex-direction: column;
	border-radius: 16px;
	background-color: var(--pure-white);
	padding-bottom: var(--block-pad, 12px);
	position: relative;
	overflow: hidden;
	transition: box-shadow .3s ease;
}

.product-card__wrapper a {
	position: relative;
}

.products-slider {
	padding-block: 10px;
}

.products-slider.mini {
	font-size: 12px;
	--block-pad: 8px 10px;
	--sw-gap: 10px;
	--block-width: 200px;
}

@media(max-width: 768px) {
	.products-slider {
		--block-pad: 12px 10px;
	}
}

.products-slider__wrapper {
	gap: var(--sw-gap, 18px);
}

div.products-slider__slide {
	width: var(--block-width, clamp(300px, 83vw, 350px));
	height: auto;
}

.product-card__image {
	position: relative;
	overflow: hidden;
	margin-bottom: 16px;
}

.product-card__image.slider-mobile-view .product-card__slides-container {
	gap: 10px;
	padding: 0 10px;
	margin: 0 -10px;
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card__slides-container {
	display: flex;
	height: 100%;
	will-change: transform;
}

.product-card__slide-item {
	width: 100%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-card__slide-item img {
	aspect-ratio: 1.334 / 1;
	object-fit: cover;
	border-radius: 8px;
}

.product-card__slide-dots {
	align-items: center;
	display: flex;
	position: absolute;
	left: var(--block-pad, 12px);
	width: 100%;
	bottom: 5px;
	z-index: 1;
	pointer-events: none;
}

.device-touch .swiper-slide .product-card__slide-dots {
	display: none;
}

.product-card__slide-dot {
	position: relative;
	height: 4px;
	width: 4px;
	border-radius: 14px;
	margin: 0 2px;
	background-color: var(--some-gray);
	transition: width .4s ease-out;
}

.product-card__slide-dot.current {
	width: 14px;
}

.product-card__content {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	height: 100%;
	padding-inline: var(--block-pad, 12px);
}

.product-card__name {
	line-height: 1.08;
	hyphens: auto;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
}

.product-card__prices {
	display: flex;
	align-items: baseline;
	gap: 10px;
	font-size: 24px;
}

.product-card__current-price {
	font-weight: 808;
	font-size: 21px;
}

.product-card__old-price {
	min-height: 0.66em;
	font-size: 0.66em;
	font-weight: 600;
	color: #7c869d;
}

.delete-price {
	position: relative;
	overflow: hidden;
}

.delete-price:after {
	content: "";
	position: absolute;
	top: 18%;
	left: -20%;
	width: 300%;
	height: 170%;
	border: 2px solid var(--red);
	border-radius: 50%;
	pointer-events: none;
}

.product-card__buy-block {
	display: flex;
	align-items: center;
	gap: 8px;
	container-type: inline-size;
}

.product-card__price-no {
	font-weight: 808;
	font-size: 17px;
}

.product-card__btn {
	height: 44px;
	font-size: 14px;
}

.qty-unit {
	align-self: center;
	color: #606f89;
	font-size: 13px;
	pointer-events: none;
}

@container (width < 300px) {

	.product-card__buy-block div.qty {
		width: 100%;
	}

	.qty-unit {
		display: none;
	}
}

@container (width < 260px) {
	.buy-button__txt {
		display: none;
	}
}

.p-card__absolute {
	display: none;
	transition: .2s ease;
	margin-top: 8px;
	padding-inline: var(--block-pad, 12px);
}

.product-card.hover .product-card__wrapper {
	position: absolute;
	z-index: 4;
	top: 0;
	left: 0;
	max-width: 100%;
	width: 100%;
	height: auto;
	flex-grow: 1;
	display: flex;
	box-shadow: var(--card-shadow);
}

.product-card.hover .p-card__absolute {
	display: block;
}

.prop-elem__title {
	margin-bottom: 7px;
	font-size: 12px;
	color: var(--txt-gray);
}

.prop-elem__list {
	display: flex;
	gap: 6px;
	font-size: 12px;
	font-weight: 500;
	flex-wrap: wrap;
}

.prop-elem__list>div {
	background: var(--somber-sky);
	padding: 6px 8px;
	border-radius: 8px;
}

.products-wrapper-details {
	display: grid;
	gap: 14px 12px;
	transition: opacity 0.3s ease-out;
}

@media(min-width: 480px) {
	.products-wrapper-details {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media(min-width: 1024px) {
	.products-wrapper-details {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media(min-width: 1280px) {
	.products-wrapper-details {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.slider-nav {
	display: flex;
	justify-content: space-between;
}

.slider-nav__controls {
	display: flex;
	align-items: center;
	gap: 20px;
}

input[type="number"],
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	-moz-appearance: textfield;
	appearance: none;
	margin: 0;
	outline: 0;
}

.inline-link {
	color: var(--ozone);
	text-decoration: underline;
}

.style-h1 {
	font-size: 28px;
}

h2 {
	font-size: 24px;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: .6em;
}

.style-some-title {
	font-size: 26px;
}

.page-top {
	margin-bottom: 30px;
}

@media(min-width: 480px) {
	.page-top {
		margin-bottom: 40px;
	}
}

.page-top__wrapper {
	--r: 16px;
	position: relative;
	display: flex;
	height: 160px;
	width: 100%;
	align-items: flex-end;
	border-radius: var(--r);
	overflow: hidden;
}

.page-top__bg {
	position: absolute;
	inset: 0;
}

.page-top__content {
	position: relative;
	height: fit-content;
	border-radius: 0 var(--r) 0 0;
	background-color: var(--white);
	padding: 20px 20px 26px 0;
}

.page-top__content::before,
.page-top__content::after {
	content: '';
	position: absolute;
	top: calc(-1 * var(--r));
	left: 0;
	--mask: radial-gradient(var(--r) at 100% 0, #0000 98%, #000);
	mask: var(--mask);
	width: var(--r);
	height: var(--r);
	z-index: 1;
	background: #F8F8F8;
}

.page-top__content::after {
	left: unset;
	top: unset;
	bottom: 0;
	right: calc(-1 * var(--r));
}

.page-top__title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	text-wrap: balance;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.1em;
	hyphens: auto;
	color: var(--blue);
	overflow: hidden;
}

@media(min-width: 480px) {
	.page-top__content {
		width: auto;
		padding: 30px 30px 0 0;
	}

	.page-top__title {
		font-size: 35px;
	}
}

@media(max-width: 768px) {
	.page-top {
		margin: 0;
	}

	.page-top__wrapper {
		display: block;
		height: unset;
	}

	.page-top__wrapper .page-top__bg {
		display: none;
	}

	.page-top__content {
		padding: 10px 0 0;
		background-color: unset;
	}

	.page-top__content::before,
	.page-top__content::after {
		display: none;
	}
}

.page-top__content .breadcrumbs {
	margin-bottom: 10px;
}

.main-sections {
	margin-top: 30px;
}

.qty {
	display: flex;
	height: 46px;
	width: 100%;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	justify-content: space-between;
	gap: 4px;
	font-weight: 600;
	border-radius: 14px;
}

.qty-btn {
	position: relative;
	display: flex;
	height: 100%;
	min-width: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background-color: #e4e8ed;
	transition: background-color .3s ease, opacity .15s ease;
}

.qty-btn:disabled {
	pointer-events: none;
	opacity: .3;
}

.qty-btn:before,
.qty-btn:after {
	content: "";
	position: absolute;
	display: block;
	width: 10px;
	height: 2px;
	top: 50%;
	left: calc(50% - 6px);
	background-color: currentColor;
	border-radius: 4px;
}

.qty-btn.plus:before {
	transform: rotate(-90deg);
}

.product-card__buy-button {
	text-wrap: nowrap;
	height: 100%;
	width: 100%;
	padding-inline: unset;
	font-size: 13px;
}

[data-product-buy] svg {
	transition: .2s cubic-bezier(0, 1.25, 0.6, 1.24);
}

[data-product-buy]:hover svg {
	transform: rotate(-24deg);
}

.device-no-touch .qty-btn:hover {
	background-color: #00000017;
}

.qty-btn:active {
	opacity: 0.6;
}

.qty-label {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	height: 100%;
	gap: 2px;
}

.qty-input {
	width: 4.3ch;
	background-color: transparent;
	text-align: center;
	font-weight: 700;
}

.price-measure {
	font-size: 70%;
	color: #465774;
}

@-webkit-keyframes loadingAnim {

	from,
	to {
		background-position: 0% 0%;
	}

	50% {
		background-position: 100% 0;
	}
}

@keyframes loadingAnim {

	from,
	to {
		background-position: 0% 0%;
	}

	50% {
		background-position: 100% 0;
	}
}

.title-margin {
	margin-bottom: 20px;
}

.title-big {
	position: relative;
}

.title-big__txt {
	position: absolute;
	top: -60px;
	left: 0;
	font-size: 160px;
	font-weight: 700;
	width: max-content;
	text-align: left;
	background: linear-gradient(to right, transparent, #bdc7d9) center/cover fixed;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transform-origin: center;
	pointer-events: none;
	-webkit-user-select: none;
	user-select: none;
	z-index: -1;
}

.title-big__txt.to-left {
	background: linear-gradient(to left, transparent, #bdc7d9) center/cover fixed;
	background-clip: text;
}

.title-big__txt.bottom {
	bottom: -60px;
	top: unset;
}

[data-dropdown] {
	position: relative;
}

[data-dropdown]:hover [data-dropdown-wrapper],
[data-dropdown]:focus [data-dropdown-wrapper],
[data-dropdown]:focus-visible [data-dropdown-wrapper] {
	z-index: 1;
	opacity: 1;
}

[data-dropdown-wrapper] {
	position: absolute;
	z-index: -1;
	display: block;
	opacity: 0;
	left: 0;
	top: 100%;
	height: fit-content;
	width: 100%;
	transition: 0.3s ease-out;
}

[data-accordion-wrapper] {
	display: none;
}

[data-accordion-wrapper].active {
	display: grid;
	animation: popup_top_visible .2s ease-in-out;
}

[data-accordion-content] {
	min-height: 0;
}

[data-accordion-trigger].active .accordion-arrow__svg {
	transform: rotate(-180deg);
}

@media(min-width: 480px) {
	.sm\:text-\[16px\] {
		font-size: 16px !important;
	}

	.sm\:text-\[28px\] {
		font-size: 28px !important;
	}
}

@media(min-width: 768px) {
	.md\:text-\[24px\] {
		font-size: 24px !important;
	}

	.md\:text-\[40px\] {
		font-size: 40px !important;
	}
}

.montage-gallery-sections {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
	overflow-y: auto;
	padding-bottom: 10px;
	scroll-snap-type: x mandatory;
}

.montage-gallery-section.active {
	background-color: var(--ozone);
}

.montage-gallery-section {
	display: flex;
	background-color: #f0f0f6;
	color: var(--blue);
	text-wrap: nowrap;
	border-radius: 8px;
	transition: 0.3s ease-out;
	scroll-snap-align: start;
	scroll-margin-left: 8px;
}

.montage-gallery-section a {
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 500;
}

.montage-gallery-section:hover {
	border-color: var(--blue);
}

.product-card__discount-percent {
	position: absolute;
	top: 19px;
	right: 7px;
	font-size: 18px;
	font-weight: 600;
	color: var(--white);
	z-index: 1;
}

.product-card__discount-label {
	width: 151px;
	height: 152px;
	background-color: var(--red);
	top: -81px;
	right: -81px;
	position: absolute;
	transform: rotate(45deg);
	z-index: 1;
}

@media (min-width: 1440px) {
	.products-wrapper {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

.arrow-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	box-shadow: 0 7px 25px rgba(115, 139, 153, .25);
	background-color: var(--pure-white);
	border-radius: 99%;
	--arrow-b: #c3cdff;
	--arrow-s: #91a9ff;
	transition: .2s ease-out;
}

.device-no-touch .arrow-btn:hover {
	background-color: #fc5d04;
	--arrow-b: #ff8e4f;
	--arrow-s: var(--pure-white);
	box-shadow: none;
}

.arrow-btn.swiper-button-disabled {
	--arrow-b: #f8f8f8;
	--arrow-s: #cccccc;
	background-color: var(--pure-white);
	pointer-events: none;
	opacity: .6;
	visibility: hidden;
}

.slider-arrow.next {
	right: -25px;
}

.slider-arrow.prev {
	left: -25px;
}

.slider-arrow {
	top: 0;
	bottom: 0;
	margin: auto 0;
	position: absolute;
	z-index: 10;
}

.catalog-section-new-slider__outer {
	position: relative;
}

@media (max-width: 768px) {
	.slider-arrow {
		width: 45px;
		height: 45px;
	}

	.slider-arrow.next {
		right: -10px;
	}

	.slider-arrow.prev {
		left: -10px;
	}
}

@keyframes popup_top_visible {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes popup_bottom_visible {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.p-colors {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 8px;
	gap: 2px;
}

.p-colors__item {
	width: 24px;
	height: 24px;
	border: 2px solid #f1f6fa;
	transition: border-color .3s ease;
	border-radius: 6px;
	overflow: hidden;
	cursor: auto;
}

.p-colors__item img {
	width: 100%;
	height: 100%;
}

.p-colors__item-btn {
	background: 0 0;
	cursor: auto;
	margin-left: 6px;
	font-size: 12px;
	font-weight: 500;
}

.p-card__tags {
	display: flex;
	align-items: center;
	overflow-x: auto;
	scrollbar-width: none;
	margin-top: auto;
	gap: 6px;
}

.p-card__tag {
	flex-shrink: 0;
	height: 18px;
	display: flex;
	align-items: center;
	background-color: #f0f0f6;
	border-radius: 4px;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: -.48px;
	-webkit-user-select: none;
	user-select: none;
	padding: 2.5px 6px;
	font-weight: 500;
	gap: 4px;
}

.call-banner {
	position: relative;
	margin-top: 20px;
	padding-block: 20px 50px;
	content-visibility: auto;
	contain-intrinsic-size: 1000px;
}

.call-banner__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	--svg: url("/local/svg/back.svg");
	mask-image: var(--svg);
	--texture-lines: 2;
	--mask-size: calc(570px / var(--texture-lines));
	mask-size: var(--mask-size);
	background: linear-gradient(0deg, #dde1e7b0 -10%, #fafafa);
}

.call-banner .container {
	position: relative;
}

.call-banner__wrap {
	position: relative;
	display: flex;
	padding: 30px 40px;
	box-shadow: var(--card-shadow);
	backdrop-filter: blur(3px);
	border-radius: 26px;
	overflow: hidden;
}

@media (max-width: 760px) {
	.call-banner__wrap {
		padding: 20px 30px;
	}
}

.call-banner__main {
	display: flex;
	flex-direction: column;
	max-width: 640px;
	gap: 12px;
}

.call-banner__title {
	font-size: 27px;
	line-height: 32px;
	letter-spacing: -.27px;
	font-weight: 600;
}

@media (min-width: 1024px) {
	.call-banner__title {
		font-size: 39px;
		line-height: 40px;
	}
}

.call-banner__pic-wrap {
	flex-grow: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

@media(max-width: 1024px) {
	.call-banner__pic-wrap {
		display: none;
	}
}

.call-banner__meta {
	display: none;
	max-width: 206px;
	margin-left: auto;
	text-align: right;
	font-size: 13px;
	flex-direction: column;
	justify-content: space-between;
}

@media (min-width:900px) and (max-width:1024px) {
	.call-banner__meta {
		display: flex;
	}
}

@media(min-width: 1280px) {
	.call-banner__meta {
		display: flex;
	}
}

.call-banner__descr span {
	color: var(--ozone);
}

.call-banner__tel-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.call-banner__tel {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
}

.call-banner__tel a {
	font-size: 40px;
	font-weight: 700;
	text-wrap: nowrap;
}

@media (max-width: 760px) {
	.call-banner__tel a {
		font-size: calc(.05 * 100vw + 10px);
	}
}

.call-banner__tel p {
	max-width: 160px;
	width: 140px;
	font-size: 13px;
	line-height: 1.55;
	color: var(--txt-gray);
	white-space: nowrap;
}

@media(max-width: 560px) {
	.call-banner__tel p {
		display: none;
	}
}

@media (min-width: 1024px) {
	.call-banner__tel {
		flex-direction: row;
		align-items: center;
	}
}

.call-banner__form .agree {
	margin-top: 24px;
}

.call-banner__form .agree .checkbox__label {
	font-size: 12px;
	font-weight: 400;
}

.call-banner__pic {
	position: absolute;
	bottom: 0;
	max-height: calc(100% - 20px);
}

.call-banner__map {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 6px;
	border-radius: 18px;
	overflow: hidden;
	font-weight: 600;
	box-shadow: 3px 4px 5px rgb(125 141 151 / .15);
}

.map__txt {
	position: absolute;
	top: 6px;
	left: 6px;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 500;
	border-radius: 8px;
	background: rgb(255 255 255 / 60%);
	backdrop-filter: blur(4px);
}

.descr-wrap {
	overflow: hidden;
	transition: max-height .3s ease;
	margin-top: 10px;
	max-width: 75%;
	margin-bottom: 12px;
	position: relative;
	text-wrap: pretty;
}

@media(max-width: 1024px) {
	.descr-wrap {
		max-width: fit-content;
	}
}

.descr-content {
	display: inline-block;
	line-height: 1;
	vertical-align: super;
	font-size: 14px;
	line-height: 1.4em;
	color: #031236;
	font-weight: 350;
}

@media(max-width: 768px) {
	.descr-content {
		font-size: 13px;
	}
}

.descr__more {
	display: none;
	cursor: pointer;
	position: absolute;
	bottom: 3px;
	right: 8px;
	padding-left: 18px;
	padding-right: 12px;
	color: #247ce0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0, #fafafa 10%);
	transition: color .3s ease;
	white-space: nowrap;
	font-size: 14px;
	line-height: 24px;
}

.quiz-pops {
	display: none;
	position: fixed;
	opacity: 0;
	left: 0;
	bottom: 0;
	z-index: 12;
	height: 50px;
	background-color: #6161af;
	box-shadow: 0 1px 2px rgba(32, 32, 149, .1), 0 2px 5px rgba(32, 32, 149, .15);
	max-width: 450px;
	margin: 15px;
	border-radius: 8px;
	transform: translateY(70px) scale(.96);
	transition: transform .4s cubic-bezier(.16, .84, .4, 1), opacity .4s ease, background-color .2s ease;
}

.quiz-pops__body {
	display: flex;
	align-items: center;
	height: 100%;
	color: var(--white);
	padding-inline: 8px 22px;
	gap: 14px;
}

.device-no-touch .quiz-pops__body:hover {
	color: var(--white);
}

.device-no-touch .quiz-pops:has(.quiz-pops__body:hover) {
	background-color: #4b4b94;
	transition: background-color .2s ease-out;
}

.quiz-pops__content {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
}

.quiz-pops__content-text {
	font-size: 13px;
}

.quiz-pops__content-title {
	font-size: 12px;
	opacity: .7;
}

.quiz-pops__close {
	position: absolute;
	top: -4px;
	right: -4px;
	width: 22px;
	height: 22px;
	background: #9292cb;
	color: #464695;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 2px rgba(32, 32, 149, .1), 0 2px 5px rgba(32, 32, 149, .15);
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
}

.device-no-touch .quiz-pops__close:hover {
	background: #7a7ab8;
	color: #ffffff;
	transition: background-color .2s ease-out, color .2s ease-out;
}

.quiz-pops__close:active {
	transform: translate3d(0, 2px, 0) scale3d(0.99, 0.99, 1);
	transition: transform .1s ease-out;
}

.quiz-pops.quiz-pops--visible {
	display: flex;
	opacity: 1;
	transform: translateY(0) scale(1);
}

@keyframes quizPopsEnter {
	0% {
		transform: translateY(70px) scale(.96);
		opacity: 0;
	}

	60% {
		transform: translateY(-6px) scale(1.02);
		opacity: 1;
	}

	100% {
		transform: translateY(0) scale(1);
		opacity: 1;
	}
}

.quiz-pops--enter {
	animation: quizPopsEnter 600ms cubic-bezier(.16, .84, .4, 1) both;
}

@media (prefers-reduced-motion: reduce) {
	.quiz-pops {
		transition: none !important;
		transform: none !important;
	}

	.quiz-pops--enter {
		animation: none !important;
	}
}

/* !!TEMP */

:root {
	--popup-z-index: 1000;
	--popup-duration: 0.3s;
	--popup-overlay-bg: rgba(0, 0, 0, 0.6);
}

.popup-manager__overlay {
	position: fixed;
	inset: 0;
	background-color: var(--popup-overlay-bg);
	z-index: var(--popup-z-index);
	opacity: 0;
	transition: opacity var(--popup-duration) ease;
}

.popup-manager__container {
	position: fixed;
	inset: 0;
	z-index: calc(var(--popup-z-index) + 1);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity var(--popup-duration) ease, transform var(--popup-duration) ease;
}

.popup-manager__window {
	position: relative;
	width: 100%;
	max-width: 600px;
	max-height: 90vh;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
}

.popup-manager__header {
	padding: 15px 50px 15px 20px;
	border-bottom: 1px solid #eee;
	font-size: 1.2em;
	font-weight: 600;
	flex-shrink: 0;
}

.popup-manager__content {
	padding: 20px;
	overflow-y: auto;
	flex-grow: 1;
}

.popup-manager__close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	/* ... стили для иконки крестика ... */
}

/* Состояния */
.popup-manager--visible .popup-manager__overlay,
.popup-manager--visible .popup-manager__container {
	opacity: 1;
	transform: scale(1);
}

.popup-manager__content--loading {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 150px;
	/* ... стили для спиннера ... */
}

/* Блокировка скролла на body */
.body-scroll-lock {
	overflow: hidden;
}

/* Container */
.notice-container {
	position: fixed;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
	max-width: 100%;
	width: 400px;
	pointer-events: none;
	/* Чтобы клики проходили сквозь контейнер */
}

.notice-container--top-right {
	top: 0;
	right: 0;
}

.notice-container--top-left {
	top: 0;
	left: 0;
}

.notice-container--bottom-right {
	bottom: 0;
	right: 0;
	flex-direction: column-reverse;
}

.notice-container--bottom-left {
	bottom: 0;
	left: 0;
	flex-direction: column-reverse;
}

/* Item */
.notice-item {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	padding: 16px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	pointer-events: auto;
	/* Возвращаем клики */
	transform: translateX(100%);
	/* Начальное состояние для анимации справа */
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border-left: 4px solid transparent;
}

/* States */
.notice-item.is-visible {
	transform: translateX(0);
	opacity: 1;
}

.notice-item.is-hiding {
	opacity: 0;
	transform: scale(0.9);
	margin-top: -50px;
	/* Эффект схлопывания */
}

/* Types */
.notice-item--success {
	border-left-color: #22c55e;
}

.notice-item--success .notice-item__icon {
	color: #22c55e;
}

.notice-item--error {
	border-left-color: #ef4444;
}

.notice-item--error .notice-item__icon {
	color: #ef4444;
}

.notice-item--info {
	border-left-color: #3b82f6;
}

.notice-item--info .notice-item__icon {
	color: #3b82f6;
}

/* Elements */
.notice-item__icon {
	flex-shrink: 0;
	display: flex;
	margin-top: 2px;
}

.notice-item__content {
	flex-grow: 1;
	font-size: 14px;
	line-height: 1.4;
	color: #333;
}

.notice-item__title {
	font-weight: 600;
	margin-bottom: 4px;
}

.notice-item__close {
	background: none;
	border: none;
	cursor: pointer;
	color: #999;
	padding: 0;
	margin-left: auto;
	transition: color 0.2s;
}

.notice-item__close:hover {
	color: #333;
}

ul.catalog-sections li a.catalog-sections-card {
	height: 100%;
}

.page-wrapper table {
	border-collapse: collapse;
}

.page-wrapper table td {
	border: 1px solid var(--dark);
	padding: 5px;
}

.page-header-burger__nav .page-header-nav__item {
	width: fit-content;
	margin: auto;
}

@media (min-width: 1024px) {
	.page-header-burger__nav .page-header-nav__item span {
		text-wrap: nowrap;
	}

	.page-header-burger__nav .page-header-nav__item {
		margin: 0;
	}
}

@media (min-width: 1440px) {
	.page-header-burger__nav .page-header-nav__item span {
		text-wrap: auto;
	}
}