* {
	border: none;
	margin: 0;
	padding: 0;
}

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

a {
	color: inherit;
}

a,
a:hover,
a:link,
a:visited {
	text-decoration: none;
}

aside,
footer,
header,
main,
nav,
section {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	font-size: inherit;
	font-weight: inherit;
}

ul,
ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img,
svg {
	height: auto;
	max-width: 100%;
}

address {
	font-style: normal;
}

button,
input,
select,
textarea {
	background-color: transparent;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
}

input::-ms-clear {
	display: none;
}

button,
input[type='submit'] {
	background-color: transparent;
	background: none;
	box-shadow: none;
	cursor: pointer;
	display: inline-block;
}

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

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

legend {
	display: block;
}

input,
textarea {
	width: 100%;
}

:root {
	--container-width: 1170px;
	--container-padding: 15px;
	--font-size: 16px;
	--font-main: 'Ubuntu', sans-serif;
	--font-accent: sans-serif;
	--font-titles: var(--font-accent);
	--page-bg: #fff;
	--text-color: #191919;
	--grey-color: #878787;
	--accent: #fddd3a;
	--accent-opacity-50: rgba(253, 221, 58, 0.5);
	--border: #dedede;
	--dark-color: var(--text-color);
	--white-color: var(--page-bg);
	--laptop-size: 1199.98px;
	--tablet-size: 1023.98px;
	--mobile-size: 767.98px;
	--spacing-4: 30px;
}

.dark {
	--page-bg: #252526;
	--text-color: #fff;
}

body,
html {
	height: 100%;
}

body {
	background-color: var(--page-bg);
	color: var(--text-color);
	font-family: var(--font-main);
	font-size: var(--font-size);
	line-height: 1;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.wrapper,
body.lock {
	overflow: hidden;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

@supports (overflow: clip) {
	.wrapper {
		overflow: clip;
	}
}

.wrapper > main {
	flex: 1 1 auto;
}

.wrapper > * {
	min-width: 0;
}

.container {
	margin: 0 auto;
	max-width: var(--container-width);
	padding: 0 var(--container-padding);
}

.filter-sidebar {
	display: grid;
	gap: 1.5rem;
}

.filter-sidebar__item.active .filter-sidebar__header:after {
	rotate: 180deg;
}

.filter-sidebar__header {
	padding: 0 20px 10px 0;
	position: relative;
	text-align: left;
	width: 100%;
}

.filter-sidebar__header:after {
	aspect-ratio: 1/1;
	background-color: var(--dark-color);
	content: '';
	-webkit-mask: url(../images/icons/chevron.svg) center/contain no-repeat;
	mask: url(../images/icons/chevron.svg) center/contain no-repeat;
	position: absolute;
	right: 1.5rem;
	top: calc(50% - 6px);
	transition: 0.2s ease-in-out;
	width: 12px;
}

.filter-sidebar__checkboxes {
	display: grid;
	gap: 10px;
}

.language {
	padding: 0 24px;
	position: relative;
}
.language .lang-switcher__current {
	font-size: 0;
	gap: 0;
}
.language:before {
	aspect-ratio: 1/1;
	background: url(../images/icons/globe.png) 50% / contain no-repeat;
	content: '';
	left: 0;
	position: absolute;
	top: calc(50% - 8px);
	width: 16px;
}

body.no-js .language:before,
body.no-webp .language:before {
	background-image: url(../images/icons/globe.png);
}

body.webp .language:before {
	background-image: url(../images/icons/globe.webp);
}

.language__menu {
	display: none;
}

.select {
	min-width: 0;
}

.select,
.select__body {
	position: relative;
}

.select__title {
	color: inherit;
	cursor: pointer;
	font-size: 14px;
	line-height: 2;
	text-align: left;
	width: 100%;
}

.select__value {
	align-items: center;
	display: flex;
	gap: 10px;
	min-width: 0;
}

.select__value > * {
	flex: 1 1 auto;
}

.select__value:after {
	align-items: center;
	aspect-ratio: 1/1;
	background-color: var(--dark-color);
	content: '';
	display: flex;
	flex: 0 0 auto;
	justify-content: center;
	-webkit-mask: url(../images/icons/chevron.svg) center/contain no-repeat;
	mask: url(../images/icons/chevron.svg) center/contain no-repeat;
	transition: all 0.3s ease 0s;
	width: 10px;
}

._select-open .select__value:after {
	transform: rotate(-180deg);
}

.select__value._select-pseudo-label:before {
	color: #878787;
	content: attr(data-pseudo-label);
	font-size: 14px;
	line-height: 1.4;
}

.select__content,
.select__text {
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.select__input {
	background-color: transparent;
	height: 100%;
	width: 100%;
}

.select__options {
	background: #191919;
	border: 0;
	border-radius: 0;
	color: #999;
	left: 0;
	min-width: 100%;
	padding: 15px;
	position: absolute;
	top: calc(100% - 1px);
}

.select__scroll {
	max-height: 200px;
	overflow-x: hidden;
	overflow-y: auto;
}

.select__option {
	color: inherit;
	cursor: pointer;
	font-size: 14px;
	padding: 6px;
	text-align: left;
	width: 100%;
}

.select__option._select-selected {
	color: var(--accent);
}

.select__row {
	align-items: center;
	display: inline-flex;
}

.select--show-top .select__options {
	border: 1px solid #d9d9d9;
	border-bottom: 0;
	border-radius: 4px 4px 0 0;
	bottom: calc(100% - 1px);
	padding: 5px 0 10px;
	top: auto;
}

._select-tag {
	cursor: pointer;
}

.breadcrumb {
	border-top: 1px solid #e2e2e2;
	color: var(--grey-color);
	display: flex;
	font-size: 14px;
	font-weight: 300;
	list-style: none;
	overflow: hidden;
	padding: 25px 0;
	white-space: nowrap;
	background-color: transparent !important;
	margin-bottom: 0 !important;
}

.breadcrumb li {
	flex: 0 0 auto;
}

.breadcrumb li:not(:first-child):before {
	color: var(--grey-color);
	content: '/';
	float: left;
	padding: 0 4px;
}

.breadcrumb li a {
	transition: 0.2s ease-in-out;
}

.breadcrumb li.active {
	color: var(--dark-color);
}

.tabs__navigation {
	border-bottom: 1px solid #bababa;
	display: flex;
	margin-bottom: -1px;
}

.tabs__btn {
	border-bottom: 2px solid transparent;
	color: #bababa;
	padding-bottom: 20px;
	transition: 0.2s ease-in-out;
}

.tabs__btn:not(:last-child) {
	margin-right: 50px;
}

.tabs__btn.active,
.tabs__btn:hover {
	border-color: var(--accent);
	color: #23527c;
}

.tabs__body {
	color: #878787;
	font-size: 16px;
	line-height: 1.625;
	padding: 20px 0 50px;
}

.tabs__content {
	display: none;
}

.tabs__content.active {
	display: block;
}

.tabs__text {
	text-align: justify;
}

.tabs__text p:not(:last-child) {
	margin: 0 0 10px;
	/* padding-bottom: 20px; */
}
.panel-body {
	line-height: 26px;
	font-size: 16px;
	font-weight: 600;
	strong {
		display: block;
		padding: 15px 0;
		font-size: 16px;
		color: #878787;
		font-weight: 300;
	}
	address {
	}
}
.product-page {
	.tabs__text {
		h3 {
			margin-bottom: 16px;
		}
	}
}
.tabs__review {
	display: flex;
	flex-direction: column;
}

.tabs__review > .button-outline {
	margin-left: auto;
}

.pagination {
	gap: 4px;
	margin: 20px 0;
}

.page-numbers,
.pagination {
	align-items: center;
	display: flex;
	justify-content: center;
}

.page-numbers {
	aspect-ratio: 1/1;
	border-radius: 50%;
	cursor: pointer;
	flex: 0 0 auto;
	font-size: 14px;
	line-height: 1;
	transition: 0.2s ease-in-out;
	width: 32px;
}

.page-numbers.current {
	background-color: hsla(0, 0%, 53%, 0.5);
}

.sorting-panel {
	align-items: center;
	display: grid;
	gap: 8px var(--spacing-4);
	grid-template-columns: 2fr 1fr;
}

.sorting-panel__selects {
	display: grid;
	gap: 8px var(--spacing-4);
	grid-template-columns: repeat(2, 1fr);
}

.sorting-panel .sorting-item {
	margin-left: auto;
	min-height: 28px;
}

.sorting-panel .select {
	width: -moz-fit-content;
	width: fit-content;
}
.has-sub-menu > a {
	position: relative;
	&::before {
		aspect-ratio: 1 / 1;
		background-color: var(--dark-color);
		content: '';
		-webkit-mask: url(../images/icons/chevron.svg) center / contain no-repeat;
		mask: url(../images/icons/chevron.svg) center / contain no-repeat;
		position: absolute;
		left: calc(100% + 10px);
		top: calc(50% - 6px);
		transition: 0.2s ease-in-out;
		width: 12px;
	}
	&:hover {
		&::before {
			background-color: var(--accent);
		}
	}
}
.header-search {
	flex: 1;
	max-width: 600px;
	.input-group-btn {
		width: 46px;
	}
	.input-group-btn button {
		position: relative;

		aspect-ratio: 1;
		&::before {
			aspect-ratio: 1 / 1;
			background-color: var(--dark-color);
			font-size: 0;
			-webkit-mask: url(../images/icons/search.svg) center / contain no-repeat;
			mask: url(../images/icons/search.svg) center / contain no-repeat;
			position: absolute;
			left: calc(50% - 10px);
			content: '';
			top: calc(50% - 10px);
			transition: 0.2s ease-in-out;
			width: 20px;
		}
	}
	.form-control:focus {
		border-color: #ccc;
		box-shadow: none;
	}
}

.header-search__icon {
	display: none;
}

.header-search__item {
	position: relative;
}

.header-search__input {
	border-bottom: 1px solid var(--border);
	font-size: 14px;
	padding: 8px 30px 8px 0;
}

.header-search__input:focus {
	border-bottom-color: var(--accent-opacity-50);
}

.header-search__submit {
	aspect-ratio: 1/1;
	background-color: var(--dark-color);
	font-size: 0;
	-webkit-mask: url(../images/icons/search.svg) center/contain no-repeat;
	mask: url(../images/icons/search.svg) center/contain no-repeat;
	position: absolute;
	right: 4px;
	top: calc(50% - 10px);
	transition: 0.2s ease-in-out;
	width: 20px;
}

.header-search.show .header-search__item {
	opacity: 1;
	pointer-events: all;
	translate: 0 0;
	visibility: visible;
}

.footer a,
.header .menu__list a,
.header-top__auth a,
.link-hover {
	position: relative;
	transition: 0.2s ease-in-out;
}

.footer a:after,
.header .menu__list a:after,
.header-top__auth a:after,
.link-hover:after {
	background-color: var(--accent);
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	top: 100%;
	transition: inherit;
	width: 0;
}

.button {
	align-items: center;
	background: var(--accent);
	border: 1px solid transparent;
	color: var(--dark-color);
	display: inline-flex;
	font-size: 14px;
	font-weight: 500;
	gap: 10px;
	justify-content: center;
	padding: 14px 22px;
	text-align: center;
	transition: all 0.2s ease-in-out;
}

.button__icon {
	aspect-ratio: 1/1;
	flex: 0 0 auto;
	width: 16px;
}

.button--dark {
	background-color: var(--dark-color);
	color: var(--white-color) !important;
}

.button-outline {
	align-items: center;
	border: 2px solid var(--accent);
	color: #191919;
	display: inline-flex;
	font-weight: 700;
	gap: 10px;
	height: 42px;
	justify-content: center;
	padding: 6px 10px;
	transition: 0.2s ease-in-out;
}

.category,
.section {
	margin: 100px 0;
}

.section-head {
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 40px;
}

.section-head,
.section-nav {
	align-items: center;
	display: flex;
}

.section-nav {
	font-size: 20px;
	gap: 20px;
	position: relative;
}

.section-nav:after {
	background-color: hsla(0, 0%, 53%, 0.5);
	content: '';
	height: 100%;
	left: 50%;
	position: absolute;
	top: 0;
	width: 1px;
}

.about__title,
.product-page__title,
.section-title,
.title {
	font-size: 36px;
	font-weight: 300;
}

.product-page__title,
.title {
	padding-bottom: 40px;
}

.products__body:not(:last-child),
.section-body:not(:last-child) {
	margin-bottom: 40px;
}

.slider-pagination {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: center;
}

.slider-pagination .swiper-pagination-bullet {
	aspect-ratio: 1/1;
	background-color: var(--border);
	border-radius: 50%;
	flex: 0 0 auto;
	height: 8px;
	width: 8px;
	margin: 10px 5px;
}

.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--accent);
}
.radio-inline,
.radio label,
.checkbox {
	color: var(--grey-color);
	display: block;
	font-weight: 600;
	padding: 4px 0 4px 35px;
	position: relative;
}

.checkbox span {
	cursor: pointer;
}
.radio-inline input,
.radio input,
.checkbox input {
	height: 0;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 0;
}

.checkbox > span > span {
	opacity: 0.8;
}
.checkbox label {
	padding-left: 0;
	margin-left: 0;
}
.radio-inline::before,
.radio label::before,
.checkbox:before {
	aspect-ratio: 1/1;
	border: 1px solid var(--border);
	content: '';
	left: 0;
	position: absolute;
	top: calc(50% - 10px);
	width: 20px;
}

.radio label:has(input:checked),
.radio-inline:has(input:checked),
.checkbox:has(input:checked) {
	color: var(--dark-color);
}

.radio-inline:has(input:checked):before,
.radio label:has(input:checked):before,
.checkbox:has(input:checked):before {
	background: url(../images/icons/check.svg) 50%/15px no-repeat;
	border-color: var(--accent);
}

.header-cart {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	font-weight: 500;
	gap: 8px;
	margin-bottom: -10px;
	padding-bottom: 10px;
	/* padding-left: 60px; */
	position: relative;
	flex: 0 0 auto;
}

.header-cart:after,
.header-cart:before {
	content: '';
	pointer-events: none;
	position: absolute;
	transition: 0.2s ease-in-out;
}

/*
.header-cart:before {
    aspect-ratio: 1/1;
    background-color: var(--dark-color);
    left: 10px;
    -webkit-mask: url(../images/icons/cart.svg) center/contain no-repeat;
    mask: url(../images/icons/cart.svg) center/contain no-repeat;
    top: calc(50% - 23px);
    width: 36px;
    z-index: 1
}
*/

.header-cart:after {
	aspect-ratio: 1/1;
	background-color: var(--accent);
	border-radius: 50%;
	top: calc(50% - 21px);
	width: 30px;
	left: -15px;
	/* width: 34px */
	/* left: 0; */
}

.header-cart__title {
	color: var(--text-color);
	transition: 0.2s ease-in-out;
}

.header-cart__badge {
	color: var(--grey-color);
	transition: 0.2s ease-in-out;
}

.header {
	position: relative;
	z-index: 15;
}

.header-top {
	background-color: var(--dark-color);
	color: var(--white-color);
	font-size: 14px;
	padding: 16px 0;
}

.header-top__inner {
	justify-content: space-between;
}

.header-top__actions,
.header-top__inner {
	align-items: center;
	display: flex;
	gap: 24px;
}

.header-top__auth {
	align-items: center;
	display: flex;
	gap: 5px;
	padding-left: 28px;
	position: relative;
}

.header-top__auth a {
	padding: 5px 0;
}

.header-top__auth:after,
.header-top__auth:before {
	content: '';
	position: absolute;
}

.header-top__auth:before {
	aspect-ratio: 1/1;
	background: url(../images/icons/user.png) 50% / contain no-repeat;
	left: 0;
	top: calc(50% - 7px);
	width: 14px;
}

body.no-js .header-top__auth:before,
body.no-webp .header-top__auth:before {
	background-image: url(../images/icons/user.png);
}

body.webp .header-top__auth:before {
	background-image: url(../images/icons/user.webp);
}

.header-top__auth:after {
	background-color: #434343;
	height: 34px;
	left: -13px;
	top: calc(50% - 17px);
	width: 1px;
}

.top-menu__nav {
	align-items: center;
	display: flex;
	gap: 24px;
	margin-bottom: 0;
}

.top-menu__nav a {
	display: block;
	padding: 5px 0;
	position: relative;
	transition: 0.2s ease-in-out;
}

.top-menu__nav a:after {
	background-color: var(--accent);
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	top: 100%;
	transition: inherit;
	width: 0;
}

.top-menu__btn {
	display: none;
}

.header__logo {
	max-width: 180px;
}

.header__inner {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
}

.header-center {
	padding: 12px 0;
}

.header-center .header-cart {
	/* margin-left: auto; */
}

.header-bottom {
	padding: 15px 0;
}

.header .menu__close {
	display: none;
}

.header .menu__list {
	align-items: center;
	display: flex;
	gap: 32px;
	position: relative;
	margin-bottom: 0;
	li {
		padding: 10px 0;
		margin: -10px 0;
	}
}

.header .menu__list li > span {
	aspect-ratio: 1/1;
	background-color: var(--text-color);
	cursor: pointer;
	display: block;
	font-size: 0;
	margin: -15px 0;
	-webkit-mask: url(../images/icons/ellipsis.svg) center/contain no-repeat;
	mask: url(../images/icons/ellipsis.svg) center/contain no-repeat;
	width: 40px;
}

.header .menu__list li:hover .sub-menu {
	opacity: 1;
	pointer-events: all;
	translate: 0 0;
	visibility: visible;
}

.sub-menu {
	background-color: var(--white-color);
	border: 1px solid #e2e2e2;
	border-top: 2px solid var(--accent);
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
	opacity: 0;
	padding: 14px 18px;
	pointer-events: none;
	transition: 0.2s ease-in-out;
	translate: 0 20%;
	visibility: hidden;
}

.sub-menu:before {
	background-color: transparent;
	border-color: transparent transparent #fddd3a;
	border-style: solid;
	border-width: 0 4px 5px;
	content: '';
	display: block;
	position: absolute;
	right: 46px;
	top: -7px;
}

.header-social {
	align-items: center;
	display: flex;
	font-size: 18px;
	gap: 24px;
}

.header-social a {
	aspect-ratio: 1/1;
	flex: 0 0 auto;
	transition: 0.2s ease-in-out;
	width: 20px;
}

.icon-menu {
	display: none;
}

.category__grid {
	display: grid;
	gap: var(--spacing-4);
	grid-auto-columns: 1fr;
	grid-auto-flow: row;
	grid-template-areas: 'category-1 category-1 category-2 category-3' 'category-1 category-1 category-6 category-7' 'category-4 category-5 category-6 category-8';
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(3, 216px);
}

.category-item {
	display: block;
	overflow: hidden;
	position: relative;
	transition: 0.2s ease-in-out;
}

.category-item:after {
	background-color: var(--accent);
	content: '';
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: 0.2s ease-in-out;
}

.category-item img {
	height: 100%;
	transition: 0.2s ease-in-out;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	/* -o-object-fit: cover; */
	/* object-fit: cover; */
}

.category-item__title {
	font-size: 16px;
	font-weight: 600;
	left: 15px;
	padding-right: 10px;
	position: absolute;
	top: 20px;
	z-index: 2;
}

.category-item:first-child {
	grid-area: category-1;
}

.category-item:nth-child(2) {
	grid-area: category-2;
}

.category-item:nth-child(3) {
	grid-area: category-3;
}

.category-item:nth-child(4) {
	grid-area: category-4;
}

.category-item:nth-child(5) {
	grid-area: category-5;
}

.category-item:nth-child(6) {
	grid-area: category-6;
}

.category-item:nth-child(7) {
	grid-area: category-7;
}

.category-item:nth-child(8) {
	grid-area: category-8;
}

.products-slider__pagination {
	padding-top: 40px;
}

.products-swiper .swiper-wrapper {
	align-items: stretch;
}

.products-swiper .swiper-slide {
	height: auto;
}

.product-item {
	border: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 15px;
	transition: 0.2s ease-in-out;
	.button {
		&::before {
			content: '';
			aspect-ratio: 1 / 1;
			flex: 0 0 auto;
			width: 16px;
			display: inline-block;
			mask: url('../images/icons/cart.svg') center/contain no-repeat;
			-webkit-mask: url('../images/icons/cart.svg') center/contain no-repeat;
			background-color: #191919;
		}
		&:hover {
			&::before {
				background-color: #fff;
			}
		}
	}
}

.product-item__head {
	flex: 0 0 auto;
	position: relative;
}
.form-group {
	label {
		margin-bottom: 8px;
	}
}
.well {
	padding: 30px;
	background: #fff;
	border: 1px solid var(--border, #e0e0e0);
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	margin-top: 20px;
	h2 {
		color: var(--dark-color, #191919);
		font-size: 24px;
		font-weight: 600;
		width: 100%;
		margin-top: -46px;
		padding-inline: 8px;
		background-color: #fff;
		margin-left: -8px;
	}
	label {
		font-weight: 600;
	}
	input {
		border: 1px solid var(--border, #e0e0e0);
		border-radius: 4px;
		padding: 12px 15px;
		font-size: 14px;
		transition: all 0.2s ease-in-out;
		width: 100%;
	}
	.form-group {
		input {
			&:not(:last-child) {
				margin-bottom: 8px;
			}
		}
	}
	p {
		line-height: 1.5;
		font-size: 14px;
	}
	input[type='submit'] {
		background: var(--accent, #007bff);
		color: #fff;
		border: none;
		padding: 14px 30px;
		font-size: 16px;
		font-weight: 600;
		border-radius: 4px;
		cursor: pointer;
		transition: all 0.2s ease-in-out;
		&:hover {
			background: var(--accent-hover, #0056b3);
			transform: translateY(-1px);
			box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
		}
	}
}
.button {
	cursor: pointer;
	color: #191919;
	border-radius: 4px;
	&:hover {
		color: #fff;
		background: var(--accent-hover, #0056b3);
		transform: translateY(-1px);
		box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
	}
}
#account-register fieldset {
	legend {
		padding-bottom: 0 !important;
		margin-bottom: 0 !important;
		border: none !important;
		display: inline-block !important;
	}
}
#information-contact {
	margin-bottom: 50px;
	h1 {
		margin-bottom: 40px;
		font-size: 36px;
		margin-right: 65px;
		font-weight: 300;
		margin-top: 0;
	}
	h3 {
		font-size: 28px;
		margin-bottom: 20px;
		font-weight: 300;
		margin-top: 0;
	}
	legend {
		padding-bottom: 20px;
	}
	.btn-primary {
		background-color: #337ab7;
	}
}
.product-item__label {
	border: 1px solid var(--accent);
	font-size: 14px;
	font-weight: 600;
	padding: 2px 15px;
	pointer-events: none;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	z-index: 1;
	background-color: var(--accent);
	/* color: var(--accent); */
}

.product-item__img {
	aspect-ratio: 1/1;
	overflow: hidden;
	width: 100%;
}

.product-item__img img {
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	transition: 0.2s ease-in-out;
	width: 100%;
}

.product-item__body {
	align-items: center;
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.9375rem;
	justify-content: center;
}

.product-item__body-top {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: auto;
}

.product-item__title {
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}

.product-item__volume {
	color: var(--grey-color);
	font-size: 14px;
}

.product-item__price {
	color: var(--grey-color);
}

.product-item--horizontal .product-item__head {
	width: 230px;
}

.blog__items {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, 1fr);
}

.blog-item {
	display: flex;
	flex-direction: column;
	margin: -10px;
	padding: 10px;
	transition: 0.2s ease-in-out;
}

.blog-item__img {
	aspect-ratio: 1/0.8333333333;
	overflow: hidden;
	width: 100%;
}

.blog-item__img img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: 0.2s ease-in-out;
	width: 100%;
}

.blog-item__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 20px;
	padding: 20px 0;
}

.blog-item__date {
	color: var(--grey-color);
	font-size: 14px;
}

.blog-item__title {
	color: var(--dark-color);
	font-weight: 500;
	line-height: 1.4;
}

.blog-item__info {
	margin-top: auto;
}

.blog-item__info a {
	font-size: 14px;
}

.blog-item__description {
	color: var(--grey-color);
	display: -webkit-box;
	text-overflow: -o-ellipsis-lastline;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-height: 1.5;
	margin-bottom: 5px;
	overflow: hidden;
}

.about {
	background-color: #f0f0f2;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 30px 0;
}

.about__content {
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 750px;
	width: 66%;
}

.about__description {
	color: var(--grey-color);
	line-height: 1.625;
	text-align: justify;
}

.about__description p:not(:last-child) {
	margin-bottom: 30px;
}

.hero-slider {
	margin: 20px 0 40px;
}

.hero-slider__controls {
	align-items: center;
	background-color: var(--white-color);
	bottom: 0;
	display: flex;
	gap: 18px;
	left: 0;
	padding: 20px 60px 20px 0;
	position: absolute;
	z-index: 5;
}

.hero-slider__controls:before {
	background-color: inherit;
	content: '';
	height: 100%;
	pointer-events: none;
	position: absolute;
	right: 100%;
	top: 0;
	width: 50vw;
	z-index: -1;
}

.hero-slide {
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 597px;
}

.hero-slide__container {
	height: 100%;
	margin: 0 auto;
	max-width: 1170px;
	padding: 0 15px;
}

.hero-slide__content {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	max-width: 460px;
}

.hero-slide__title {
	font-size: 64px;
	font-weight: 500;
	line-height: 1.1;
	margin: 0 0 45px;
}

.hero-slide__description {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 1em;
}

.container {
	position: relative;
}

.hero-button-next,
.hero-button-prev {
	margin-top: -5px;
	transition: 0.2s ease-in-out;
}

.footer {
	background-color: var(--dark-color);
	color: #999;
	font-size: 14px;
	line-height: 26px;
}

.footer a {
	color: inherit;
}

.footer__logo {
	display: block;
	margin-bottom: 35px;
	width: 140px;
}

.footer__logo:after {
	display: none;
}

.footer__top {
	display: flex;
	gap: var(--spacing-4);
	padding: 40px 0;
}

.footer__top p {
	font-size: 14px;
	line-height: 1.86;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.footer__top em {
	color: #fff;
	display: block;
	font-style: normal;
}

.footer form label {
	color: #fff;
	display: block;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer form input {
	border-bottom: 1px solid var(--border);
	color: var(--border);
	height: 45px;
	margin-bottom: 20px;
	transition: 0.2s ease-in-out;
	width: 100%;
}

.footer form input:focus {
	border-bottom-color: var(--accent);
}

.footer__social {
	align-items: center;
	display: flex;
	gap: 16px;
}

.footer__social a {
	aspect-ratio: 1/1;
	display: block;
	filter: contrast(0);
	transition: 0.2s ease-in-out;
	width: 20px;
}

.footer__social a:after {
	display: none;
}

.footer__col {
	flex: 1;
}

.footer__title {
	color: #fff;
	font-size: 16px;
	padding-bottom: 20px;
}

.footer__menu {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer__menu li {
	align-items: center;
	color: #999;
	display: flex;
	gap: 5px;
}

.footer__menu a {
	display: block;
	line-height: 1.5;
}

.footer__bottom {
	align-items: center;
	border-top: 1px solid #393939;
	display: flex;
	gap: 12px 24px;
	justify-content: space-between;
	padding: 10px 0;
}

.footer__bottom a:after {
	display: none;
}

.category-page {
	padding-bottom: 80px;
}

.category-page__grid {
	display: grid;
	gap: var(--spacing-4);
	grid-template-columns: 300px 1fr;
}

.category-page__items {
	display: grid;
	gap: var(--spacing-4);
	grid-template-columns: repeat(3, 1fr);
}

.category-page__items--vertical,
.category-page__items.is-list {
	grid-template-columns: auto;
}

.category-page__sorting {
	margin-bottom: 24px;
}

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

.sorting-item__label {
	color: #878787;
	font-size: 14px;
	line-height: 1.4;
}

.sorting-item__items {
	display: flex;
	gap: 6px;
}

.sorting-item__block {
	align-items: center;
	aspect-ratio: 1/1;
	display: flex;
	flex: 0 0 auto;
	justify-content: center;
	opacity: 0.5;
	transition: 0.2s ease-in-out;
	width: 12px;
}

.sorting-item__block img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}

.sorting-item__block:nth-child(2) {
	scale: 1.3;
}

.sorting-item__block.active {
	opacity: 1;
}

.contact-page {
	padding-bottom: 80px;
}

.contact-page__items {
	display: flex;
	gap: var(--spacing-4);
	margin-bottom: 35px;
}

.contact-page__map {
	filter: grayscale(1);
	height: 500px;
}

.contact-page__map iframe {
	height: 100%;
	width: 100%;
}

.contact-item {
	border: 2px solid #ebebeb;
	flex: 1;
	padding: 30px;
}

.contact-item__label {
	color: #878787;
	display: block;
	font-size: 16px;
	font-weight: 300;
	padding: 15px 0;
}

.contact-item__link,
.contact-item__text {
	font-weight: 600;
	line-height: 1.625;
}

.contact-item__link {
	color: #337ab7;
}

.text-page {
	padding-bottom: 80px;
}

.text-page__content {
	color: #878787;
	font-size: 14px;
	line-height: 1.25;
}

.text-page__content p:not(:last-child),
.text-page__content ul:not(:last-child) {
	margin-bottom: 10px;
	padding-bottom: 20px;
}

.text-page__content ul {
	list-style: disc;
	padding-left: 20px;
}

.text-page__content li {
	list-style: disc;
}

.blog-page {
	padding-bottom: 80px;
}

.blog-page__items {
	display: grid;
	gap: var(--spacing-4);
	grid-template-columns: repeat(3, 1fr);
}

.article {
	padding-bottom: 80px;
}

.article__img {
	aspect-ratio: 1/0.6666666667;
	width: 33.333%;
}

.article__img img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}

.article__grid {
	align-items: flex-start;
	display: flex;
	gap: var(--spacing-4);
}

.article__content {
	color: #878787;
	font-size: 14px;
	line-height: 1.4;
	width: 66.666%;
}

.article__content p {
	margin-bottom: 10px;
	padding-bottom: 20px;
}

.product-page__inner {
	align-items: flex-start;
	display: flex;
	gap: 24px;
	justify-content: space-between;
}

.product-page__img {
	min-width: 0;
	padding-bottom: 30px;
	width: 41.66666667%;
}

.product-page__slider {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 100%;
	min-width: 0;
}

.product-page__slider > * {
	min-width: 0;
	width: 100%;
}

.product-page__main {
	width: 50%;
}

.product-page__title {
	margin-bottom: 10px;
	padding-bottom: 0;
}

.product-page__volume {
	color: #979797;
	font-size: 13px;
	margin-bottom: 20px;
}

.product-page__line {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin: 20px 0;
}

.product-page__stock {
	background: url(../images/icons/check.png) 0 / contain no-repeat;
	font-size: 14px;
	line-height: 2;
	padding-left: 40px;
}

body.no-js .product-page__stock,
body.no-webp .product-page__stock {
	background-image: url(../images/icons/check.png);
}

body.webp .product-page__stock {
	background-image: url(../images/icons/check.webp);
}

.product-page__article-num {
	color: var(--grey-color);
	text-align: right;
}

.product-page .button-outline:after {
	color: inherit;
	content: '+';
	font-size: 20px;
	font-weight: 700;
}
.product-page {
	h3 {
		font-size: 36px;
		font-weight: 300;
		margin-bottom: 40px;
	}
}
.product-page .category-page__items {
	margin-bottom: 50px;
}
.product-swiper {
	aspect-ratio: 1/0.8586956522;
	border: 2px solid hsla(0, 0%, 53%, 0.5);
}

.product-swiper .swiper-slide {
	cursor: zoom-in;
}

.product-swiper img {
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
}

.product-thumb-swiper .swiper-slide {
	aspect-ratio: 1/1.125;
	border: 2px solid var(--accent);
	cursor: pointer;
	padding: 5px;
	position: relative;
	transition: 0.2s ease-in-out;
}

.product-thumb-swiper .swiper-slide:after {
	background-color: var(--accent-opacity-50);
	content: '';
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: inherit;
}

.product-thumb-swiper img {
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
}

#column-left {
	width: 100%;
}
.filter-sidebar__footer {
	#button-filter {
		width: 100%;
	}
}
.product-page__price {
	font-size: 30px;
	font-weight: 500;
	color: #191919;
	.price-old {
		text-decoration: line-through;
		opacity: 0.3;
	}
}
.price-old {
	text-decoration: line-through;
}
.product-page__article-num {
}
#input-option218 {
	.radio {
		&:first-child {
			margin-top: 0;
		}
	}
}
@media (max-width: 1199.98px) {
	.hero-slider__controls {
		padding: 20px 60px 20px 15px;
	}
}

@media (max-width: 1023.98px) {
	:root {
		--spacing-4: 20px;
	}

	.tabs__btn:not(:last-child) {
		margin-right: 24px;
	}

	.sorting-panel {
		align-items: flex-start;
	}

	.sorting-panel__selects {
		grid-template-columns: auto;
	}

	.category,
	.section {
		margin: 60px 0;
	}

	.header .menu__body {
		background-color: #fff;
		display: grid;
		gap: 8px;
		grid-template-columns: repeat(2, 1fr);
		height: calc(var(--vh) - 56px);
		left: 0;
		padding: 45px 15px 15px;
		pointer-events: none;
		position: fixed;
		top: 56px;
		transition: 0.2s ease-in-out;
		translate: -100% 0;
		visibility: hidden;
		width: 100%;
	}

	.category-open .header .menu__body {
		pointer-events: all;
		translate: 0 0;
		visibility: visible;
	}

	.header .menu__close {
		aspect-ratio: 1/1;
		border: 1px solid var(--dark-color);
		border-radius: 50%;
		display: block;
		font-size: 0;
		position: absolute;
		right: 15px;
		top: 15px;
		width: 30px;
	}

	.header .menu__close:after,
	.header .menu__close:before {
		aspect-ratio: 1/1;
		background-color: var(--dark-color);
		content: '';
		height: 2px;
		position: absolute;
		translate: -50% -1px;
		width: 18px;
	}

	.header .menu__close:before {
		rotate: 45deg;
	}

	.header .menu__close:after {
		rotate: -45deg;
	}

	.header .menu__list li > span {
		display: none;
	}

	.sub-menu {
		border: none;
		display: flex;
		flex-direction: column;
		gap: 16px;
		height: auto;
		min-width: auto;
		opacity: 1;
		padding: 15px 0 0;
		pointer-events: all;
		position: static;
		translate: 0 0;
		visibility: visible;
	}

	.sub-menu:before {
		display: none;
	}

	.icon-menu {
		align-items: center;
		display: inline-flex;
		font-size: 14px;
		gap: 8px;
	}

	.icon-menu .icon-menu__btn {
		height: 12px;
		position: relative;
		width: 20px;
	}

	.icon-menu .icon-menu__btn:after,
	.icon-menu .icon-menu__btn:before {
		content: '';
	}

	.icon-menu .icon-menu__btn span,
	.icon-menu .icon-menu__btn:after,
	.icon-menu .icon-menu__btn:before {
		background-color: var(--dark-color);
		height: 2px;
		left: 0;
		position: absolute;
		width: 100%;
	}

	.icon-menu .icon-menu__btn:before {
		top: 0;
	}

	.icon-menu .icon-menu__btn:after {
		bottom: 0;
	}

	.icon-menu .icon-menu__btn span {
		top: calc(50% - 1px);
	}

	.category__grid {
		grid-template-areas: 'category-1 category-1' 'category-1 category-1' 'category-2 category-3' 'category-4 category-5' 'category-6 category-7' 'category-6 category-8';
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(6, 270px);
	}

	.product-item--horizontal .product-item__head {
		width: 190px;
	}

	.product-item--horizontal .product-item__body {
		max-width: 100%;
	}

	.about__content {
		width: 75%;
	}

	.hero-slide {
		height: 470px;
	}

	.hero-slide__content {
		max-width: 340px;
	}

	.hero-slide__title {
		font-size: 50px;
	}

	.footer__top {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.category-page__grid {
		grid-template-columns: 200px 1fr;
	}

	.category-page__items {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767.98px) {
	.tabs__btn:not(:last-child) {
		margin-right: 16px;
	}
	#information-contact {
		h1 {
			font-size: 28px;
		}
		h3 {
			font-size: 20px;
		}
	}
	.product-page {
		h3 {
			font-size: 28px;
		}
	}
	.sorting-panel {
		grid-template-columns: auto;
	}

	.sorting-panel .sorting-item {
		margin-left: 0;
	}

	.header-search {
		flex: none;
		margin-left: auto;
	}
	.header-cart:after {
		left: 50%;
		top: 50%;
		translate: -50% -50%;
		width: 40px;
		display: none;
	}
	.header-cart__img {
		margin-right: 0;
		filter: invert(1);
	}
	.header-cart__count {
		position: absolute;
		right: 0;
		top: 0;
		width: 20px;
		height: 20px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: var(--accent);
		color: var(--dark-color);
		translate: 0 -50%;
		z-index: 2;
	}

	.header-search__icon {
		aspect-ratio: 1/1;
		background-color: #fff;
		display: block;
		font-size: 0;
		-webkit-mask: url(../images/icons/search.svg) center/contain no-repeat;
		mask: url(../images/icons/search.svg) center/contain no-repeat;
		position: relative;
		width: 24px;
		z-index: 5;
	}

	.header-search__item {
		background-color: var(--dark-color);
		left: 0;
		opacity: 0;
		padding: 15px;
		pointer-events: none;
		position: fixed;
		top: 48px;
		transition: 0.3s ease-in-out;
		translate: 0 calc(-100% - 48px);
		visibility: hidden;
		width: 100%;
		z-index: 1;
	}

	.header-search__submit {
		background-color: #fff;
		right: 20px;
	}

	.desktop {
		display: none !important;
	}

	.about__title,
	.product-page__title,
	.section-title,
	.title {
		font-size: 28px;
	}

	.header-cart {
		aspect-ratio: 1/1;
		margin-bottom: 0;
		padding-bottom: 0;
		padding-left: 0;
		width: 32px;
		z-index: 5;
	}

	/* .header-cart:before { background-color:#fff; left:auto; right:0; top:0; width:100% } */

	/* .header-cart:after { display:none } */

	.header-cart__title {
		display: none;
	}

	.header-cart__badge {
		align-items: center;
		aspect-ratio: 1/1;
		background-color: var(--accent);
		border: 1px solid var(--dark-color);
		border-radius: 50px;
		display: flex;
		font-size: 0;
		justify-content: center;
		position: absolute;
		right: 0;
		top: 0;
		translate: 25% -25%;
		width: 18px;
		z-index: 1;
	}

	.header-cart__badge span {
		color: var(--dark-color);
		font-size: 12px;
	}

	.header-top {
		padding: 12px 0;
		position: relative;
	}

	.header-top:after {
		background-color: inherit;
		content: '';
		inset: 0;
		pointer-events: none;
		position: absolute;
		z-index: 2;
	}

	.header-top__actions {
		align-items: flex-start;
		flex-direction: column;
		font-size: 20px;
		gap: 16px;
		position: relative;
	}

	.header-top__auth:after {
		display: none;
	}

	.top-menu__body {
		background-color: #191919;
		display: flex;
		flex-direction: column;
		gap: 24px;
		height: 100vh;
		left: 0;
		padding: 80px 15px 15px;
		position: fixed;
		top: 0;
		transition: 0.2s ease-in-out;
		translate: -100% 0;
		width: 100%;
		z-index: 5;
	}

	.menu-open .top-menu__body {
		translate: 0 0;
	}

	.top-menu__nav {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
	}

	.top-menu__nav a {
		font-size: 20px;
	}

	.top-menu__btn {
		display: block;
		height: 18px;
		position: relative;
		width: 30px;
		z-index: 10;
	}

	.top-menu__btn span,
	.top-menu__btn:after,
	.top-menu__btn:before {
		background-color: #fff;
		border-radius: 4px;
		content: '';
		height: 2px;
		left: 0;
		position: absolute;
		width: 100%;
	}

	.top-menu__btn:before {
		top: 0;
	}

	.top-menu__btn span {
		top: calc(50% - 1px);
	}

	.top-menu__btn:after {
		bottom: 0;
	}

	.header__logo {
		left: 50%;
		position: absolute;
		top: 50%;
		translate: -50% -50%;
		width: 80px;
		z-index: 5;
	}

	.header-center {
		display: none;
	}

	.header .menu__list {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
		padding-top: 15px;
	}

	.category__grid {
		display: flex;
		flex-direction: column;
	}

	.product-item .button {
		max-width: 250px;
		width: 100%;
	}

	.product-item__volume {
		text-align: center;
	}

	.product-item--horizontal .product-item__head {
		width: 100%;
	}

	.blog-item__body {
		gap: 10px;
	}

	.about {
		background-image: none !important;
	}

	.about__content {
		position: relative;
		width: 100%;
		z-index: 1;
	}

	.about__description {
		color: var(--dark-color);
	}

	.hero-slider {
		margin-top: 0;
	}

	.hero-slider__controls {
		padding: 15px 30px 15px 15px;
	}

	.hero-slide {
		height: 340px;
	}

	.hero-slide__content {
		max-width: 70%;
	}

	.hero-slide__title {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.hero-slide__description {
		font-size: 20px;
	}

	.footer__logo {
		margin-inline: auto;
	}

	.footer__top {
		grid-template-columns: auto;
		justify-items: center;
		text-align: center;
	}

	.footer__social {
		justify-content: center;
	}

	.footer__menu {
		align-items: center;
	}

	.footer__bottom {
		flex-direction: column;
		padding: 15px 0;
	}

	.category-page__grid {
		grid-template-columns: auto;
	}

	.category-page__items {
		grid-template-columns: auto;
	}

	.sorting-item {
		display: none;
	}

	.article__img {
		width: 100%;
	}

	.article__grid {
		flex-direction: column;
	}

	.article__content {
		width: 100%;
	}

	.product-page__inner {
		flex-direction: column;
		gap: 16px;
	}

	.product-page__img {
		width: 100%;
	}

	.product-page__main {
		width: 100%;
	}

	.product-page__article-num {
		font-size: 12px;
	}
}

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

	.products .section-nav {
		display: none;
	}

	.product-item--horizontal,
	.category-page__items.is-list .product-item {
		flex-direction: row;
	}

	.product-item--horizontal .product-item__body-top,
	.category-page__items.is-list .product-item .product-item__body-top {
		padding-top: 10px;
	}

	.product-item--horizontal .product-item__body,
	.category-page__items.is-list .product-item .product-item__body {
		align-items: flex-start;
		max-width: 480px;
		padding-left: 15px;
		text-align: left;
	}

	.product-item--horizontal .product-item__title,
	.category-page__items.is-list .product-item .product-item__title {
		text-align: left;
	}

	.blog .section-nav {
		display: none;
	}
}

@media (min-width: 1024px) {
	.header .menu__list li > .sub-menu {
		left: 0;
		min-width: calc(100% + 30px);
		position: absolute;
		top: calc(100% + 10px);
	}
}

@media (any-hover: hover) {
	.select__option:hover {
		color: var(--accent);
	}

	.breadcrumb li a:hover {
		color: var(--accent);
	}

	.page-numbers:hover {
		background-color: var(--accent);
	}

	.header-search__submit:hover {
		background-color: var(--accent);
	}

	.footer a:hover,
	.header .menu__list a:hover,
	.header-top__auth a:hover,
	.link-hover:hover {
		color: var(--accent);
	}

	.footer a:hover:after,
	.header .menu__list a:hover:after,
	.header-top__auth a:hover:after,
	.link-hover:hover:after {
		width: 100%;
	}

	.button:hover {
		opacity: 0.8;
	}

	.button-outline:hover {
		background-color: var(--accent);
	}

	.checkbox:hover:before {
		border-color: var(--accent);
	}

	.header-cart:hover:after,
	.header-cart:hover:before {
		scale: 1.2;
		translate: 20% 0;
	}

	.top-menu__nav a:hover {
		color: var(--accent);
	}

	.top-menu__nav a:hover:after {
		width: 100%;
	}

	.header .menu__list li > span:hover {
		background-color: var(--accent);
	}

	.header-social a:hover {
		opacity: 0.5;
	}

	.category-item:hover {
		box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
			0 2px 4px -2px rgba(0, 0, 0, 0.1);
	}

	.category-item:hover img {
		scale: 1.2;
	}

	.category-item:hover:after {
		opacity: 0.5;
	}

	.product-item:hover {
		border-color: var(--accent);
	}

	.product-item:hover .product-item__img img {
		scale: 1.2;
	}

	.blog-item__info a:hover {
		text-decoration: underline;
	}

	.blog-item:hover {
		box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
			0 4px 6px -4px rgba(0, 0, 0, 0.1);
	}

	.blog-item:hover .blog-item__img img {
		scale: 1.2;
	}

	.hero-button-next:hover,
	.hero-button-prev:hover {
		color: var(--accent);
	}

	.footer__social a:hover {
		filter: invert(99%) sepia(80%) saturate(3346%) hue-rotate(325deg)
			brightness(105%) contrast(98%);
	}

	.sorting-item__block:hover {
		opacity: 1;
	}

	.contact-item__link:hover {
		color: #23527c;
		text-decoration: underline;
	}

	.product-thumb-swiper .swiper-slide:hover:after {
		opacity: 1;
	}
}

@media (any-hover: none) {
	.header-search__icon {
		cursor: default;
	}

	.top-menu__btn {
		cursor: default;
	}

	.icon-menu {
		cursor: default;
	}
}
