@import url("add/top-bar.css");
@import url("add/search-inline.css");
@import url("add/search-lightbox.css");
@import url("add/catalog-lightbox.css");
@import url("add/currency-switcher.css");
/* @import url('add/side-menu.css'); */

:root {
	--white: #ffffff;
	--gray: #f0f0f3;
	--light-gray: #f9f9f9;
	--dark-gray: #5b5b5b;
	--primary: #bd9a74;
	--primary-match: #ffffff;
	--accent: #1a2b4c;
	--accent-match: #ffffff;
	--black: #0a121f;
	--brown: #6b5e55;
	--border: #eaeaea;
	--blue: #6b7d90;
	--header-height: 130px;
	--container-indent: 40px;
	--blocks-indent: 20px;
	--products-in-col: 5;
	--products-indent-h: 40px;
	--products-indent-w: 15px;
	--scroll-bar: 6px;
	--font-family-1: "Mazzard";
	--font-family-2: "Montserrat";
	--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: 94px;
		--container-indent: 30px;
		--products-indent-h: 30px;
		--products-indent-w: 20px;
		--products-in-col: 4;
	}
}
@media (max-width: 1024px) {
	:root {
		--products-in-col: 3;
	}
}
@media (max-width: 768px) {
	:root {
		--header-height: 78px;
		--blocks-indent: 15px;
		--products-in-col: 2;
	}
}
@font-face {
	font-family: "Montserrat";
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/montserrat/montserrat-400.woff2) format("woff2");
}
@font-face {
	font-family: "Mazzard";
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/mazzardm/mazzardm-500.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);
	}
}
*,
*: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-2);
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	box-sizing: border-box;
	-webkit-locale: auto;
	-webkit-text-size-adjust: none !important;
	-webkit-tap-highlight-color: transparent;
	cursor: default;
}
header {
	position: fixed;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--white);
	width: 100%;
	height: var(--header-height);
	margin: 0;
	padding: 0;
	z-index: 1000;
	box-shadow: 0px 0px 15px 0px #0000001a;
}
header::before {
	content: "";
	position: absolute;
	top: 30px;
	left: 0;
	width: 100%;
	height: 30px;
	background: var(--accent);
}
@media screen and (max-width: 1441px) {
    header::before {
        top: 20px;
    }
}
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;
}
.block-with-cols {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: var(--blocks-indent);
}
.col-50 {
	display: flex;
	flex-direction: column;
	width: calc(50% - var(--blocks-indent) / 2);
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
	font-family: var(--font-family-1);
	font-weight: 500;
	margin: 0;
}
.h1 {
	font-size: 35px;
	line-height: 42px;
}
h2,
.h2 {
	font-size: 35px;
	line-height: 42px;
}
h3,
.h3 {
	font-size: 25px;
	line-height: 30px;
}
h4,
.h4 {
	font-size: 18px;
	line-height: 22px;
}
h5,
.h5 {
	font-size: 15px;
	line-height: 18px;
}
p {
	font-family: var(--font-family-2);
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	margin: 0;
}
small {
	font-family: var(--font-family-1);
	font-size: 14px;
	line-height: 17px;
}
a,
a p {
	color: inherit;
	outline: none;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}
.link {
	transition: all 0.3s ease-in-out;
}
.link:hover {
	color: var(--black);
}
.underline {
	text-decoration: underline;
}
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);
}
.brown {
	color: var(--brown);
}
.blue {
	color: var(--blue);
}
ul.list,
ol.list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0;
}
ul.list li,
ol.list li {
	display: flex;
	align-items: flex-start;
	gap: 6px;
}
ul.list li:before,
ol.list li:before {
	content: "";
	display: flex;
	min-width: 6px;
	width: 6px;
	height: 6px;
	background: var(--primary);
	border-radius: 100%;
	position: relative;
	top: 10px;
}

@media (max-width: 1480px) {
	body {
		font-size: 16px;
		line-height: 24px;
	}
	.h2 {
		font-size: 28px;
		line-height: 33px;
	}
	p {
		font-size: 16px;
		line-height: 24px;
	}
	.logo-header img {
		width: 88px;
	}
	header .btn.btn-primary {
		padding: 15px 30px;
	}
}
@media (min-width: 1280px) {
	.mob {
		display: none !important;
	}
}
@media (max-width: 1279px) {
	.pc {
		display: none !important;
	}
	h1,
	.h1 {
		font-size: 24px;
		line-height: 32px;
	}
	h2,
	.h2 {
		font-size: 20px;
		line-height: 26px;
	}
	h3,
	.h3 {
		font-size: 18px;
		line-height: 22px;
	}
	p {
		font-size: 14px;
		line-height: 18px;
	}
	header .btn.btn-primary {
		display: none;
	}
}
@media (max-width: 1024px) {
	.col-50 {
		width: 100%;
	}
}
/* КНОПКИ */
.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: 55px;
	width: fit-content;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 16px;
	line-height: 16px;
	font-family: var(--font-family-1);
	font-weight: 500;
	transition: all 0.3s ease-in-out;
	border-radius: 4px;
	cursor: pointer;
}
.btn span {
	transition: all 0.3s ease-in-out;
	color: var(--white);
	height: 15px;
}
.btn img {
	height: 14px;
	object-fit: contain;
	transition: filter 0.3s;
}
.btn-full {
	width: 100%;
}
.btn.btn-primary {
	padding: var(--btn-padding);
	background: var(--primary);
}
.btn.btn-primary:hover {
	background: var(--accent);
}
.btn.btn-primary img {
	filter: brightness(0) invert(0);
}
.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(--white);
}
.btn.btn-dark {
	padding: var(--btn-padding);
	background: var(--accent);
}
.btn.btn-dark span {
	color: var(--white);
}
.btn.btn-dark:hover {
	background: var(--primary);
}
.btn.btn-dark img {
	filter: brightness(0) invert(1);
}
.btn.btn-dark:hover > img {
	filter: brightness(1) invert(0);
}
.btn.btn-white {
	padding: var(--btn-padding);
	background: var(--white);
}
.btn.btn-white span {
	color: var(--black);
}
.btn.btn-white:hover {
	background: var(--primary);
}
.btn.btn-white:hover span {
	color: var(--white);
}
.btn.btn-empty {
	padding: var(--btn-padding);
	background: transparent;
	border: 2px solid var(--border);
}
.btn.btn-empty:hover {
	background: var(--primary);
	border: 2px solid var(--primary);
}
.btn.btn-empty:hover span {
	color: var(--black);
}
.btn.btn-empty.primary {
	border: 2px solid var(--primary);
}
.btn.btn-empty.primary span {
	color: var(--white);
}
.btn.btn-empty.primary:hover span {
	color: var(--black);
}
.btn.btn-empty.primary:hover img {
	filter: brightness(0) invert(0);
}
.btn.btn-invert:hover {
	background: var(--black);
}
.btn.btn-invert:hover span {
	color: #fff;
}

.btn.btn-red {
	padding: var(--btn-padding);
	background: #ff0000;
}
.btn.btn-red span {
	color: var(--white);
}
.btn.btn-red:hover {
	background: #c70e0e;
}
.btn.btn-red:hover span {
	color: var(--white);
}

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

.btn.btn-circle {
	height: 43px;
	width: 43px;
	padding: 9px;
	border: 1px solid var(--border);
	border-radius: 100%;
}
.btn.btn-circle img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	transition: filter 0.3s;
}
.btn.btn-small {
	height: 49px;
}
.disabled {
	background: var(--gray) !important;
}
.center {
	margin-left: auto !important;
	margin-right: auto !important;
}
.column {
	flex-direction: column !important;
}
.row {
	flex-direction: row !important;
	flex-wrap: wrap !important;
}
/* КНОПКИ - End */

/* Cookie - Start */
#cookie-consent {
	position: fixed;
	bottom: calc(var(--container-indent) / 2);
	right: calc(var(--container-indent) / 2);
	display: flex;
	flex-direction: column;
	gap: var(--blocks-indent);
	width: 610px;
	max-width: calc(100% - var(--container-indent));
	padding: var(--blocks-indent);
	background: var(--white);
	border-radius: 10px;
	box-shadow: 0px 0px 15px 0px #8e8e8e33;
	z-index: 1000;
	display: none;
}
#cookie-consent .btn-group .btn {
	width: calc(33.33% - var(--blocks-indent) / 3);
}
@media (max-width: 1279px) {
	#cookie-consent .btn-group {
		flex-wrap: wrap;
	}
	#cookie-consent .btn-group .btn {
		width: calc(50% - var(--blocks-indent) / 2);
	}
	#cookie-consent .btn-group .btn#refuse-cookies {
		width: 100%;
	}
}
/* Cookie - End */

/* Header Main - Start */
.header-main {
	height: 70px;
	align-items: center;
}
.logo-header {
	display: flex;
	align-items: center;
	border-right: 1px solid var(--border);
	padding-right: 20px;
}
.btn-circle.user-account {
	background: var(--border);
}
/* Main Menu - Start */
.main-menu {
	margin-right: auto;
}
#main-menu-menu {
	display: flex;
	align-items: center;
	gap: 30px;
	width: 100%;
	list-style: none;
	font-family: var(--font-family-1);
	font-size: 18px;
	line-height: 18px;
	color: var(--black);
}
@media screen and (max-width: 1540px) {
	#main-menu-menu {
		gap: 20px;
		font-size: 16px;
		line-height: 16px;
	}
	html[lang="ru"] #main-menu-menu {
		gap: 20px;
		font-size: 15px;
		line-height: 15px;
	}
}
@media (max-width: 1300px) {
	#main-menu-menu {
		gap: 9px;
	}
}
@media (max-width: 1279px) {
	header .main-menu {
		display: none;
	}
	.logo-header {
		border-right: 0px solid var(--border);
		padding-right: 0;
	}
	.side-menu-call {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 6px;
		width: 44px;
		height: 44px;
		cursor: pointer;
		background: var(--primary);
		border-radius: 5px;
	}
	.side-menu-call > .menu-line {
		display: flex;
		width: 20px;
		height: 2px;
		background: var(--white);
		border-radius: 10px;
	}
}
@media (max-width: 667px) {
	.side-menu-call {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 6px;
		width: 33px;
		height: 35px;
		background: transparent;
		border-radius: 0px;
	}
	.side-menu-call > .menu-line {
		width: 33px;
		background: var(--accent);
	}
}
/* Main Menu - End */

/* Lanuage Switcher - Start */
.language-wrapper {
	position: relative;
	margin-right: -5px;
}
.language-wrapper .language-box {
	position: absolute;
	left: 0;
	right: 0;
	bottom: calc(-130px - 8px);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.language-wrapper.active .language-box {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}
.language-wrapper .language-box a {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #fff;
	width: 38px;
	height: 38px;
	padding: 9px;
	border: 1px solid var(--border);
	border-radius: 100%;
	transition: all 0.3s ease;
}
.language-wrapper .language-box a:hover {
	background: var(--border);
}
.language-wrapper .language-box a.gt-current-lang,
.language-wrapper .language-box a.active {
	display: none;
}

/* Lanuage Switcher - End */

/* Shop Bar Menu - Start */
.shop-functions-group {
	padding-right: var(--blocks-indent);
	border-right: 1px solid var(--border);
}
#shop-bar-menu {
	list-style: none;
	display: flex;
	gap: 15px;
	color: var(--black);
	margin-top: 1px;
}
#shop-bar-menu a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 43px;
	height: 43px;
	background: #f3f3f3;
	border-radius: 100%;
}
#shop-bar-menu li:nth-child(1) {
	order: 3;
}
#shop-bar-menu li:nth-child(1) .woofc-icon-cart7:before {
	content: "";
	display: flex;
	width: 19px;
	height: 27px;
	background: url(/wp-content/themes/shop/img/icons/cart.svg) no-repeat center center;
	background-size: contain;
}
.woofc-menu-item .woofc-menu-item-inner:after {
	background-color: var(--primary) !important;
	color: var(--black) !important;
	font-weight: 700 !important;
	border-radius: 100% !important;
	left: initial !important;
	right: -1px !important;
	top: -5px !important;
	padding-top: 1px !important;
}
.woofc-menu-item .woofc-menu-item-inner .woofc-menu-item-inner-subtotal:before {
	display: none !important;
}
.woofc-menu-item .woofc-menu-item-inner .woofc-menu-item-inner-subtotal * {
	display: none;
}
#shop-bar-menu li:nth-child(2) {
	order: 2;
}
#shop-bar-menu li:nth-child(2) .woosw-menu-item-inner:before {
	content: "";
	display: flex;
	width: 25px;
	height: 22px;
	background: url(/wp-content/themes/shop/img/icons/wishlist.svg) no-repeat center center;
	background-size: contain;
	margin-bottom: 0;
}
#shop-bar-menu li > a > span {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #bfbfbf;
	font-size: 12px;
	font-weight: 400;
	line-height: 15px;
}
#shop-bar-menu li i {
	margin-right: 0 !important;
}
.woosc-menu-item .woosc-menu-item-inner:after,
.woosw-menu-item .woosw-menu-item-inner:after,
.woofc-menu-item .woofc-menu-item-inner:after {
	background-color: var(--blue) !important;
	color: var(--white) !important;
	font-weight: 500 !important;
	border-radius: 100% !important;
	left: initial !important;
	right: -9px !important;
	top: initial !important;
	bottom: -8px !important;
}
#shop-bar-menu li > a > span.woosw-menu-item-inner {
	font-size: 0px !important;
	line-height: 0px !important;
}
@media (max-width: 1279px) {
	#shop-bar-menu a {
		width: 34px;
		height: 34px;
	}
	#shop-bar-menu li:nth-child(2) .woosw-menu-item-inner:before {
		width: 18px;
		height: 16px;
	}
	.woofc-menu-item .woofc-menu-item-inner i {
		width: 14px !important;
	}
	#shop-bar-menu li:nth-child(1) .woofc-icon-cart7:before {
		width: 14px;
		height: 19px;
	}
	.woosw-menu-item .woosw-menu-item-inner:after {
		width: 14px !important;
		height: 14px !important;
		line-height: 14px !important;
	}
	.woofc-menu-item .woofc-menu-item-inner:after {
		width: 14px !important;
		height: 14px !important;
		line-height: 14px !important;
	}
	.btn.btn-circle {
		height: 34px;
		width: 34px;
		padding: 8px;
	}
}
/* Shop Bar Menu - End */

@media (max-width: 1279px) {
	.header-main {
		height: var(--header-height);
		gap: 10px !important;
	}
	.shop-functions-group {
		padding-right: 10px;
	}
	.btn-sale {
		display: none !important;
	}
	.btn-catalog {
		order: -1;
		height: 30px;
		width: 30px;
		padding: 5px 5px !important;
	}
	.btn-catalog span {
		display: none !important;
	}
}
@media (max-width: 768px) {
	.logo-header {
		margin-right: auto;
	}
	.btn-catalog {
		padding: 6px 5px 5px 5px !important;
	}
	.chating,
	.language-wrapper {
		display: none !important;
	}
	ul#shop-bar-menu > .menu-item:not(.woofc-menu-item) > a > span {
		visibility: hidden;
		font-size: 0;
		line-height: 0;
	}
	ul#shop-bar-menu > .menu-item > a > span:before,
	ul#shop-bar-menu > .menu-item > a > span:after {
		visibility: visible;
	}
	.woofc-menu-item-inner-subtotal::before {
		display: none;
	}
	.woosc-menu-item .woosc-menu-item-inner:after,
	.woosw-menu-item .woosw-menu-item-inner:after,
	.woofc-menu-item .woofc-menu-item-inner:after {
		width: 13px;
		height: 13px;
		line-height: 13px;
	}
}
/* Header Main - End */

/* Breadcrumb - Start */
.woocommerce-breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px !important;
	line-height: 18px !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: #9c9c9c !important;
	white-space: nowrap;
}
.woocommerce-breadcrumb span {
	color: #121212 !important;
	white-space: nowrap;
}
.woocommerce-breadcrumb svg {
	height: 17px;
}
@media (max-width: 768px) {
	.woocommerce-breadcrumb {
		padding-top: 15px !important;
		padding-bottom: 15px !important;
		font-size: 14px !important;
		line-height: 14px !important;
	}
	.woocommerce-breadcrumb svg {
		height: 15px;
	}
}
/* 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:not(.cart-icon) {
	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)
		);
	width: 100%;
	object-fit: contain; 
	border-radius: 10px;
}
.product-card .product-badge {
}
.product-card .product-badge:has(span) .onsale {
	display: block;
	position: absolute;
	top: 15px;
	left: 15px;
	background: #ff1b1b;
	border-radius: 3px;
	padding: 6px 10px 6px 10px;
	font-size: 13px;
	line-height: 13px;
	color: #ffffff;
}
.product-card .product-badge:has(span) .onsale.expected {
	background: #1a2a4b;
}
span.onsale.expected + .onsale {
	display: none;
}
.product-card .product-badge:has(span) {
}
.product-card .compare-btn,
.product-card .wishlist-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background: var(--white);
	border: none;
	border-radius: 6px;
	padding: 12px 12px 12px 12px;
	cursor: pointer;
}
.product-card .compare-btn {
	top: calc(15px + 27px + 7px);
}
.product-card .star-rating {
	display: none !important;
}
.product-card button.wishlist-btn:before {
	content: "" !important;
	display: flex !important;
	width: 27px !important;
	height: 27px !important;
	background: url(/wp-content/themes/shop/img/icons/black/wishlist.svg) no-repeat center center !important;
	background-size: contain !important;
	margin-right: 0px !important;
	filter: brightness(0) url(#primary-color);
}
.product-card button.wishlist-btn.woosw-added:before {
	background: url(/wp-content/themes/shop/img/icons/black/wishlist-full.svg) no-repeat center center !important;
	background-size: contain !important;
}
.product-card button.compare-btn:before {
	content: "" !important;
	display: flex !important;
	width: 27px !important;
	height: 27px !important;
	background: url(/wp-content/themes/shop/img/icons/compare.svg) no-repeat center center !important;
	background-size: contain !important;
	margin-right: 0px !important;
}
button.woosc-btn.woosc-btn-has-icon.woosc-btn-added:before {
	display: flex !important;
}
.product-card .product-card-sku {
	font-family: var(--font-family-2);
	font-size: 16px;
	line-height: 22px;
	color: #6b7d90;
	margin-top: 17px;
}
.product-card .woocommerce-loop-product__title {
	font-family: var(--font-family-1);
	font-size: 25px;
	line-height: 30px;
	width: 100%;
	margin: 7px 0 20px 0;
	color: var(--black);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	height: 60px;
}
.product-card .price {
	font-family: var(--font-family-1);
	font-size: 22px;
	line-height: 24px;
	font-weight: 500;
	color: var(--black);
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 10px;
	width: 100%;
	padding-top: 25px;
	padding-bottom: 12px;
	margin-top: auto;
}
.product-card .price.price-variable {
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.product-card .price.price-variable .price-separator,
.product-card .price.price-variable .price-separator + .woocommerce-Price-amount {
	display: none;
}
.product-card .price.price-variable > .woocommerce-Price-amount:nth-child(1):before {
	content: "";
}
.product-card .price del {
	font-size: 18px;
	color: #6b7d90;
}
.product-card .price ins {
	text-decoration: none;
}
.product-card .product_type_simple:not(.add_to_cart_button) {
	display: none!important;
}
.product-card .add_to_cart_button {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--primary);
	border-radius: 6px;
}
.product-card .add_to_cart_button img {
	filter: brightness(0) invert(1);
	width: 20px;
	height: 26px;
}
.product-card .add_to_cart_button:hover {
	background: var(--accent);
}
.product-card .color-options {
	display: flex;
	border-bottom: 1px solid var(--border);
	padding-bottom: 15px;
}
.product-card .color-option {
	display: flex;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background: red;
	border: 1px solid #eaeaea;
}
.product-card .color-option:not(:nth-child(1)) {
	margin-left: -10px;
}
.product-card .color-option.gold {
	background: #d7bd82;
	border-color: #d7bd82;
}
.product-card .color-option.rose-gold {
	background: #b87333;
	border-color: #b87333;
}
.product-card .color-option.grafit {
	background: #616169;
	border-color: #616169;
}
.product-card .color-option.inox {
	background: #e6e6e6;
	border-color: #e6e6e6;
}
.product-card .color-option.satyna {
	background: #cdcdcd;
	border-color: #cdcdcd;
}
.product-card .color-option.black {
	background: #222;
	border-color: #222;
}
.product-card .color-option.bezowy {
	background: #fcebcc;
	border-color: #fcebcc;
}
.product-card .color-option.szary {
	background: #808080;
	border-color: #808080;
}
@media (max-width: 1480px) {
	.product-card .color-options {
		padding-bottom: 15px;
	}
	.product-card .color-option {
		display: flex;
		width: 21px;
		height: 21px;
	}
	.product-card .color-option:not(:nth-child(1)) {
		margin-left: -7px;
	}
	.product-list .product-card:nth-child(n + 11) {
		display: none;
	}
	.product-card .price {
		font-size: 16px;
	}
	.product-card .price del {
		font-size: 14px;
		color: #6b7d90;
	}
	.product-card .woocommerce-loop-product__title {
		font-size: 20px;
		line-height: 23px;
		margin: 10px 0 15px 0;
		height: 46px;
	}
}
@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)
			);
	}
	.product-list .product-card .color-options {
		margin-bottom: 15px;
	}
}
@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: 15px;
		right: 15px;
		width: 30px;
		height: 30px;
		padding: 7px 7px 7px 7px;
	}
	.product-card .compare-btn {
		top: calc(15px + 30px + 7px);
	}
	.product-card .product-card-sku {
		font-size: 14px;
		line-height: 22px;
		margin-top: 14px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
		-webkit-line-clamp: 1;
	}
	.product-card .woocommerce-loop-product__title {
		font-size: 18px;
		line-height: 21px;
		width: 100%;
		height: 42px;
		margin: 10px 0 15px 0;
		word-break: break-all;
	}
	.product-card .add_to_cart_button {
		width: 40px;
		height: 40px;
		padding: 12px;
	}
	.product-card .price {
		font-size: 18px;
		line-height: 22px;
		flex-direction: column;
		justify-content: flex-end;
		justify-content: center;
		height: 40px;
		gap: 3px;
		padding-top: 0;
		padding-bottom: 0;
	}
	.product-card .price del {
		font-size: 14px;
		line-height: 16px;
		width: 100%;
	}
	.product-card .price.price-variable {
		align-items: center;
	}
}
/* Product card - End */
del small {
	display: none !important;
}
.price small {
	font-size: 12px !important;
	line-height: 16px !important;
}

.customer-support-container {
    position: relative;
    top: var(--header-height);
    padding-bottom: 100px;
}
.customer-support {
    padding-left: 20px;
}
.customer-support > * {
    margin: 1em 0;
}
.customer-support ul {
    padding-left: 20px;
}

.certificates-container {
    position: relative;
    top: var(--header-height);
    padding-bottom: 100px;
}
.certificates {
    padding: 0 20px;
}
.certificates .wp-block-file {
    margin-bottom: 10px;
}
.certificates .wp-block-file .wp-block-file__button {
    padding: 8px;
    border-radius: 100px;
    margin-left: 8px;
}

.support-link {
    text-decoration: underline;
}

.compensation-details label {
    margin-top: var(--blocks-indent);
}

@media screen and (max-height: 950px) {
    .return-form .lightbox-section {
        height: 70vh;
        overflow: hidden;
    }
    .return-form .lightbox-content {
        height: calc(70vh - 80px);
        overflow: scroll;
    }
    .return-form .close-lightbox {
        top: 5px;
        right: 5px;
    }
}
@media screen and (max-width: 1279px) {
    .return-form .lightbox-content {
        height: calc(70vh - 50px);
    }
}

.payment-info.invoice {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.payment-info.invoice input {
    background: white;
}

.custom-coupon-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.custom-coupon-field button {
    color: white;
    height: 35px;
    padding: 0 8px;
}

.p-ExpressCheckoutButtonGroup {
    flex-wrap: nowrap;
}

.thank-you {
    justify-content: flex-start;
}

.upper-header {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BD9A74;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}
@media screen and (max-width: 1441px) {
    .upper-header {
        height: 20px;
    }
    header {
        justify-content: flex-start;
    }
}







