@import url("header.css");
@import url("add/search-inline.css");
@import url("add/catalog-lightbox.css");
@import url("add/side-menu.css");

:root {
	--white: #ffffff;
	--gray: #ebebeb;
	--red: #ff0000;
	--red-hover: #dd1212;
	--light-gray: #ebebeb;
	--dark-gray: #5b5b5b;
	--primary: #1f1f1f;
	--primary-match: var(--white);
	--accent: #2e2e2e;
	--accent-match: var(--white);
	--black: #2e2e2e;
	--border: #dadada;
	--header-height: 104px;
	--top-bar-height: 32px;
	--container-indent: 60px;
	--blocks-indent: 15px;
	--products-in-col: 5;
	--products-indent-h: 25px;
	--products-indent-w: 25px;
	--scroll-bar: 6px;
	--font-family-1: "Russo One";
	--font-family-2: "Montserrat";
	--btn-height: 55px;
	--btn-height-small: 44px;
	--btn-padding: 0 34px;
	--border-radius: 0px;
	--border-radius-big: 10px;
	--border-radius-small: 5px;
}
@media (max-width: 1480px) {
	:root {
		--products-in-col: 5;
	}
}
@media (max-width: 1279px) {
	:root {
		--header-height: 64px;
		--container-indent: 30px;
		--products-in-col: 4;
	}
}
@media (max-width: 1024px) {
	:root {
		--products-in-col: 3;
	}
}
@media (max-width: 768px) {
	:root {
		--header-height: 58px;
		--products-indent-h: 20px;
		--products-indent-w: 10px;
		--products-in-col: 2;
	}
}
@font-face {
	font-family: "Russo One";
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/russo-one/russo-one-400.woff2) format("woff2");
}
@font-face {
	font-family: "Montserrat";
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/montserrat/montserrat-400.woff2) format("woff2");
}
@media (pointer: fine) {
	::-webkit-scrollbar {
		width: var(--scroll-bar);
	}
	::-webkit-scrollbar-track {
		background-color: var(--white);
	}
	::-webkit-scrollbar-thumb {
		background: var(--primary);
		border-radius: 20px;
		border: 0px;
		transition: scrollbar-color 0.5s ease-out;
	}
	::-webkit-scrollbar-thumb:hover {
		background: var(--primary);
	}
	body *::-webkit-scrollbar {
		height: 3px;
		width: 3px;
	}
}
*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: var(--light-gray);
	color: var(--black);
	font-family: var(--font-family-2);
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	box-sizing: border-box;
	-webkit-locale: auto;
	-webkit-text-size-adjust: none !important;
	-webkit-tap-highlight-color: transparent;
	cursor: default;
}
main {
	position: relative;
	top: var(--header-height);
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
}
section {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0;
}
.container {
	position: relative;
	display: flex;
	flex-direction: column;
	max-width: calc(100% - var(--container-indent));
	width: calc(100% - var(--container-indent));
	margin: 0 (var(--container-indent) / 2);
}
.container-full {
	max-width: calc(100% - 0px);
	width: calc(100% - 0px);
	margin: 0 0;
}
.col-100 {
	width: 100%;
}
.col-75 {
	display: flex;
	flex-direction: column;
	width: calc(75% - var(--blocks-indent) / 2);
}
.col-66 {
	display: flex;
	flex-direction: column;
	width: calc(66.66% - var(--blocks-indent) / 2);
}
.col-60 {
	display: flex;
	flex-direction: column;
	width: calc(60% - var(--blocks-indent) / 2);
}
.col-50 {
	display: flex;
	flex-direction: column;
	width: calc(50% - var(--blocks-indent) / 2);
}
.col-40 {
	display: flex;
	flex-direction: column;
	width: calc(40% - var(--blocks-indent) / 2);
}
.col-40.c3 {
	width: calc(40% - var(--blocks-indent) * 2 / 3);
}
.col-40.c4 {
	width: calc(40% - var(--blocks-indent) * 3 / 4);
}
.col-33 {
	display: flex;
	flex-direction: column;
	width: calc(33.33% - var(--blocks-indent) * 2 / 3);
}
.col-33.c2 {
	width: calc(33.33% - var(--blocks-indent) / 2);
}
.col-25 {
	display: flex;
	flex-direction: column;
	width: calc(25% - var(--blocks-indent) * 3 / 4);
}
.col-25.c2 {
	width: calc(25% - var(--blocks-indent) / 2);
}
.col-25.c3 {
	width: calc(25% - var(--blocks-indent) 2 / 3);
}
.col-20 {
	display: flex;
	flex-direction: column;
	width: calc(20% - var(--blocks-indent) * 4 / 5);
}
.col-20.c2 {
	width: calc(20% - var(--blocks-indent) / 2);
}
.col-20.c3 {
	width: calc(20% - var(--blocks-indent) * 2 / 3);
}
.col-20.c4 {
	width: calc(20% - var(--blocks-indent) * 3 / 4);
}
@media (max-width: 1279px) {
	.col-25 {
		width: calc(50% - var(--blocks-indent) / 2);
	}
	.col-25.c2,
	.col-25.c3 {
		width: 100%;
	}
	.col-66,
	.col-50,
	.col-33,
	.col-33.c2,
	.col-20 {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.col-25 {
		width: 100%;
	}
}
.block-with-cols {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: var(--blocks-indent);
}
.flex-start {
	justify-content: flex-start;
}
.no-wrap,
.block-with-cols.no-wrap {
	flex-wrap: nowrap !important;
}
/* Gutenberg - Start */
.wp-block-group__inner-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0;
}
.one-column {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0;
}
/* Gutenberg - End */

/* Размеры текстов - Start */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
wp-block-heading {
	font-family: var(--font-family-1);
	font-weight: 500;
	margin: 0;
}
.h1 {
	font-size: 65px;
	line-height: 70px;
}
h2,
.h2 {
	font-size: 26px;
	line-height: 31px;
}
h3,
.h3 {
	font-size: 20px;
	line-height: 24px;
}
h4,
.h4 {
	font-size: 14px;
	line-height: 17px;
}
h5,
.h5 {
	font-size: 14px;
	line-height: 17px;
}
p {
	font-family: var(--font-family-2);
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	margin: 0;
}
p a {
	word-break: break-all;
}
small {
	font-family: var(--font-family-2);
	font-size: 14px;
	line-height: 17px;
}
@media (max-width: 1480px) {
	.h1 {
		font-size: 45px;
		line-height: 48px;
	}
	h2,
	.h2 {
		font-size: 26px;
		line-height: 31px;
	}
	h3,
	.h3 {
		font-size: 20px;
		line-height: 24px;
	}
	h4,
	.h4 {
		font-size: 14px;
		line-height: 17px;
	}
	p {
		font-size: 16px;
		line-height: 22px;
	}
	small {
		font-size: 14px;
		line-height: 17px;
	}
}
@media (max-width: 1279px) {
	h1,
	.h1 {
		font-size: 24px;
		line-height: 28px;
	}
	h2,
	.h2 {
		font-size: 24px;
		line-height: 28px;
	}
	h3,
	.h3 {
		font-size: 16px;
		line-height: 19px;
	}
	h4,
	.h4 {
		font-size: 14px;
		line-height: 17px;
	}
	p {
		font-size: 14px;
		line-height: 20px;
	}
	small {
		font-size: 14px;
		line-height: 17px;
	}
}
@media (max-width: 768px) {
	h1,
	.h1 {
		font-size: 24px;
		line-height: 28px;
	}
	h2,
	.h2 {
		font-size: 24px;
		line-height: 28px;
	}
	h3,
	.h3 {
		font-size: 16px;
		line-height: 19px;
	}
	h4,
	.h4 {
		font-size: 14px;
		line-height: 17px;
	}
	p {
		font-size: 14px;
		line-height: 18px;
	}
	small {
		font-size: 14px;
		line-height: 17px;
	}
}
/* Размеры текстов - End */

ul.menu {
	display: flex;
	gap: 15px;
	list-style: none;
	font-family: var(--font-family-2);
	font-size: 15px;
	line-height: 18px;
}
.product-categories-menu ul.menu {
	font-family: var(--font-family-1);
}
.product-categories-menu ul.menu li {
	display: flex;
}
.product-categories-menu ul.menu li a {
	display: flex;
	align-items: center;
	gap: 10px;
}
.product-categories-menu ul.menu li a img {
	max-height: 30px;
	max-width: 30px;
	object-fit: contain;
}

a,
a p {
	color: inherit;
	outline: none;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}
.link {
	transition: all 0.3s ease;
}
.link:hover {
	color: var(--black);
}
.hover-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.overlay:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}
.overlay > * {
	z-index: 1;
}
.overlay.overlay-dark:before {
	background: rgb(0 0 0 / 20%);
}
.underline {
	text-decoration: underline;
}
del,
del * {
	color: #9A9A9A!important;
}
ins {
	text-decoration: none;
}
figure.wp-block-image {
	max-width: 100%;
}
img {
	display: block;
	max-width: 100%;
	object-fit: cover;
	height: auto;
}
iframe {
	max-width: 100%;
}
.primary {
	color: var(--primary);
}
.gray {
	color: var(--gray);
}
.light-gray {
	color: var(--light-gray);
}
.dark-gray {
	color: var(--dark-gray);
}
.black {
	color: var(--black);
}
.white {
	color: var(--white);
}

/* List - Start */
ul.wp-block-list,
ol.wp-block-list,
ul.list,
ol.list {
	list-style: none;
	padding: 0;
	margin: 0;
}
ol.wp-block-list,
ol.list {
	counter-reset: item;
}
ol.wp-block-list[start],
ol.list {
	counter-reset: item attr(start) -1;
}
ul.wp-block-list li,
ol.wp-block-list li {
	position: relative;
	padding-left: 20px;
	font-size: 16px;
	line-height: 24px;
}
ul.wp-block-list li:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 8px;
	background: #787878;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
ol.wp-block-list li:before {
	counter-increment: item;
	content: counter(item) ".";
	position: absolute;
	left: 2px;
	top: 0;
	color: var(--primary);
	font-weight: 600;
}
ol.wp-block-list li:nth-child(1):before,
ol.list li:nth-child(1):before {
	left: 3px;
}
ol.wp-block-list li:nth-child(n + 10):before,
ol.list li:nth-child(n + 10):before {
	left: -3px;
}
/* List - End */

@media (min-width: 1280px) {
	.mob {
		display: none !important;
	}
}
@media (max-width: 1279px) {
	.pc {
		display: none !important;
	}
	.mob-fixed {
		overflow: hidden !important;
	}
}
/* КНОПКИ */
.btn-group {
	display: flex;
	align-items: center;
	gap: var(--blocks-indent);
	z-index: 1;
}
.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: var(--btn-height);
	width: fit-content;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 14px;
	line-height: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	border-radius: 0px;
	cursor: pointer;
}
.btn span {
	font-family: var(--font-family-1);
	font-weight: 500;
	height: 14px;
	transition: all 0.3s ease;
}
.btn img {
	height: 14px;
	object-fit: contain;
	transition: filter 0.3s;
}
.btn-full {
	width: 100%;
}
.btn.btn-empty {
	padding: var(--btn-padding);
}

/* Primary - Start */
.btn.btn-primary {
	background: var(--primary);
	padding: var(--btn-padding);
}
.btn.btn-primary span {
	color: var(--primary-match);
}
.btn.btn-primary:hover,
.btn.btn-primary.active {
	background: var(--accent);
}
.btn.btn-primary:hover span,
.btn.btn-primary.active span {
	color: var(--accent-match);
}
.btn.btn-primary img {
	filter: url(#primary-color-match);
}
/* Primary - End */

/* Dark - Start */
.btn.btn-dark {
	background: var(--black);
	padding: var(--btn-padding);
}
.btn.btn-dark span {
	color: var(--white);
}
.btn.btn-dark:hover,
.btn.btn-dark.active {
	background: var(--white);
}
.btn.btn-dark:hover span,
.btn.btn-dark.active span {
	color: var(--black);
}
.btn.btn-dark img {
	filter: brightness(0) invert(1);
}
.btn.btn-dark:hover > img,
.btn.btn-dark.active > img {
	filter: brightness(1) invert(0);
}
/* Dark - End */

/* White - Start */
.btn.btn-white {
	background: var(--white);
	padding: var(--btn-padding);
}
.btn.btn-white span {
	color: var(--black);
}
.btn.btn-white:hover,
.btn.btn-white.active {
	background: var(--black);
}
.btn.btn-white:hover span,
.btn.btn-white.active span {
	color: var(--white);
}
.btn.btn-white img {
	filter: brightness(1) invert(0);
}
.btn.btn-white:hover > img,
.btn.btn-white.active > img {
	filter: brightness(0) invert(1);
}
/* White - End */

/* Gray - Start */
.btn.btn-gray {
	padding: var(--btn-padding);
	background: var(--gray);
}
.btn.btn-gray span {
	color: var(--black);
}
.btn.btn-gray:hover,
.btn.btn-gray.active {
	background: var(--primary);
}
.btn.btn-gray:hover span,
.btn.btn-gray.active span {
	color: var(--primary-match);
}
/* Gray - End */

/* Red - Start */
.btn.btn-red {
	background: var(--red);
	padding: var(--btn-padding);
}
.btn.btn-red span {
	color: var(--white);
}
.btn.btn-red:hover,
.btn.btn-red.active {
	background: var(--red-hover);
}
.btn.btn-red:hover span,
.btn.btn-red.active span {
	color: var(--white);
}
.btn.btn-red img {
	filter: brightness(0) invert(1);
}
.btn.btn-red:hover > img,
.btn.btn-red.active > img {
	filter: brightness(0) invert(1);
}
/* Red - End */

/* Border - Start */
.btn.btn-border {
	background: transparent;
	border: 1px solid var(--white);
	padding: var(--btn-padding);
}
.btn.btn-border span {
	color: var(--black);
}
.btn.btn-border:hover,
.btn.btn-border.active {
	background: var(--primary);
	border: 1px solid var(--primary);
}
.btn.btn-border:hover span,
.btn.btn-border.active span {
	color: var(--primary-match);
}
.btn.btn-border.primary {
	border: 2px solid var(--primary);
}
.btn.btn-border.primary span {
	color: var(--black);
}
.btn.btn-border.primary:hover,
.btn.btn-border.primary.active {
	background: var(--primary);
}
.btn.btn-border.primary:hover span,
.btn.btn-border.primary.active span {
	color: var(--primary-match);
}
.btn.btn-border.primary:hover img,
.btn.btn-border.primary.active img {
	filter: brightness(0) invert(0);
}
.btn.btn-border.red {
	border: 2px solid var(--red);
}
.btn.btn-border.red span {
	color: var(--red);
}
.btn.btn-border.red:hover,
.btn.btn-border.red.active {
	background: var(--red);
}
.btn.btn-border.red:hover span,
.btn.btn-border.red.active span {
	color: var(--white);
}
.btn.btn-border.red:hover img,
.btn.btn-border.red.active img {
	filter: url(#red-color);
}

.btn.btn-border.gray {
	border: 1px solid #EDEDED;
}
.btn.btn-border.gray:hover,
.btn.btn-border.gray.active {
	background: var(--primary);
}
.btn.btn-border.gray:hover span,
.btn.btn-border.gray.active span {
	color: var(--white);
}


/* Border - End */

/* Special - Start */
.btn.btn-circle {
	height: 40px;
	width: 40px;
	padding: 10px;
	background: var(--white);
	border-radius: 100%;
}
.btn.btn-catalog,
.btn.btn-sale {
	font-size: 16px;
	line-height: 16px;
	font-weight: 400;
}
.btn.btn-small {
	height: var(--btn-height-small);
}
.disabled {
	background: var(--gray) !important;
}
.center {
	margin-left: auto !important;
	margin-right: auto !important;
}
.column {
	flex-direction: column !important;
}
.row {
	flex-direction: row !important;
}
.wrap {
	flex-wrap: wrap !important;
}
.inline {
	display: flex;
	align-items: center;
	gap: 4px;
}
/* Special - End */

/* КНОПКИ - End */

/* Cookie - Start */
#cookies-consent {
	position: fixed;
	bottom: calc(var(--container-indent) / 3);
	right: calc(var(--container-indent) / 2);
	display: flex;
	align-items: flex-start;
	gap: var(--blocks-indent);
	width: 620px;
	max-width: calc(100% - var(--container-indent));
	padding: 30px;
	background: var(--white);
	border-radius: 15px;
	box-shadow: 0px 0px 34px rgba(150, 150, 150, 0.2); 
	z-index: 1000;
}
#cookies-consent .h2 {
	margin-bottom: 15px;
}
#cookies-consent .btn-group {
	margin-top: 25px;
}
#cookies-consent .cookies-text a {
	font-weight: 600;
	word-break: break-word;
}
@media (max-width: 768px) {
	#cookies-consent {
		padding: 20px;
		flex-wrap: wrap;
	}
	#cookies-consent .h2 {
		font-size: 20px;
		line-height: 24px;
	}
	#cookies-consent .btn-group {
		flex-wrap: wrap;
	}
	#cookies-consent .btn-group .btn {
		width: 100%;
	}
}
/* Cookie - End */

/* Dropdown - Start */

/* Dropdown Simple - Start */
.dropdown-simple {
	position: relative;
	cursor: pointer;
}
.dropdown-simple .dropdown-box {
	position: absolute;
	top: calc(100% + 10px);
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: var(--white);
	width: max-content;
	padding: 15px;
	color: var(--black);
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.dropdown-simple.active > .dropdown-box {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}
/* Dropdown Simple - End */

/* Dropdown Complex - Start */
.dropdown-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--white);
	cursor: pointer;
	margin-top: 2px;
}
.dropdown-wrapper > .current-choise {
	color: var(--white);
}
.dropdown-wrapper > .dropdown-icon {
	min-width: 7px;
	width: 7px;
	height: 7px;
	object-fit: contain;
	filter: invert(1);
	margin-top: -2px;
}
.dropdown-wrapper > .dropdown-box {
	position: absolute;
	bottom: -81px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: var(--white);
	width: 85px;
	padding: 10px;
	color: var(--black);
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.dropdown-wrapper.active > .dropdown-box {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}
.dropdown-wrapper > .dropdown-box .item-switch {
	display: flex;
	justify-content: space-between;
	gap: 5px;
	color: var(--black);
}
/* Dropdown Complex - End */

/* Dropdown - End */

/* Icon Group - Start */
.icon-group {
	display: flex;
	gap: 10px;
}
.icon-group-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
}
.contact-icon-group {
	display: flex;
	gap: 10px;
}
/* Icon Group - End */

/* Breadcrumb - Start */
.woocommerce-breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px !important;
	line-height: 14px !important;
	padding: 30px calc(var(--container-indent) / 2) 30px calc(var(--container-indent) / 2) !important;
	margin: 0 !important;
	color: var(--black) !important;
	overflow-x: auto;
}
.woocommerce .woocommerce-breadcrumb:before {
	display: none !important;
}
.woocommerce-breadcrumb a {
	color: #bcbcbc !important;
	white-space: nowrap;
	transition: all 0.3s ease;
}
.woocommerce-breadcrumb a:hover {
	color: var(--black)!important;
	white-space: nowrap;
	transition: all 0.3s ease;
}
.woocommerce-breadcrumb span {
	color: #958e8e !important;
	white-space: nowrap;
}
.woocommerce-breadcrumb span.bread-last {
	font-weight: 600;
	color: #2E2E2E !important;
}
.woocommerce-breadcrumb svg {
	transform: translateY(1px);
}
.woocommerce-breadcrumb svg path {
	stroke: #958e8e;
}
/* Breadcrumb - End */

/* Product List - Start */
.product-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--products-indent-h) var(--products-indent-w);
}
.product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: calc(
		(100vw - var(--container-indent) - var(--scroll-bar)) / var(--products-in-col) - var(--products-indent-w) *
		(var(--products-in-col) - 1) / var(--products-in-col)
		);
}
.product-card > a {
	height: 100%;
	display: flex;
	flex-direction: column;
	font-size: 0;
	line-height: 0;
}
.product-card img {
	height: calc(
		(
			(100vw - var(--container-indent) - var(--scroll-bar)) / var(--products-in-col) -
		var(--products-indent-w) * (var(--products-in-col) - 1) / var(--products-in-col)
		) * 1.25
		);
	width: 100%;
	object-fit: cover;
	border-radius: 5px;
}
.product-card .product-info-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 117px;
	padding: 5px 20px 20px 20px;
	background: transparent;
	transition: background 0.5s ease;
}
.product-card .product-info-head {
	display: flex;
	flex-direction: column;
	height: 117px;
}
.product-card .product-price-group {
	margin-top: auto;
}
@media (min-width: 1279px) {
	.product-card:hover .product-info-wrapper {
		background: #fff;
	}
	.product-card .product-info-wrapper .product-hover-info {
		position: absolute;
		top: 117px;
		left: 0;
		right: 0;
		z-index: 10;
		background: #fff;
		width: 100%;
		padding: 0 20px 20px 20px;
	}
}

/* Product Badge - Start */
.product-card .product-badge {
	display: block;
	position: absolute;
	top: 15px;
	left: 15px;
	background: var(--primary);
	border-radius: 3px;
	padding: 6px 7px 4px 7px;
	font-size: 13px;
	line-height: 13px;
	color: var(--primary-match);
}
/* Product Badge - End */

/* Product Stock Status - Start */
.product-card .stock-status {
	display: none !important;
	position: absolute;
	top: 15px;
	left: 15px;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 15px;
	background: var(--white);
	border-radius: 80px;
	font-family: var(--font-family-1);
	font-size: 13px;
	line-height: 13px;
	color: #3d3d3d;
}
.stock-status span {
	font-weight: bold;
}
.stock-status.in-stock span {
	color: #1c9737;
}
.stock-status.out-of-stock span {
	color: #ff0000;
}
.stock-status.on-order span {
	color: #ffed00;
}
.stock-status.no-status span {
	color: #2759ff;
}
/* Product Stock Status - End */

/* Wishlist + Compare - Start  */
.product-card .compare-btn,
.product-card .wishlist-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 27px;
	height: 27px;
	background: var(--white);
	border: none;
	border-radius: 3px;
	padding: 5px 5px 6px 5px;
	cursor: pointer;
}
.product-card .compare-btn {
	top: calc(15px + 27px + 7px);
}
.product-card button.wishlist-btn:before {
	content: "" !important;
	display: flex !important;
	width: 27px !important;
	height: 27px !important;
	margin-right: 0px !important;
	background: url(/wp-content/themes/shop/img/icons/black/wishlist.svg) !important;
	background-position: 50% 50% !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	transition: all 0.3s ease;
}
.product-card button.wishlist-btn.woosw-added:before {
	background: url(/wp-content/themes/shop/img/icons/black/wishlist-full.svg) !important;
	background-position: 50% 50% !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
}
.product-card button.compare-btn:before {
	content: "" !important;
	display: flex !important;
	width: 27px !important;
	height: 27px !important;
	margin-right: 0px !important;
	background: url(/wp-content/themes/shop/img/icons/black/compare.svg) !important;
	background-position: 50% 50% !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	transition: all 0.3s ease;
}
button.woosc-btn.woosc-btn-has-icon.woosc-btn-added:before {
	display: flex !important;
}
/* Wishlist + Compare - End  */

/* Start Rating - Start  */
.product-card .star-rating-wrapper {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 20px;
}
.product-card .star-rating-wrapper .star-rating {
	font-size: 18px;
	line-height: 18px;
	color: #cbcbcb;
}
.product-card .star-rating-wrapper .rating-value {
	font-family: var(--font-family-1);
	font-size: 13px;
	line-height: 13px;
	color: #cbcbcb;
	font-weight: 500;
	transform: translateY(1px);
}
/* Start Rating - End  */

/* Product SKU - Start  */
.product-card .product-card-sku {
	font-family: var(--font-family-2);
	font-size: 16px;
	line-height: 22px;
	color: #6b7d90;
	margin-top: 17px;
}

@media (max-width: 1279px) {
	.product-card .product-card-sku {
		font-size: 14px;
		line-height: 22px;
		margin-top: 14px;
	}
}
/* Product SKU - End  */

.product-card .product-title {
	font-family: var(--font-family-1);
	font-size: 18px;
	line-height: 21px;
	width: 100%;
	margin: 14px 0;
	color: var(--black);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}
/* Variation - Start  */
.product-card .options-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 10px;
}
.product-card .options-group .option-block.pa_size-options {
	display: flex;
	margin: 5px 0;
	padding: 10px 0;
	border-top: 1px solid #EBEBEB;
	border-bottom: 1px solid #EBEBEB;
	order: -4;
}
.product-card .options-group .attribute-block.pa_material {
	order: -3;
}
.product-card .options-group .attribute-block.pa_material {
	order: -2;
}
.product-card .options-group .attribute-block.pa_weight {
	order: -1;
}
.product-card .option-values {
	display: flex;
	gap: 3px;
}

.product-card .options-group.cat-2047 .option-value img {
	display: none!important;
}
.product-card .options-group .option-block.pa_color-options {
	display: none;
}
.product-card .options-group .option-block,
.product-card .options-group .attribute-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 5px;
}

.product-card .options-group .option-block .option-value,
.product-card .options-group .attribute-block .attribute-value {
	color: #9A9A9A;
}
.options-group:not(.cat-2018) .option-block.pa_size-options .option-name:after {
	content:","
}

.product-card .options-group.cat-2018 .pa_size-options .option-values {
	display: flex;
	gap: 15px;
}
.product-card .options-group.cat-2018 .pa_size-options .option-values .option-value {
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-card .options-group.cat-2018 .pa_size-options .option-values img {
	object-fit: contain;
	height: fit-content;
	border-radius: 0px;
}
.product-card .options-group.cat-2018 .pa_size-options .option-values .option-name {
	display: none;
}

.product-card .options-group .option-block {
	display: none;
}
.product-card .options-group .option-block.pa_size-options {
	display: flex;
}
.product-card .options-group.cat-2018 .pa_size-options .option-values .option-value[data-value="zbilshenyy"] {
	order: 1;
}
.product-card .options-group.cat-2018 .pa_size-options .option-values .option-value[data-value="forma-zsu"] {
	order: 2;
}
.product-card .options-group.cat-2018 .pa_size-options .option-values .option-value[data-value="standart"] {
	order: 3;
}
.product-card .options-group.cat-2018 .pa_size-options .option-values .option-value[data-value="25x40"] {
	order: 4;
}
.product-card .options-group.cat-2018 .pa_size-options .option-values .option-value[data-value="20x38"] {
	order: 5;
}
.product-card .options-group.cat-2018 .attribute-block.pa_weight {
	display: none;
}
/* Variation - End  */

/* Price - Start  */
.product-card .product-price {
	display: flex;
	gap: 5px;
	align-items: center;
}
.product-card .price,
.product-card .woocommerce-Price-amount {
	font-family: var(--font-family-1);
	font-size: 20px;
	line-height: 22px;
	font-weight: 600;
	color: var(--black);
	display: flex;
	width: fit-content;
}
.product-card .product-price small {
	font-size: 12px;
	line-height: 12px;
	font-family: var(--font-family-1);
}
.product-card .product-price del,
.product-card .product-price del * {
	font-size: 12px!important;
	line-height: 12px!important;
}
.product-card .price.variable-price {
	gap: 5px;
}
.product-card .price del {
	font-size: 14px;
	font-weight: 600;
	color: var(--dark-gray);
	margin-left: 5px;
}
.product-card .price ins {
	text-decoration: none;
}
/* Price - End  */

/* Add To Cart - Start  */
.product-card .btn-info-product {
	margin-top: 25px;
}
.product-card .product_type_simple {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 33px;
	height: 33px;
	background: var(--primary);
	border-radius: 5px;
}
.product-card .product_type_variable {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	height: 33px;
	padding: 0 10px;
	background: var(--primary);
	border-radius: 5px;
}
.product-card .product_type_simple img {
	filter: url(#primary-color-match);
	width: 18px;
	height: 19px !important;
}
.product-card .add_to_cart_button:hover {
	background: var(--accent);
}
/* Add To Cart - End  */

.product-card .product-info-wrapper .product-sku,
.product-card .product-info-wrapper .product-meta,
.product-card .product-info-wrapper .product-short-description,
.product-card .product-info-wrapper .product-categories {
	display: none !important;
}
.action-items {
	display: none!important;
}
.product-tags-or-badges {
	display: none!important;
}






@media (min-width: 1921px) {
	.product-card {
		width: calc(
			(1920px - var(--container-indent)) / var(--products-in-col) - var(--products-indent-w) *
			(var(--products-in-col) - 1) / var(--products-in-col)
			);
	}
	.product-card img {
		height: calc(
			(
				(1920px - var(--container-indent)) / var(--products-in-col) - var(--products-indent-w) *
			(var(--products-in-col) - 1) / var(--products-in-col)
			) * 1
			);
	}
}
@media (max-width: 1480px) {
	.product-list .product-card:nth-child(n + 11) {
		display: none;
	}
	.product-card .product-info-wrapper {
		padding: 5px 15px 15px 15px;
		height: 108px;
	}
	.product-card .product-info-head {
		display: flex;
		flex-direction: column;
		height: 108px;
	}
	.product-card .product-title {
		font-size: 16px;
		line-height: 19px;
	}
	.product-card .product-info-wrapper .product-hover-info {
		position: absolute;
		top: 105px;
		padding: 0 15px 15px 15px;
	}
	.product-card.one-line .product-info-wrapper .product-hover-info {
		top: 85px;
	}
}
@media (max-width: 1279px) {
	.product-card {
		width: calc(
			(100vw - var(--container-indent)) / var(--products-in-col) - var(--products-indent-w) *
			(var(--products-in-col) - 1) / var(--products-in-col)
			);
	}
	.product-card img {
		height: calc(
			(
				(100vw - var(--container-indent)) / var(--products-in-col) - var(--products-indent-w) *
			(var(--products-in-col) - 1) / var(--products-in-col)
			) * 1.25
			);
	}
	@media (pointer: fine) {
		.product-card {
			width: calc(
				(100vw - var(--container-indent) - var(--scroll-bar)) / var(--products-in-col) -
				var(--products-indent-w) * (var(--products-in-col) - 1) / var(--products-in-col)
				);
		}
		.product-card img {
			height: calc(
				(
					(100vw - var(--container-indent) - var(--scroll-bar)) / var(--products-in-col) -
				var(--products-indent-w) * (var(--products-in-col) - 1) / var(--products-in-col)
				) * 1.25
				);
		}
	}
	.product-card .product-info-wrapper {
		padding-left: 5px;
		height: 88px;
	}
	.product-card .product-info-head {
		height: 88px;
	}
	.product-card .product-title {
		font-size: 14px;
		line-height: 16px;
		margin: 10px 0;
	}
	.product-card .price, .product-card .woocommerce-Price-amount {
		font-size: 16px;
		line-height: 16px;
		font-weight: 500;
		gap: 5px;
	}
	.product-card .product-info-wrapper .product-hover-info {
		display: none !important;
	}
}
@media (max-width: 1024px) {
	.product-list .product-card:nth-child(n + 9) {
		display: none;
	}
	.product-card .product-badge:has(span) {
		top: 10px;
		left: 10px;
		padding: 5px 7px 3px 7px;
		font-size: 12px;
		line-height: 12px;
	}
	.product-card .compare-btn,
	.product-card .wishlist-btn {
		top: 10px;
		right: 10px;
	}
	.product-card .compare-btn {
		top: calc(10px + 27px + 7px);
	}
	.product-card .woocommerce-loop-product__title {
		font-size: 16px;
		line-height: 19px;
		margin: 10px 0;
		height: 38px;
	}
	.product-card a.add_to_cart_button.product_type_simple {
		position: relative;
		gap: 8px;
		height: 39px;
		width: 100%;
		margin: 14px 0 0 0;
		padding: 10px;
		font-size: 14px;
		line-height: 14px;
		font-weight: 600;
	}
	.product-card a.add_to_cart_button.product_type_variable {
		position: relative;
		gap: 8px;
		height: 39px;
		width: 100%;
		margin: 14px 0 0 0;
		padding: 10px;
		font-size: 14px;
		line-height: 14px;
		font-weight: 600;
	}
}

/* Product card - End */
