@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: #f1f3f6;
	--red: #ff0000;
	--red-hover: #dd1212;
	--light-gray: #f9f9f9;
	--dark-gray: #5b5b5b;
	--primary: #56b4fb;
	--primary-match: var(--white);
	--accent: #448abf;
	--accent-match: var(--white);
	--bg-light: #56b4fb;
	--black: #2b2b2a;
	--border: #eaeaea;
	--header-height: 115px;
	--top-bar-height: 35px;
	--container-indent: 60px;
	--blocks-indent: 16px;
	--products-in-col: 5;
	--products-indent-h: 40px;
	--products-indent-w: 20px;
	--scroll-bar: 6px;
	--font-family-1: "Fixel Text";
	--font-family-2: "Fixel Display";
	--btn-height: 45px;
	--btn-height-small: 40px;
	--btn-padding: 0 24px;
}
@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: 50px;
		--products-indent-h: 20px;
		--products-indent-w: 10px;
		--products-in-col: 2;
	}
}
@font-face {
	font-family: "Fixel Display";
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/fixel/fixel-display-400.woff2) format("woff2");
}
@font-face {
	font-family: "Fixel Display";
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/fixel/fixel-display-500.woff2) format("woff2");
}
@font-face {
	font-family: "Fixel Display";
	font-weight: 600;
	font-display: swap;
	src: url(../fonts/fixel/fixel-display-600.woff2) format("woff2");
}
@font-face {
	font-family: "Fixel Text";
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/fixel/fixel-text-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(--white);
	color: var(--black);
	font-family: var(--font-family-1);
	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;
	overflow: hidden;
}
.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-50 {
	display: flex;
	flex-direction: column;
	width: calc(50% - var(--blocks-indent) / 2);
}
.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);
}
/* 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 {
	font-family: var(--font-family-1);
	font-weight: 500;
	margin: 0;
}
.h1 {
	font-size: 48px;
	line-height: 56px;
}
h2,
.h2 {
	font-size: 32px;
	line-height: 40px;
}
h3,
.h3 {
	font-size: 25px;
	line-height: 30px;
}
h4,
.h4 {
	font-size: 22px;
	line-height: 28px;
}
h5,
.h5 {
	font-size: 20px;
	line-height: 24px;
}
p {
	font-family: var(--font-family-1);
	font-size: 16px;
	line-height: 24px;
	font-weight: 300;
	margin: 0;
}
small {
	font-family: var(--font-family-1);
	font-size: 14px;
	line-height: 17px;
}
@media (max-width: 1480px) {
	.h1 {
		font-size: 48px;
		line-height: 56px;
	}
	h2,
	.h2 {
		font-size: 32px;
		line-height: 40px;
	}
	h3,
	.h3 {
		font-size: 25px;
		line-height: 30px;
	}
	h4,
	.h4 {
		font-size: 22px;
		line-height: 28px;
	}
	p {
		font-size: 14px;
		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: 20px;
		line-height: 24px;
	}
	h4,
	.h4 {
		font-size: 22px;
		line-height: 28px;
	}
	p {
		font-size: 14px;
		line-height: 22px;
	}
	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: 20px;
		line-height: 24px;
	}
	h4,
	.h4 {
		font-size: 22px;
		line-height: 28px;
	}
	p {
		font-size: 14px;
		line-height: 22px;
	}
	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: 16px;
	line-height: 24px;
}
ul.menu#top-bar-menu {
	font-size: 14px;
	line-height: 17px;
}
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: #d3d3d3;
}
ins {
	text-decoration: none;
}
img {
	display: block;
	max-width: 100%;
	object-fit: cover;
	height: auto;
}
.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;
}
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: 8px;
	left: 4px;
	background: var(--primary);
	width: 8px;
	height: 8px;
	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;
	}
}
/* КНОПКИ */
.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: 600;
	transition: all 0.3s ease;
	border-radius: 4px;
	cursor: pointer;
}
.btn span {
	font-family: var(--font-family-1);
	font-weight: 500;
	height: 12px;
	transition: all 0.3s ease;
}
.btn img {
	height: 14px;
	object-fit: contain;
	transition: filter 0.3s;
}
.btn-full {
	width: 100%;
}

/* Primary - Start */
.btn.btn-primary {
	background: var(--primary);
	padding: var(--btn-padding);
}
.btn.btn-primary span {
	color: var(--primary-match);
}
.btn.btn-primary:hover {
	background: var(--accent);
}
.btn.btn-primary:hover 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 {
	background: var(--white);
}
.btn.btn-dark:hover span {
	color: var(--black);
}
.btn.btn-dark img {
	filter: brightness(0) invert(1);
}
.btn.btn-dark:hover > 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 {
	background: var(--black);
}
.btn.btn-white:hover span {
	color: var(--white);
}
.btn.btn-white img {
	filter: brightness(1) invert(0);
}
.btn.btn-white:hover > 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 {
	background: var(--primary);
}
.btn.btn-gray:hover 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 {
	background: var(--red-hover);
}
.btn.btn-red:hover span {
	color: var(--white);
}
.btn.btn-red img {
	filter: brightness(0) invert(1);
}
.btn.btn-red:hover > img {
	filter: brightness(0) invert(1);
}
/* Red - End */

/* Border - Start */
.btn.btn-border {
	background: transparent;
	border: 2px solid var(--border);
	padding: var(--btn-padding);
}
.btn.btn-border span {
	color: var(--black);
}
.btn.btn-border:hover {
	background: var(--primary);
	border: 2px solid var(--primary);
}
.btn.btn-border:hover span {
	color: var(--primary-match);
}
.btn.btn-border:hover img {
	filter: brightness(100);
}
.btn.btn-border.primary {
	border: 2px solid var(--primary);
}
.btn.btn-border.primary span {
	color: var(--black);
}
.btn.btn-border.primary:hover {
	background: var(--primary);
}
.btn.btn-border.primary:hover span {
	color: var(--primary-match);
}
.btn.btn-border.primary:hover 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 {
	background: var(--red);
}
.btn.btn-border.red:hover span {
	color: var(--white);
}
.btn.btn-border.red:hover img {
	filter: url(#red-color);
}
/* Border - End */

/* Special - Start */
.btn.btn-circle {
	height: 38px;
	width: 38px;
	padding: 9px;
	border: 1px solid var(--border);
	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 */

/* 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 */

/* 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);
	white-space: nowrap;
	transition: all 0.3s ease;
}
.woocommerce-breadcrumb span {
	color: var(--black) !important;
	white-space: nowrap;
}
.woocommerce-breadcrumb svg {
	transform: translateY(0px);
}
/* 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
	);
	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.2
	);
	width: 100%;
	object-fit: cover;
	border-radius: 5px;
	object-position: 0% 0%;
}
.product-card .product-info-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}
/* 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 {
	display: none;
	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  */
.options-group {
	margin-bottom: 14px;
}
.options-group .option-block.pa_color-options {
	display: none;
}
.options-group .option-block {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.options-group .option-block span.option-value {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	min-width: fit-content;
	padding: 0 6px;
	padding-top: 2px;
	background: #eaeaea;
	border-radius: 5px;
	font-size: 14px;
	line-height: 14px;
}
/* Variation - End  */

/* Price - Start  */
.product-card .product-price {
	display: flex;
	margin-top: auto;
	gap: 10px;
}
.product-card .product-price del * {
    font-size: 14px;
}
.product-card .price,
.product-card .woocommerce-Price-amount {
	font-family: var(--font-family-1);
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	color: var(--black);
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	width: fit-content;
	margin-top: auto;
}
.product-card .price.variable-price {
	gap: 5px;
}
.product-card .price del {
	font-size: 14px;
	font-weight: 600;
	color: var(--dark-gray);
}
.product-card .price ins {
	text-decoration: none;
}
/* Price - End  */

/* Add To Cart - Start  */
.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;
	object-fit: contain;
}
.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;
}

@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.2
		);
	}
}
@media (max-width: 1480px) {
	.product-list .product-card:nth-child(n + 11) {
		display: none;
	}
}
@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.2
		);
	}
	@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.2
			);
		}
	}
}
@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 */
