﻿@font-face {
    font-family: 'Helvetica World';
    src: url('../fonts/Helvetica/HelveticaWorld-Regular.woff2') format('woff2'),
		url('../fonts/Helvetica/HelveticaWorld-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica World';
    src: url('../fonts/Helvetica/HelveticaWorld-Bold.woff2') format('woff2'),
        url('../fonts/Helvetica/HelveticaWorld-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html {
	color: var(--text-color, #000);
	font-family: 'Helvetica World', sans-serif;
	font-size: .625rem;
	line-height: 1.5;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	scroll-padding-top: 70px;
}

html:focus-within {
	scroll-behavior: smooth;
}

::-moz-selection {
	background: #e5e5e5;
	text-shadow: none;
}

::selection {
	background: #e5e5e5;
	text-shadow: none;
}

input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

input[type="date"]::-webkit-date-and-time-value {
	text-align: left;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

/*	Если делать фикс шапку через pos: sticky, то нужно задавать min-height 100vh.
	Высота нужна, если нам нужно на ПК прибить книзу footer с помощью flex для коротких стр. */
html, body {
	min-height: 100vh;
}

body {
	display: flex;
	flex-direction: column;
	font-size: 1.2rem;
	letter-spacing: .05em;
}

body, input, textarea {
	background-color: var(--body-bg, #fff);
	-webkit-text-size-adjust: none;
			text-size-adjust: none;
}

button, input, textarea, select {
	color: inherit;
	border: 0;
	border-radius: 0;
	background-color: transparent;
	line-height: inherit;
	letter-spacing: .05em;
}

button:not(:disabled),
label,
summary,
[role="button"],
[role="link"],
[class*="btn"] {
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

input,
textarea,
button,
button:focus,
[type="button"] {
	font-family: inherit;
-webkit-appearance: none;
   -moz-appearance: none;
	    appearance: none;
	       outline: none;
}
	
/* @media screen and (-webkit-min-device-pixel-ratio:0) and (max-width: 576px) {  */
	/* select, */
	/* textarea, */
	/* input { */
		/* font-size: 16px !important; */
	/* } */
/* } */

:invalid {
	box-shadow: none;
}

summary, select {outline: none;}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.row {
	--bs-gutter-x: 3rem;
}

h1, h2, h3, .h1 {
	font-size: 1em;
	font-weight: normal;
	text-transform: uppercase;
}

small, .small {
    font-size: 80%;
}

a, img, button, [class*="btn"], [role="button"], [role="link"], .p-link, .o-hover, .product-sizes .size span, .block-radio {
	transition: all .15s ease;
}

a {
	color: var(--link-color);
	text-decoration: none;
	text-underline-offset: .3em;
}

.scroller {
	overflow-x: scroll;
	overflow-y: hidden;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	user-select: none;
}

.scroller::-webkit-scrollbar {
	display: none;
}

.scroller-fade::after {
	content: "";
	position: absolute;
	background: linear-gradient(to left, var(--body-bg, #fff) 15%, rgba(255,255,255, 0));
	width: 60px;
	top: 0;
	right: 0;
	bottom: 0;
	transition: all .15s ease;
	pointer-events: none;
	z-index: 1;
}

.scroller-fade.fade-off::after {
	visibility: hidden;
	opacity: 0;
}

.sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1;
}

.p-link {
	color: inherit;
	cursor: pointer;
	text-decoration: none;
	border-bottom: 1px dotted;
}

.u-line,
.active-link {
	text-decoration: underline;
	text-underline-offset: .3em;
}

.stretched-link::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}

@media (any-hover: hover) {
	a:hover:not(.product-card):not(.btn),
	.btn-link:hover,
	[role="link"]:hover {
		color: var(--link-color-hover, #777);
		border-color: var(--border-color-hover, #ccc);
	}
	
	.o-hover:hover {
		opacity: .6;
	}
}

[class*="border"] {
	--border-color: #000;
}

.border-gray {
	--border-color: #acacac;
}

.border,
.border-y,
.border-top {
	border-top: 1px solid var(--border-color);
}

.border,
.border-y,
.border-bottom {
	border-bottom: 1px solid var(--border-color);
}

.border,
.border-x,
.border-left {
	border-left: 1px solid var(--border-color);
}

.border,
.border-x,
.border-right {
	border-right: 1px solid var(--border-color);
}

.object-fit {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.gap-1 {
	gap: .25rem;
}

.gap-2 {
	gap: .5rem;
}

.gap-3 {
	gap: 1rem;
}

.gap-4 {
	gap: 1.5rem;
}

.gap-5 {
	gap: 2rem;
}

.gap-6 {
	gap: 3rem;
}

.gap-7 {
	gap: 4rem;
}

.c-black {
	color: #000;
}

.c-white {
	--btn-color: #fff;
	color: #fff;
}

.c-gray {
	color: #acacac;
}

.c-green {
	color: #46af19;
}

.c-red {
	color: #c62822;
}

.c-brown {
	color: #d2873b;
}

.bg-black {
	background-color: #000;
}

.bg-white {
	background-color: #fff;
}

.bg-gray {
	background-color: #f4f4f4;
}

.bg-gray-dark {
	background-color: #e5e5e5;
}

.text-crop-1 {
	display: -webkit-box !important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 1.8rem;
}

.fs-10 {
	font-size: 1rem;
}

.fs-12 {
	font-size: 1.2rem;
}

.fs-14 {
	font-size: 1.4rem;
}

b,
strong,
.fw-600 {
	font-weight: 600;
}

.lh-1 {
	line-height: 1;
}

.lh-1_25 {
	line-height: 1.25;
}

.lh-1_5 {
	line-height: 1.5;
}

.lh-1_65 {
	line-height: 1.65;
}

.o-10 {
	opacity: .1;
}

.o-15 {
	opacity: .15;
}

.o-25 {
	opacity: .25;
}

.o-5 {
	opacity: .5;
}

.o-75 {
	opacity: .75;
}

.o-8 {
	opacity: .8;
}

.my-n3 {
	margin-top: -1rem;
	margin-bottom: -1rem;
}

.m-n3 {
	margin: -1rem;
}

@media (max-width: 575px) {
	.mx-n15 {
		margin-left: calc(-.5 * var(--bs-gutter-x));
		margin-right: calc(-.5 * var(--bs-gutter-x));
	}

	.tac-sm {
		text-align: center;
	}
}

@media (max-width: 767px) {
	.tac-md {
		text-align: center;
	}
}

.mh-50vh {
	min-height: 50vh;
}

.mh-75vh {
	min-height: 75vh;
}

.mw-360 {
	max-width: 360px;
}

.mw-400 {
	max-width: 400px;
}

.mw-440 {
	max-width: 440px;
}

.mw-480 {
	max-width: 480px;
}

.mw-500 {
	max-width: 500px;
}

.mw-540 {
	max-width: 540px;
}

.mw-600 {
	max-width: 600px;
}

.mw-640 {
	max-width: 640px;
}

.mw-700 {
	max-width: 700px;
}

.mw-800 {
	max-width: 800px;
}

.m-6,
.mt-6, 
.my-6 {
	margin-top: 4rem;
}

.m-6,
.mb-6, 
.my-6 {
	margin-bottom: 4rem;
}

.m-6,
.ms-6, 
.mx-6 {
	margin-left: 4rem;
}

.m-6,
.me-6, 
.mx-6 {
	margin-right: 4rem;
}

.mt-7, 
.my-7 {
	margin-top: 6rem;
}

.mb-7, 
.my-7 {
	margin-bottom: 6rem;
}

.mt-10, 
.my-10 {
	margin-top: 10rem;
}

.mb-10, 
.my-10 {
	margin-bottom: 10rem;
}

.p-6,
.pt-6, 
.py-6 {
	padding-top: 4rem;
}

.p-6,
.pb-6, 
.py-6 {
	padding-bottom: 4rem;
}

.p-6,
.ps-6, 
.px-6 {
	padding-left: 4rem;
}

.p-6,
.pe-6, 
.px-6 {
	padding-right: 4rem;
}

.no-gutters > .col, 
.no-gutters > [class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}

.gx-6 {
	--bs-gutter-x: 4rem;
}

.gx-7 {
	--bs-gutter-x: 6rem;
}

/* кнопки */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: var(--justify-content);
	gap: 8px;
	color: var(--btn-color, #000);
	background-color: var(--btn-bg, transparent);
	white-space: nowrap;
	line-height: 1em;
	text-transform: uppercase;
	z-index: 5;
	transition: all .15s ease-in-out;
	text-underline-offset: .3em;
	touch-action: manipulation;
}

.btn-primary,
.btn-primary-gray,
.btn-secondary,
.btn-blank {
	--justify-content: center;
	border: 1px solid var(--btn-border-color, var(--btn-bg, transparent));
	padding: 13px 15px;
}

.btn-primary {
	--btn-color: #fff;
	--btn-bg: #000;
	--btn-hover-bg: #2b2b2b;
}

.btn-primary-gray {
	--btn-bg: #f4f4f4;
	--btn-hover-color: #777;
}

.btn-secondary {
	--btn-border-color: #000;
	--btn-hover-color: #777;
	--btn-hover-border-color: #777;
}

.btn-blank {
	--btn-hover-color: #777;
}

.btn-blank::before,
.btn-blank::after {
	transform: translateY(-1px);
}

.btn-blank::before {
	content: "["
}

.btn-blank::after {
	content: "]"
}

.btn-arrow::after {
	content: "";
	border-style: solid;
	border-width: 4px 0 4px 5px;
	border-color: transparent transparent transparent currentColor;
	width: 0;
	height: 0;
	margin-left: auto;
}

button:disabled,
.btn-disabled,
.btn-loading {
	cursor: default;
	position: relative;
	pointer-events: none;
}

button:disabled,
.btn-disabled {
	color: #acacac;
}

.btn-loading {
	color: transparent;
}

.btn-loading::after {
	content: "";
	position: absolute;
	background: url(../img/loader.svg) no-repeat center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

.btn-loading::before {
	display: none;
}

.tab-pane + .tab-pane {
	display: none;
}

.btn-close::after,
.btn-delete::after {
	content: "X";
}

.btn-100,
.btn-m100 {
	width: 100%;
}

@media (min-width: 576px) {
	.btn-m100 {
		width: auto;
	}
}

@media (any-hover: hover) {
	.btn-primary:hover:not(:disabled),
	.btn-primary-gray:hover:not(:disabled),
	.btn-secondary:hover:not(:disabled),
	.btn-blank:hover:not(:disabled)	{
		color: var(--btn-hover-color, var(--btn-color));
		background-color: var(--btn-hover-bg, var(--btn-bg));
		border-color: var(--btn-hover-border-color, var(--btn-hover-bg, transparent));
	}
}

/* Custom select */	
.select-hidden {
	visibility: hidden;
}

.select {
	cursor: pointer;
	display: inline-block;
	position: relative;
	width: 100%;
	min-width: 105px;
	height: 40px;
}

.select-styled {
	position: absolute;
	border: 1px solid #000;
	background-color: transparent;
	padding: 0 15px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	line-height: 40px;
	user-select: none;
}

.select-styled::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 0L4 5L0 -3.49691e-07L8 0Z' fill='black'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	width: 8px;
	height: 5px;
	margin-top: -2px;
}

.select-styled.active::after {
	transform: rotate(180deg);
}

.select-options {
	display: none;
	position: absolute;
	background-color: #fff;
	border: 1px solid #000;
	top: calc(100% - 1px);
	left: 0;
	right: 0;
	padding: 10px 0;
	z-index: 999;
}

.select-options li {
	margin: 0;
	padding: 0 15px;
	line-height: 30px;
	transition: all .15s ease-in;
}

.select-options li:hover {
	background: #efefef;
}

.select-options li[rel="hide"] {
	display: none;
}

/* форма */
::placeholder {
	color: #acacac;
}

input[type="search"]::placeholder {
	text-transform: uppercase;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	display: none;
}

input[type="number"] {
	-moz-appearance: textfield;
}

.placeholder-hidden::placeholder,
.placeholder-hidden:not(.input-filled)::-webkit-datetime-edit,
.placeholder-hidden .datetime-input-box-wrapper {
	color: transparent !important;
	transition: all .2s ease;
}

.placeholder-hidden:focus::placeholder,
.placeholder-hidden:focus::-webkit-datetime-edit,
.placeholder-hidden .datetime-input-box-wrapper {
	color: #000;
}

.form-select {
	display: block;
	border: 0;
	border-bottom: 1px solid var(--text-color, #000);
	background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M8 0 4 5 0 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right center;
	height: calc(1.5em + .75rem + 2px);
	font-size: 1.4rem;
	letter-spacing: .06em;
 -webkit-appearance: none;
	-moz-appearance: none;
		 appearance: none;
}

.form-select.v2 {
	border: 1px solid var(--text-color, #000);
	background-position: right 15px center;
	height: 40px;
	font-size: 1.2rem;
	padding: 0 15px;
}

.form-select-mini {
	display: block;
	border: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M8 0 4 5 0 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 12px;
	letter-spacing: .07em;
 -webkit-appearance: none;
	-moz-appearance: none;
		 appearance: none;
}

.form-select-mini:disabled {
	opacity: .35;
}

.form-select-mini.select-error {
	color: #e12a1b;
	background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23e12a1b' d='M8 0 4 5 0 0z'/%3E%3C/svg%3E");
}

.form-select-mini.select-error option {
	color: #000;
}

.select-wrap .select-value {
	position: absolute;
	top: 50%;
	right: 28px;
	transform: translateY(-50%);
	pointer-events: none;
	user-select: none;
}

.select-wrap .select-value + .form-select {
	color: transparent;
}

.select-wrap .select-value + .form-select option {
	color: #000;
}

.select-wrap .select-label {
	position: absolute;
	top: 50%;
	right: 28px;
	transform: translateY(-50%);
	pointer-events: none;
	user-select: none;
}

.select-wrap .select-label.left {
	left: 15px;
}

.form-check {
	position: relative;
	display: block;
	padding-left: 1.25rem;
}

.form-check-inline {
	display: inline-flex;
	align-items: center;
	padding-left: 0;
	margin-right: .75rem;
}

.form-check-input {
	position: absolute;
	padding: 0;
	margin: 0;
	left: 0;
	top: 7px;
	width: 10px;
	height: 10px;
	border: none;
	opacity: 0;
	transform: translateY(-50%);
	z-index: 100;
}

.form-check-label {
	display: block;
	position: relative;
}

.form-check-label .radio {
	display: inline-block;
	border: 1px solid;
	width: 8px;
	height: 8px;
	margin-right: 10px;
	border-radius: 50%;
}

.form-check-label [type="radio"]:checked + span {
	background-color: #000;
	box-shadow: inset 0 0 0 1px #fff;
}

/* .block-radio { */
	/* border: 1px solid transparent; */
/* } */

/* .block-radio.selected { */
	/* border-color: #000; */
/* } */

.block-radio .radio-group {
	top: 12px;
	left: -5px;
	bottom: 0;
	width: 10px;
	height: 10px;
}

.form-check-label .checkbox {
	display: inline-block;
	border: 1px solid;
	width: 15px;
	height: 15px;
	margin-right: 10px;
	transform: translateY(2px);
}

.form-check-label [type="checkbox"]:checked + span {
	background: #000;
	box-shadow: 0 0 0 3px #fff inset;
}

/* v2 */
.pr.block-radio + .pr.block-radio {
	margin-top: -1px;
}

.radio-content {
	border: 1px solid var(--rc-border-color, transparent);
}

.block-radio [type="radio"]:checked + .radio-content {
	--rc-border-color: #000;
}

.block-radio [type="radio"]:checked + .radio-content .radio {
	background-color: #000;
	box-shadow: inset 0 0 0 1px #fff;
}

@media (any-hover: hover) {
	.radio-content:hover {
		border-color: inherit;
	}
}

.form-row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -5px;
	margin-left: -5px;
}

.form-row > .col, 
.form-row > [class*="col-"] {
	padding-right: 5px;
	padding-left: 5px;
}

.form-group {
	margin-bottom: 1rem;
}

/* input */
.form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem 0;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: .06em;
	background-color: transparent;
	background-clip: padding-box;
	border-bottom: 1px solid;
	transition: border-color .15s ease-in-out,
				box-shadow .15s ease-in-out;
}

.form-control::-webkit-date-and-time-value {
	text-align: left;
}

.input-disabled,
input:disabled,
input:read-only {
	-webkit-text-fill-color: #acacac;
	color: #acacac;
	opacity: 1;
	pointer-events: none;
	user-select: none;
}

textarea.form-control {
	height: auto;
}

.form-inline {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.form-inline .form-group {
	display: flex;
	flex: 0 0 auto;
	flex-flow: row wrap;
	align-items: center;
	margin-bottom: 0;
}

.form-inline label {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
}

.form-inline .form-control {
	display: inline-block;
	width: auto;
	vertical-align: middle;
}

.placeholder {
	position: absolute;
	font-size: 1rem;
	text-transform: uppercase;
	left: 0;
	top: 10px;
	pointer-events: none;
	transition: all .2s ease;
}

.form-control:focus + .placeholder,
/* .form-control:valid + .placeholder, */
.form-control.input-filled + .placeholder,
.form-control.input-error + .placeholder,
.placeholder-static + .placeholder {
	top: -12px;
}

@media (min-width: 992px) {
	input[type="date"] + .placeholder {
		top: -12px;
	}
}

.input-error,
.input-error + label,
.input-error:focus,
.form-error .form-control:invalid,
.form-error .form-control:invalid + label {
	color: #e12a1b;
	border-color: #e12a1b;
}

.error-msg {
	color: #e12a1b;
	font-size: 1rem;
	padding-top: 5px;
	top: 3px;
	pointer-events: none;
}

.input-error ~ .error-msg {
	display: block;
	animation: fade .25s;
}

.form-control ~ .btn.pa {
	font-size: 1rem;
	top: 6px;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.subscribe-form .subscribe-form-success {
	animation: fade 1s;
}

details summary {
	display: flex;
	align-items: center;
	list-style: none;
}

details summary::-webkit-details-marker {
	display: none;
}

details summary::before {
	content: "";
	width: 0;
	height: 0;
	position: relative;
	border-style: solid;
	border-width: 4px 0 4px 5px;
	border-color: transparent transparent transparent currentColor;
}

details[open] summary::before {
	top: 1px;
	transform: rotate(90deg);
}
/* ------------------------ */

main {
	flex-grow: 1;
	flex-shrink: 0;
	min-height: 100vh;
}

main:not(.order-page) {
	padding-top: 40px;
	padding-bottom: 75px;
}

@media (min-width: 992px) {
	main:not(.order-page) {
		padding-top: 50px;
	}
}

/* -- Шапка + Меню -- */
/* кнопка меню */
.header-hamburger {
	display: block;
	background-color: transparent;
	width: 12px;
	height: 11px;
	/* top: 0; */
	/* bottom: 0; */
	margin: auto;
}

.header-hamburger::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	margin: -10px;
}

.header-hamburger span {
	display: block;
	height: 1px;
	width: 100%;
	background-color: var(--text-color, #000);
	position: absolute;
	left: 0;
	transition: all .2s ease-in-out;
}

.header-hamburger span:first-child {
	top: 0;
}

.header-hamburger span:nth-child(2) {
	top: 50%;
	transition: none;
}

.header-hamburger span:last-child {
	top: 10px;
}

.header-hamburger.open span:first-child {
	transform: rotate(45deg);
	top: 5px;
}

.header-hamburger.open span:last-child {
	transform: rotate(-45deg);
	top: 5px;
}

.header-hamburger.open span:nth-child(2) {
	opacity: 0;
}

/* Меню ПК и Моб */
.menu-opened [data-search-btn] {
	visibility: hidden;
	opacity: 0;
}

/* десктоп меню */
.desktop-menu {
	position: fixed;
	background-color: var(--body-bg, #fff);
	border-right: 1px solid;
	width: 25vw;
	height: calc(100vh - 90px);
	top: 90px;
	left: -25vw;
	transition: transform .3s ease;
}

.desktop-menu.menu-container {
	z-index: 900;
}

.desktop-menu.menu-container.active {
	transform: translateX(25vw);
}

.desktop-menu.submenu-container {
	transform: translateX(-100%);
	z-index: 800;
}

.desktop-menu.submenu-container.active {
	transform: translateX(50vw);
}

.desktop-menu .btn-close {
	top: 10px;
	right: 15px;
	margin: -10px;
	padding: 10px;
}

.desktop-menu .btn-close.hidden {
	visibility: hidden;
	opacity: 0;
}

/* списки меню */
.menu-list:not(.mt-auto) {
	display: none;
}

.menu-list.active {
	display: block;
}

.menu-item {
	display: flex;
	align-items: center;
	height: 40px;
}

.menu-item button {
	width: 100%;
	height: 100%;
}

 /* тонер подложка */
.menu-overlay {
	background-color: rgba(0,0,0,.25);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 333;
	visibility: hidden;
	opacity: 0;
	transition: all .35s ease;
}

.menu-overlay.active {
	visibility: visible;
	opacity: 1;
}

/* мобильное меню */
.mobile-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	overflow: hidden;
	transition: transform .3s ease;
	z-index: 1100;
}

.mobile-menu.active {
	transform: translateX(100%);
}

.mobile-menu-container, 
.mobile-submenu-container {
	position: absolute;
	background-color: var(--body-bg, #fff);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: transform .3s ease;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.submenu-opened .mobile-menu-container {
	transform: translateX(-100%);
}

/* если ниже раскоментировать, а выше закоментировать, то шапка из меню будет статична для подменю */
/* .mobile-menu-container {
	transform: translateX(0);
}*/

.mobile-submenu-container {
	-webkit-transform: translateZ(0);
	transform: translateX(100%);
	will-change: transform; 
}

.mobile-submenu-container.active {
	transform: translateX(0);
}

.mobile-menu-header {
	position: sticky;
	top: 0;
	height: 40px;
	z-index: 10;
}

/* подменю */
.mobile-submenu-title {
	position: absolute;
	margin: auto;
	width: max-content;
	left: 0;
	right: 0;
}

.mobile-submenu-content summary {
	height: 40px;
}

.mobile-submenu-item {
	display: flex;
	align-items: center;
	height: 37px;
	padding: 0 10px;
}

.mobile-submenu-content .mobile-submenu-item:last-child {
	margin-bottom: 5px;
}

@media (max-width: 991px) {
	.main-nav .nav-btn,
	.menu-container,
	.submenu-container {
		display: none;
	}
}

@media (min-width: 992px) {
	.mobile-menu {
		display: none;
	}
}

/* хедер */
.header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
}

.header-inner {
	background-color: var(--body-bg, #fff);
	height: 40px;
	z-index: 555;
}

.header-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 7;
}

.header-logo .logo {
	--link-color-hover: #000;
	width: 174px;
}

@media (any-hover: hover) {
	.header-nav-left .btn:hover:not(.header-search) {
		text-decoration: underline;
	}
}

/* поиск всплывающий */
.header-search-mask {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	min-height: 40px;
	visibility: hidden;
	opacity: 0;
	transition: all .15s ease;
	z-index: 10;
}

.header .search-wrap {
	position: absolute;
	left: 0;
	right: 0;
	visibility: hidden;
	opacity: 0;
	/* transform: translateY(-63px); */
	transition: all .15s ease;
	z-index: 1000;
}

.header .search-wrap.show,
.header .search-wrap.active {
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
}

.search-form,
.search-tags {
	height: 40px;
}

.search-form .btn-delete {
	visibility: hidden;
	opacity: 0;
}

.search-form .search-input:valid ~ .btn-delete {
	visibility: visible;
	opacity: 1;
}

.header .search-wrap .search-suggest {
	position: relative;
	max-height: calc(100vh - 120px);
	visibility: hidden;
	opacity: 0;
	display: none;
	z-index: 1000;
}

.header .search-wrap .search-suggest .custom-scroll {
	max-height: calc(100vh - 120px);
}

.header .search-wrap .search-suggest.show {
	display: block;
}

.header .search-wrap .search-suggest .title,
.header .search-wrap .search-categories .list-item {
	line-height: 40px;
}

.show {
	visibility: visible !important;
	opacity: 1 !important;
}

.header-notice {
	min-height: 40px;
}

.header-notice a {
	color: #fff;
	text-decoration: underline;
}

.header-notice .btn-close {
	right: 0;
}

@media (min-width: 992px) {
	.header-inner {
		height: 50px;
	}

	.header-logo .logo {
		width: 242px;
	}
	
	.header-inner [class*="header-nav"],
	.header-search-mask	> * {
		transform: translateY(-10px);
	}
	
	.header-search-mask {
		min-height: 50px;
		z-index: 5;
	}

	.header .search-wrap .search-suggest .custom-scroll {
		max-height: calc(100vh - 130px);
	}
}
/* ---- */

/* -- Главная -- */
/* ---- */

/* -- Каталог -- */
/* стики тулбар */
.header-toolbar {
	height: 40px;
}

.header-toolbar .exit {
	right: 0;
}

.header-toolbar {
	color: var(--text-color);
	background-color: var(--body-bg, #fff);
	position: -webkit-sticky;
	position: sticky;
	top: 40px;
	z-index: 20;
}

@media (min-width: 992px) {
	.header-toolbar {
		top: 50px;
	}
}

.product-card {
	--swiper-navigation-size: 60px;
	user-select: none;
}

.product-card .swiper-slide {
	height: auto;
}

.product-card .product-images {
	background-color: #f7f7f7;
}

.product-card .product-images img {
	aspect-ratio: 3 / 4;
}

.product-card img {
	/* aspect-ratio: 19 / 25; */
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-card .name {
	line-height: 1.3;
	/* display: -webkit-box; */
	/* -webkit-line-clamp: 1; */
	/* -webkit-box-orient: vertical; */
	/* overflow: hidden; */
	margin-bottom: 3px;
}

.product-card .badge {
	letter-spacing: .07em;
}

.product-card .product-colors {
	display: flex;
	align-items: center;
	gap: 4px;
	height: 17px;
}

.product-card .product-colors .color {
	background-color: var(--product-color);
	width: var(--color-size, 7px);
	height: var(--color-size, 7px);
}

.product-card .product-colors .color[style*="--product-color: #ffffff"] {
	border: 1px solid;
}

.product-card .product-colors .color-more {
	transform: translateY(-2px);
}

.btn-product-fav {
	top: 0;
	right: 0;
	width: 40px;
	height: 48px;
	z-index: 10;
}

.btn-product-fav.active .ico {
	fill: #000;
}

.product-card button.slider-controls {
	visibility: hidden;
	opacity: 0;
}

.product-card + .product-size-select {
	margin-top: -7px;
}

@media (any-hover: hover) {	
	.product-card:hover button.slider-controls {
		visibility: visible;
		opacity: 1;
	}

	.btn-product-fav:hover .ico {
		fill: #000;
	}
}

.products-wrap > .col-4 {
	width: 33.33333333% !important;
}

@media (min-width: 992px) {
	.products-wrap .col-lg-6 {
		width: 50% !important;
	}
	
	.products-wrap > .col-lg-4 {
		width: 33.33333333% !important;
	}
}

.content-loading .loading-msg {
	color: var(--text-color);
	animation: blink .75s infinite both;
	user-select: none;
}

@keyframes blink {
	0% {
		opacity: .2
	}

	20% {
		opacity: 1
	}

	to {
		opacity: .2
	}
}
/* ---- */

/* -- Стр. товара -- */
/* слайдер фото товаров */
.product-page .swiper.product-images .swiper-pagination-fraction {
	--swiper-pagination-bottom: 10px;
	text-align: left;
	left: 15px;
}

.product-page .sticky-fav-wrap {
	right: 0; 
	bottom: 0; 
	top: 0;
}

.product-page .product-images img {
	width: 100%;
}

.product-page .product-images-wrap a {
	cursor: zoom-in;
}

.product-page .badge {
	letter-spacing: .07em;
}

/* цвета */
.product-page .product-info .product-colors .color,
.product-page .product-info .product-colors .btn-show-colors {
	color: var(--btn-color, #000);
	background-color: var(--btn-bg, #f4f4f4);
	width: 60px;
	height: 80px;
	margin-top: -1px;
	margin-left: -1px;
	/* height: 80px; */
	/* flex: 0 0 calc(100% / 6); */
}

.product-page .product-info .product-colors .color.selected {
	--border-color: #000;
}

.product-page .product-info .product-colors button:hover::before,
.product-page .product-info .product-colors .color:hover::before,
.product-page .product-info .product-colors .color.selected::before {
	content: "";
	position: absolute;
	/* box-shadow: inset 0 0 0 1px #000; */
	border: 1px solid var(--border-color);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.product-page .product-info .product-colors .btn-show-colors {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}

/* скрытие цветов */
@media (max-width: 767px) {
	.product-colors .colors-list .color:nth-child(n+6) {
		display: none;
	}
}

@media (min-width: 768px) {
	.product-colors .colors-list .color:nth-child(n+7) {
		display: none;
	}
}

/* размеры */
.product-sizes .size span {
	text-underline-offset: .3em;
}

.product-sizes .size::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	margin: -8px;
}

.product-sizes .size.disabled {
	color: #acacac;
}

.product-sizes .size input[type="radio"]:checked + span {
	text-decoration: underline;
}

.product-sizes .size.disabled input[type="radio"]:checked + span {
	color: var(--text-color, #000);
}

@media (any-hover: hover) {
	.product-sizes .size:hover span {
		color: var(--text-color, #000);
		text-decoration: underline;
	}
}

.product-description p + p,
.store-info p + p {
	margin-top: 2rem;
}

.product-description a:not([class]),
.store-info a:not([class]) {
	text-decoration: underline;
}

.side-modal .product-description ul li::before,
.side-modal .product-care .care-row div:first-child::before {
	content: "·";
	margin-right: 10px;
}

.side-modal .product-care .care-row {
	height: 40px;
}

/* акардеон общий */
/* +- ico */
.accordion .collapse-btn::before {
	content: "";
	display: block;
	position: absolute;
	border-top: 1px solid #000;
	width: 11px;
	height: 1px;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	transition: all .1s ease;
}

.accordion .collapse-btn::after {
	content: "";
	display: block;
	position: absolute;
	border-left: 1px solid #000;
	width: 1px;
	height: 11px;
	top: 0;
	bottom: 0;
	right: 5px;
	margin: auto;
	transition: all .25s ease;
}

.accordion .collapse-btn.active::before {
	opacity: 0;
}

.accordion .collapse-btn.active::after {
	transform: rotate(-90deg);
}

@keyframes fade {
	0% {opacity:0}
	100% {opacity:1}
}

.collapse.active + .collapse-content {
	animation: fade 1s;
}

.old-price {
	text-decoration: line-through;
}

.hidden-text {
	border: 0;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

@media (any-hover: hover) {
	.product-page .product-info .product-colors button:hover::before,
	.product-page .product-info .product-colors .color:hover::before {
		--border-color: #000;
	}
}

@media (min-width: 992px) {
	.product-page .sticky-fav-wrap .btn-product-fav {
		position: sticky;
		top: 50px;
	}
}

/* -- Избранное -- */
.favorites-page .login-buttons {
	margin-top: 100px;
	margin-bottom: 70px;
}

@media (min-width: 992px) {
	.favorites-page .login-buttons {
		margin-top: 90px;
	}
}

/* -- Ооформление заказа -- */
.order-page .info-bar {
	min-height: 40px;
}

.order-page .step-2 .step-content,
.order-page .step-3 .step-content {
	margin-top: 85px;
	margin-bottom: 100px;
}

@media (min-width: 992px) {
	.order-page .info-bar {
		transform: translateY(-5px);
	}
	
	.order-page .order-left {
		border-right: 1px solid;
	}
	
	.order-page .order-left .step-3 {
		border-bottom: none;
	}
}

/* -- Личный кабинет -- */
.lk-main-page .userdata-form,
.lk-addressbook-page .address-wrap {
	margin-top: 100px;
}

.lk-bonus-page .bonus-wrap,
.lk-orders-page .orders-wrap,
.lk-orders-detail-page .order-wrap {
	margin-top: 50px;
}

.lk-orders-page .orders-wrap .orders-item + .orders-item {
	margin-top: 100px;
}

.lk-bonus-page .history-list {
	max-height: 50vh;
}

@media (max-width: 830px) {
	.lk-orders-page .orders-wrap .orders-item .items-photo {
		margin-left: calc(-.5 * var(--bs-gutter-x));
		margin-right: calc(-.5 * var(--bs-gutter-x));
	}
}

@media (max-width: 510px) {
	.lk-orders-detail-page .order-wrap .order-item {
		margin-left: calc(-.5 * var(--bs-gutter-x));
	}	
}

@media (min-width: 992px) {
	.lk-main-page .userdata-form,
	.lk-addressbook-page .address-wrap {
		margin-top: 90px;
	}
	
	.lk-bonus-page .bonus-wrap,
	.lk-orders-page .orders-wrap,
	.lk-orders-detail-page .order-wrap {
		margin-top: 40px;
	}
}

/* -- Список магазинов -- */
.shops-pages .shop-item + .shop-item {
	margin-top: 60px;
}

/* -- Блог -- */
.blog-post-page .blog-content {
	margin-top: 90px;
	margin-bottom: 90px;
}

.blog-images-slider [class*="swiper-button-"] {
	--swiper-navigation-size: 0;
	position: relative;
	height: 0;
}

.blog-images-slider .swiper-slide-count {
	width: auto;
}

/* -- Стат. стр. -- */
.static-page .page-title,
.title-margin {
	margin-top: 130px;
	margin-bottom: 120px;
}

.static-page .page-subtitle {
	margin-top: 120px;
	margin-bottom: 60px;
}

.static-page h2:not(:first-child),
.static-page h3 {
	margin-top: 1.5rem;
}

.static-page a:not([class]) {
	text-decoration: underline;
	text-underline-offset: .3em;
}

.static-page p:not(:last-child),
.static-page ol:not(:last-child),
.static-page ul:not(:last-child) {
	margin-bottom: 2rem;
}

.static-page p + ol,
.static-page p + ul {
	margin-top: -2rem;
}

.static-page small,
.static-page .small {
	font-size: 1rem;
}

.static-page ol li {
	list-style: numeric;
	list-style-position: inside;
}

.ul-styled {
	padding-left: 12px;
}

.ul-styled li::before {
	content: "·";
	color: #000;
	display: inline-block;
	width: 12px;
	margin-left: -12px;
}

@media (max-width: 992px) {
	.static-page .page-title,
	.title-margin {
		margin-top: 120px;
	}
}

/* -- Футер -- */
.footer {
	border-top: 1px solid;
}

.footer .bottom .col-6 {
	border-bottom: 1px solid;
}

/* форма подписка футер */
.subscribe-form-wrap {
	max-width: 46rem;
}

@media (max-width: 767px) {
	.details:not(.open) .content {
		display: none;
	}
	
	.details .summary::before {
		content: "";
		width: 0;
		height: 0;
		position: relative;
		border-style: solid;
		border-width: 4px 0 4px 5px;
		border-color: transparent transparent transparent #000;
	}
	
	.details.open .summary::before {
		top: 1px;
		transform: rotate(90deg);
	}
	
	.details .content {
		margin-left: 10px;
	}
}

@media (min-width: 576px) {
	.subscribe-form-wrap .subscribe-form form {
		max-width: 410px;
	}
}

@media (min-width: 992px) {
	.footer .bottom {
		border-top: 1px solid;
	}

	.footer .bottom .col-6 {
		border-bottom: 0;
	}
}

@media (max-height: 600px) {
	.availability-modal .cart-item {
		display: none !important;
	}
}

/* ------------------------------------------------------------ */
/* -- Sliders -- */
/* глобальные настройки слайдера */
.swiper {
	--swiper-theme-color: #000;
	--swiper-navigation-sides-offset: 0;
	--swiper-pagination-bottom: 7px;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
	outline: 0;
}

.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
	content: "";
	width: 0;
	height: 0;
	position: relative;
	border-style: solid;
	border-width: 4px 0 4px 5px;
	border-color: transparent transparent transparent #000;
}

.swiper .swiper-button-prev::after {
	transform: rotate(180deg);
}

.swiper .swiper-pagination-bullet {
	--swiper-pagination-bullet-inactive-color: #e0e0e0;
	--swiper-pagination-bullet-size: 6px;
	--swiper-pagination-bullet-horizontal-gap: 3px;
	--swiper-pagination-bullet-inactive-opacity: .9;
	transition: all .2s cubic-bezier(.4, 0, .3, 1);
}

.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	box-shadow: 0 0 0 1px #000 inset;
	--swiper-pagination-color: #fff;
}

.swiper .swiper-button-disabled {
	color: #acacac;
}

.swiper .swiper-slide {
	height: auto;
}

.looks-slider {
	--swiper-navigation-size: auto;
}

/* -- Fancybox v5 -- */
.fancybox__container {
	--fancybox-bg: rgba(0,0,0, .35);
	--fancybox-color: #000;
	--fancybox-content-color: #000;
}

.is-compact .fancybox__content>.f-button.is-close-btn,
.fancybox__content > .f-button.is-close-btn {
	--f-button-bg: initial;
	--f-button-color: #000;
	--f-button-hover-color: initial;
	--f-button-hover-bg: initial;
	--f-button-active-bg: initial;
	--f-button-svg-stroke-width: 1;
	--f-button-svg-width: 22px;
	--f-button-svg-height: 22px;
	top: 15px;
	right: 15px;
	opacity: 1;
}

.fancybox__toolbar,
.fancybox__nav {
	--f-button-width: 60px;
	--f-button-height: 60px;
	--f-button-border-radius: 0;
	--f-button-color: #0d0c22;
	--f-button-hover-color: #000;
	--f-button-bg: initial;
	--f-button-hover-bg: transparent;
	--f-button-active-bg: transparent;
	--f-button-svg-width: 24px;
	--f-button-svg-height: 24px;
	--f-button-svg-stroke-width: 1;
	--f-button-svg-filter: none;
}

.fancybox__toolbar {
	--f-button-svg-width: 22px;
	--f-button-svg-height: 22px;
}

.fancybox__nav {
	--f-button-next-pos: 0;
	--f-button-prev-pos: 0;
}

.fancybox__thumbs.is-classic {
	--f-thumb-gap: 6px;
	--f-thumb-width: 64px;
	--f-thumb-height: 48px;
	--f-thumb-outline: 1px;
	--f-thumb-border-radius: 0;
	--f-thumb-outline-color: #000;
}

.is-compact .fancybox__footer {
	background: none;
}

/* галерея в товаре */
.product-photo-gallery.fancybox__container {
	--fancybox-bg: #fff;
}

.product-photo-gallery .fancybox__slide {
	padding: 0;
}

/* фото во всю высоту */
.product-photo-gallery .fancybox__slide.has-image > .fancybox__content {
	height: 100% !important;
}

.product-photo-gallery .fancybox__slide::before,
.product-photo-gallery .fancybox__slide::after {
	display: none;
}

.product-photo-gallery .fancybox__slide:not(.is-draggable) .fancybox-image {
	object-fit: cover;
}

/* -- Modal windows -- */
/* Модальные мульти-окна справа (общие стили) */
.side-modal-opened {
	margin-right: var(--scroll-padlock-scrollbar-width);
	overflow: hidden;
	touch-action: none;
}

.side-modal-opened .header {
	margin-right: var(--scroll-padlock-scrollbar-width);
}

.side-modal {
	position: fixed;
	background-color: var(--body-bg, #fff);
	width: 90%;
	height: 100%;
	max-width: 400px;
	top: 0;
	right: 0;
	transform: translateX(100%);
	visibility: hidden;
	transition: all .4s ease;
	z-index: 1050;
}

.side-modal.show {
	visibility: visible;
	transform: translateX(0);
}

.side-modal .top {
	min-height: 40px;
}

.side-modal .middle {
	height: 100%;
	padding-top: 40px;
}

@media (min-width: 992px) {
	.side-modal .top {
		min-height: 50px;
		transform: translateY(-10px);
	}
}

.side-modal-overlay {
	background-color: rgba(0,0,0, .25);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	visibility: hidden;
	opacity: 0;
	transition: all .35s ease;
	z-index: 1030;
}
/* ---- */

.confirm-modal .is-close,
.confirm-modal .is-close-btn {
	display: none;
}

/* Корзина [окно] */
.cart-img {
	flex: 0 0 100px;
	margin-right: 5px;
}

.cart-item + .cart-item {
	margin-top: 40px;
}

.cart-item .btn-delete {
	top: -1px;
	right: 0;
}

.cart-info .item-name,
.cart-info .item-name + .item-price {
	line-height: 1.5;
	margin-top: -4px;
	
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 1; */
    /* -webkit-box-orient: vertical; */
}

.cart-info .item-bottom {
	/* margin-bottom: -1px; */
}

.cart-info .old-price {
	position: absolute;
	right: 0;
	bottom: 100%;
}

.item-count .btn-quantity::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	margin: -8px;
}

.item-count .btn-quantity .minus,
.item-count .btn-quantity .plus {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 10px;
	height: 10px;
}

.item-count .btn-quantity .minus::before,
.item-count .btn-quantity .plus::before,
.item-count .btn-quantity .plus::after {
	content: "";
	position: absolute;
	width: 9px;
	border-top: 1px solid;
}

.item-count .btn-quantity .plus::after {
	transform: rotate(90deg);
}

.item-count .qty {
	width: 15px;
}

/* товар недоступен к покупке */
.item-soldout::after {
	content: attr(data-cart-soldout);
	position: absolute;
	color: #c62822;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: max-content;
	height: 36px;
	line-height: normal;
	/* box-shadow: 0 0 10px 0 rgba(0,0,0, .2); */
	box-shadow: 0 0 0 1px rgba(198, 40, 34, .5);
	padding: 8px 16px;
	z-index: 1;
}

.item-soldout .cart-img,
.item-soldout .cart-info {
	filter: grayscale(1);
	opacity: .35;
	pointer-events: none;
	user-select: none;
}

/* Фильтр [окно] */
.products-filter .filer-block {
	margin-left: 10px;
	margin-bottom: 15px;
}

.products-filter .filer-block .columns {
	columns: 2;
	column-gap: 0;
}

.products-filter .filer-block li {
	padding: .5rem 0;
}

.products-filter .filer-block li label {
	display: inline-block;
	padding-left: 17px;
	transition: color .15s ease;		  
}

@media (any-hover: hover) {
	.products-filter .filer-block li label:hover {
		color: var(--link-color-hover, #777);
	}
}

.products-filter .filer-block li label.disabled {
	cursor: default;
	color: #acacac;
	pointer-events: none;
}

.products-filter .filer-block li label a {
	pointer-events: none;
}

.products-filter .filer-block li label input {
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 1;
}

/* чекбокс */
.products-filter .filer-block li label i {
	border: 1px solid;
	width: 8px;
	height: 8px;
	top: 50%;
	right: 0;
	left: 0;
	bottom: 0;
	margin-top: -3px;
	z-index: 2;
}

.products-filter .filer-block li label input + i::after {
	content: "";
	position: absolute;
	background-color: var(--text-color, #000);
	width: 4px;
	height: 4px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	visibility: hidden;
	opacity: 0;
	transition: all .1s ease;
}

/* радио */
.products-filter .filer-block li label input[type="radio"] + i,
.products-filter .filer-block li label input[type="radio"] + i::after {
	border-radius: 50%;
}

.products-filter .filer-block li label input:checked + i {
	/* background-color: #000; */
	border-color: var(--text-color, #000);
}

.products-filter .filer-block li label input[type="checkbox"]:checked + i::after,
.products-filter .filer-block li label input[type="radio"]:checked + i::after {
	visibility: visible;
	opacity: 1;
}

/* цвета */
.products-filter .filer-block [data-filter-color]::before {
	content: "";
	display: inline-block;
	background: var(--filter-color);
	width: 12px;
	height: 12px;
	margin-right: 4px;
	margin-bottom: -1px;
	border-radius: 50%;
}

.products-filter .filer-block .f-cwhite[data-filter-color]::before {
	border: 1px solid #aaa;
}
/* ---- */

.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

/* кастом скролл (меню, корзина, фильтр и т.д.) */
.custom-scroll {
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.custom-scroll::-webkit-scrollbar {
	width: 2px;
}

.custom-scroll::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0, .3);
	background-color: #f5f5f5;
}

.custom-scroll::-webkit-scrollbar-thumb {
	background-color: #000;
}

@supports not selector(::-webkit-scrollbar) {
	.custom-scroll {
		scrollbar-width: thin;
		scrollbar-color: #000 #dedede;
	}
}

.loader {
	background: rgba(255,255,255, .75) url(../img/loader.gif) no-repeat center center /35px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
}

.cookie-modal {
	position: fixed;
	bottom: 15px;
	right: 15px;
	left: 15px;
	margin: auto;
	z-index: 1;
}

.side-modal-opened .cookie-modal {
	right: calc(15px + var(--scroll-padlock-scrollbar-width));
}

/* Тёмная тема */
[data-theme="dark"] {
	color: #fff;
	--body-bg: #000;
	--link-color: #fff;
	--link-color-hover: #bbb;
	--btn-color: #fff;
	--text-color: #fff;
}

[data-theme="dark"] .logo {
	--link-color-hover: #fff;
}

[data-theme="dark"] .btn-primary {
	--btn-color: #000;
	--btn-bg: #fff;
	--btn-hover-bg: #dfdfdf;
}

[data-theme="dark"] .btn-secondary {
	--btn-border-color: #fff;
	--btn-hover-color: #ccc;
	--btn-hover-border-color: #ccc;
}

[data-theme="dark"] .btn-primary-gray {
	--btn-color: #000;
	--btn-bg: #dfdfdf;
	--btn-hover-color: #777;
}

[data-theme="dark"] .btn-blank {
	--btn-hover-color: #bbb;
}

[data-theme="dark"] .footer,
[data-theme="dark"] .content-loading,
[data-theme="dark"] .btn-product-fav:not(.active) {
	color: #fff;
}

[data-theme="dark"] .btn-product-fav.active,
[data-theme="dark"] .btn-product-fav:hover {
	color: #000;
}

[data-theme="dark"] .btn-show-colors {
	--btn-color: #fff;
	--btn-bg: #222;
}

[data-theme="dark"] .bg-white {
	background-color: #000;
}

[data-theme="dark"] [class*="border"] {
	--border-color: #fff;
}

[data-theme="dark"] .form-select,
[data-theme="dark"] .form-select-mini:not(.select-error) {
	background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M8 0 4 5 0 0z'/%3E%3C/svg%3E");
}

[data-theme="dark"] select option {
	color: #000;
}

[data-theme="dark"] .product-card .product-images {
	background-color: #4a4a4a;
}

[data-theme="dark"] .product-card .product-colors .color[style*="--product-color: #000000"] {
	border: 1px solid #ccc;
}

[data-theme="dark"] .block-radio [type="radio"]:checked + .radio-content {
	--rc-border-color: #fff;
}

[data-theme="dark"] .fancybox__container {
	--fancybox-content-color: #fff;
	--fancybox-content-bg: #000;
}

[data-theme="dark"] .product-photo-gallery.fancybox__container {
	--fancybox-bg: #000;
}

[data-theme="dark"] .fancybox__toolbar,
[data-theme="dark"] .fancybox__nav {
	--f-button-color: #fff;
	--f-button-hover-color: #ccc;
}
/* ---- */
/* -- [new] Юниверс (блог) -- */
/* ---- */

/* [new] Юниверс — Титул раздела в шапке вместо лого (по центру шапки, на одной линии с меню) */
.header-universe {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
	z-index: 7;
}

/* на ПК контент шапки поднят на 10px (как [class*="header-nav"] у базы) */
@media (min-width: 992px) {
	.header-universe {
		transform: translate(-50%, calc(-50% - 10px));
	}
}

/* [new] Юниверс — Разводящая: интро рубрики */
.blog-intro {
	margin-top: 24px;
}

/* [new] Юниверс — Сетка статей (разводящая + «больше историй» детальной) */
/* грид с фикс-треками 310: полные ряды расходятся к краям (space-between),
   неполный хвост ложится по трекам слева направо; auto-fill + min-gap 60
   даёт 3 колонки на 1440, 2 на планшете, 1 на мобиле */
.blog-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, 310px);
	justify-content: space-between;
	align-items: end;
	margin-top: 40px;
	row-gap: 83px;
	column-gap: 60px;
}

.blog-card {
	width: 310px;
	max-width: 100%;
}

@media (max-width: 767.98px) {
	.blog-cards {
		justify-content: center;
	}
}

.blog-card .blog-card-caption {
	line-height: 1.5;
	/* фикс-высота на 2 строки: низ картинок в ряду не зависит от числа строк подписи */
	min-height: 36px;
}

/* [new] Юниверс — Кнопка «загрузить еще» */
.blog-more {
	margin-top: 83px;
	margin-bottom: 120px;
}

.blog-more .btn {
	min-width: 310px;
}

/* [new] Юниверс — Статья: ритм конструктора по макету — базовый зазор 83px
   (сознательный override отступа 90 из .blog-post-page .blog-content базы) */
.blog-post-page .blog-content {
	margin-top: 83px;
	margin-bottom: 83px;
}

/* [new] Юниверс — Статья: подпись под фото/автор (отступ 10px от фото) */
.blog-caption {
	margin-top: 10px;
}

/* фото в колонке: подпись прижата (10px, схлопывается с .blog-caption) */
.blog-post-page .blog-photo {
	margin-bottom: 10px;
}

/* после кнопок следующий блок в макете идёт через 35px */
.blog-post-page .blog-actions {
	margin-bottom: 35px;
}

.blog-post-page .blog-actions + .blog-content {
	margin-top: 35px;
}

/* [new] Юниверс — Статья: hero — на ПК/планшете полоса из макета (кроп ноды: сдвиг 8.3%), на мобиле портрет целиком */
@media (min-width: 768px) {
	.blog-hero img {
		aspect-ratio: 1441 / 640;
		object-fit: cover;
		object-position: 50% 12%;
	}
}

/* [new] Юниверс — Статья: рамка-цитата */
.blog-quote {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 81px;
	border: 1px solid #000;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
	line-height: 1.8;
}

/* [new] Юниверс — Статья: таблицы с линиями */
.blog-table {
	width: 100%;
	border-collapse: collapse;
	line-height: 1.3;
}

.blog-table td {
	height: 49px;
	padding: 5px 15px 10px 0;
	vertical-align: top;
}

.blog-table td + td {
	border-left: 1px solid #000;
	padding-left: 15px;
}

.blog-table tr + tr td {
	border-top: 1px solid #000;
}

/* [new] Юниверс — Статья: хвост таблицы — вертикали свисают ниже последней линии (фирменный стиль макета) */
.blog-table tr.tail td {
	height: 90px;
}

.blog-table--aside tr.tail td {
	height: 210px;
}

/* [new] Юниверс — Статья: таблица с узкой первой колонкой */
.blog-table--aside td:first-child {
	width: 25%;
}

/* [new] Юниверс — Статья: сноски (поверх .ul-styled) */
.blog-footnotes-list li:not(:last-child) {
	margin-bottom: 20px;
}

/* [new] Юниверс — Статья: у финальных карточек единый кроп картинок (310×413 в макете, 310×388 на мобиле) */
.blog-related .blog-card img {
	aspect-ratio: 310 / 413;
	object-fit: cover;
}

@media (max-width: 767.98px) {
	.blog-related .blog-card img {
		aspect-ratio: 310 / 388;
	}
}

/* [new] Юниверс — Статья: финальные карточки — лента на мобиле */
@media (max-width: 767.98px) {
	.blog-related.blog-cards {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
		margin-top: 40px;
		margin-left: calc(-.5 * var(--bs-gutter-x));
		margin-right: calc(-.5 * var(--bs-gutter-x));
		column-gap: 0;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.blog-related.blog-cards::-webkit-scrollbar {
		display: none;
	}

	/* фото ленты впритык к краям, подписи с полем 15px (мобильный фрейм макета) */
	.blog-related .blog-card {
		flex: 0 0 auto;
		width: 310px;
	}

	.blog-related .blog-card-caption {
		padding: 0 15px;
	}
}
