/* 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(
		(
			var(--full-width) - var(--container-indent) - var(--side-bar) - var(--blocks-indent-category) -
		var(--scroll-bar)
		) / var(--products-in-col) - var(--products-indent-w) * (var(--products-in-col) - 1) /
		var(--products-in-col) - 5px
		);
	background: var(--white);
	border: 1px solid #cad4d8;
	border-radius: 20px;
}
.product-card .product-image-wrapper {
	padding: 5px;
}
.product-card img {
	height: calc(
		(
			(
				var(--full-width) - var(--container-indent) - var(--side-bar) - var(--blocks-indent-category) -
		var(--scroll-bar)
		) / var(--products-in-col) - var(--products-indent-w) * (var(--products-in-col) - 1) /
		var(--products-in-col)
		) * 1
		);
	width: 100%;
	object-fit: contain;
	border-radius: 5px;
}
.product-card img.cart-icon {
	border-radius: 0px;
}
.product-card > a {
	height: 100%;
	display: flex;
	flex-direction: column;
	font-size: 0;
	line-height: 0;
}
.product-card .product-info-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 0 16px 16px 16px;
}
/* Product Badge - Start */
.product-tags-or-badges {
	position: absolute;
	top: 16px;
	left: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.product-card .product-badge {
	display: block;
	background: #244b59;
	padding: 9px 16px 9px 16px;
	font-size: 12px;
	line-height: 14px;
	color: var(--primary-match);
	border-radius: 100px;
}
/* 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;
}
/* Product Stock Status - End */

/* Wishlist + Compare - Start  */
.product-card .action-items {
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.product-card .compare-btn,
.product-card .wishlist-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background: var(--black);
	border: none;
	border-radius: 100%;
	padding: 7px 7px 7px 7px;
	cursor: pointer;
}
.product-card button.wishlist-btn:before {
	content: "" !important;
	display: flex !important;
	width: 18px !important;
	height: 18px !important;
	margin-right: 0px !important;
	background: url(/wp-content/themes/shop/img/icons/wishlist.svg) !important;
	filter: brightness(0) invert(1);
	background-position: 50% 50% !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	transition: all 0.3s ease;
}
.in-wishlist-already {
	position: relative;
}
.product-card button.wishlist-btn.in-wishlist-already:before {
	background: url(/wp-content/themes/shop/img/icons/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: 17px !important;
	height: 26px !important;
	margin-right: 0px !important;
	background: url(/wp-content/themes/shop/img/icons/compare.svg) !important;
	background-position: 50% 50% !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	transition: all 0.3s ease;
}
.in-compare-already {
	position: relative;
}
.in-compare-already:after {
	content: "";
	position: absolute;
	top: -2px;
	right: -2px;
	width: 10px;
	height: 10px;
	background-color: var(--accent);
	border-radius: 50%;
}
/* 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-card .action-items {
		top: 10px;
		right: 10px;
	}
}
/* Product SKU - End  */

.product-card .product-title {
	font-family: var(--font-family-2);
	font-size: 16px;
	line-height: 21px;
	height: 42px;
	width: calc(100% - 55px);
	margin: 10px 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: none;
}
.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;
	padding-top: 2px;
	background: #eaeaea;
	border-radius: 5px;
	font-size: 14px;
	line-height: 14px;
}
/* Variation - End  */

/* Price - Start  */
.product-card .product-price {
	display: flex;
	gap: 8px;
	margin-top: auto;
}
.product-card .product-price:has(del) {
	flex-direction: row-reverse;
	width: fit-content;
}
.product-card .product-price del * {
	color: #d3d3d3;
	font-size: 14px;
}
.product-card .price,
.product-card .woocommerce-Price-amount {
	font-family: var(--font-family-2);
	font-size: 16px;
	line-height: 21px;
	font-weight: 500;
	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: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: #f2f4f5;
	border-radius: 10px;
}
.product-card .product_type_variable {
	position: absolute;
	bottom: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: #f2f4f5;
	border-radius: 10px;
}
.product-card .product_type_simple img {
	width: 22px;
	height: 22px !important;
}
.product-card .product_type_variable img {
	width: 22px;
	height: 22px !important;
}
.product-card .add_to_cart_button:hover {
	background: var(--accent);
}
.product-card .product_type_variable: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 (max-width: 1024px) {
	.product-card .woocommerce-loop-product__title {
		font-size: 16px;
		line-height: 19px;
		height: 38px;
		width: calc(100% - 40px);
		margin: 10px 0;
		height: 38px;
	}
	.product-card a.add_to_cart_button.product_type_simple {
		bottom: 8px;
		right: 8px;
		height: 36px;
		width: 36px;
	}
	.product-card a.add_to_cart_button.product_type_simple img {
		height: 16px;
		width: 16px;
	}
	.product-card a.add_to_cart_button.product_type_variable {
		bottom: 8px;
		right: 8px;
		height: 36px;
		width: 36px;
	}
	.product-card a.add_to_cart_button.product_type_variable img {
		height: 16px;
		width: 16px;
	}
	.product-tags-or-badges {
		top: 8px;
		left: 8px;
		gap: 5px;
	}
	.product-card .product-badge {
		padding: 6px 12px 6px 12px;
		font-size: 12px;
		line-height: 14px;
	}
	.product-card .product-info-wrapper {
		padding: 0 8px 8px 8px;
	}
	.product-card .product-price {
		margin-bottom: 2px;
	}
	.product-card .price,
	.product-card .woocommerce-Price-amount {
		font-size: 12px;
		line-height: 16px;
		gap: 4px;
	}
	.product-card .product-price del * {
		font-size: 10px;
	}
	.product-card .product-title {
		font-size: 14px;
		line-height: 16px;
		height: 32px;
		width: calc(100% - 40px);
		margin: 5px 0;
	}
}
@media (max-width: 768px) {
	.product-list .product-card:nth-child(n + 9) {
		display: none;
	}
}
/* Product card - End */

/* Breadcrumb - Start */
.woocommerce-breadcrumb {
	display: flex;
	align-items: center;
	gap: 5px;
	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 {
	white-space: nowrap;
	transition: all 0.3s ease;
}
.woocommerce-breadcrumb a:hover {
	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 */

/* List - Start */
.text-box ul,
.text-box ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
.text-box ol {
	counter-reset: item;
}
.text-box ul li,
.text-box ol li {
	position: relative;
	padding-left: 22px;
	font-size: 16px;
	line-height: 24px;
}
.text-box ul > li:before {
	content: "";
	position: absolute;
	top: 11px;
	left: 0px;
	background: var(--black);
	width: 15px;
	height: 2px;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.text-box ol > li:before {
	counter-increment: item;
	content: counter(item) ".";
	position: absolute;
	left: 2px;
	top: 0;
	color: var(--primary);
	font-weight: 600;
}
.text-box ol > li:nth-child(1):before {
	left: 3px;
}
.text-box ol > li:nth-child(n + 10):before {
	left: -3px;
}
/* List - End */

/* List Check - Start */
.list-check {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.list-check-item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}
.list-check-item img {
	position: relative;
	top: 5px;
	min-width: 18px;
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.text-box p {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}
/* List Check - 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 */

/* Scroll to Top - Start */
#scrollToTopBtn {
	display: none;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	bottom: 64px;
	right: 64px;
	z-index: 999;
	cursor: pointer;
	height: 60px;
	width: 60px;
	padding: 0px;
	border-radius: 100%;
	background-color: var(--primary);
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
}
#scrollToTopBtn svg {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	transition: all 0.3s ease;
}
#scrollToTopBtn svg path {
	stroke: var(--primary-match);
}
#scrollToTopBtn.active {
	opacity: 1;
	pointer-events: all;
}
#scrollToTopBtn:hover {
	background-color: var(--accent);
}
#scrollToTopBtn:hover svg path {
	stroke: var(--accent-match);
}
@media (max-width: 1279px) {
	#scrollToTopBtn {
		width: 56px;
		height: 56px;
		right: 20px;
		bottom: 15px;
	}
}
/* Scroll to Top - End */

/* Forms All - Start */
::-webkit-input-placeholder {
	color: #555555;
	transform: translateY(0px);
}
:-moz-placeholder {
	color: #555555;
	transform: translateY(0px);
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
}
input[type="number"] {
	-moz-appearance: textfield;
	appearance: textfield;
}
input,
textarea {
	width: 100%;
	color: var(--black);
	padding: 12px 12px 12px 4px;
	outline: none;
	border: none;
	background: transparent;
	border-bottom: 1px solid #234b5a;
	border-radius: 0;
	font-family: var(--font-family-2);
	font-size: 14px;
	line-height: 18px;
}
.checkbox-custom {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
.checkbox-custom input {
	display: none;
}
.checkbox-custom input + span {
	position: relative;
	display: flex;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border: 1px solid #e2e2e2;
	border-radius: 100%;
	transition: all 0.3s ease-in-out;
}
.checkbox-custom input:checked + span {
	border: 1px solid var(--primary);
}
.checkbox-custom input + span::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: var(--primary);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}
.checkbox-custom input:checked + span::after {
	opacity: 1;
	visibility: visible;
}
.checkbox-custom input + span + span {
	transform: translateY(0px);
}
.privacy-policy:not(body) a {
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}
.privacy-policy a:hover {
	color: var(--dark-gray);
}
input.error {
	background: rgb(255 0 0 / 30%) !important;
}
/* Forms All - End */

/* Forms Lightbox - Start */
.form-lightbox-wrapper {
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 15px;
	z-index: 0;
	opacity: 0;
	transition: all 0.5s ease-in-out;
	pointer-events: none;
}
.form-lightbox-wrapper.ready {
	position: fixed;
	z-index: 99999;
}
.form-lightbox-wrapper.active {
	pointer-events: all;
	opacity: 1;
}
.lightbox-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(65, 65, 65, 0.3);
	opacity: 0;
	transition: all 0.5s ease-in-out;
	pointer-events: none;
	z-index: 110;
}
.form-lightbox-wrapper.active .lightbox-background {
	pointer-events: all;
	opacity: 1;
}
.lightbox-section {
	position: relative;
	display: flex;
	width: 500px;
	max-width: 100%;
	max-height: calc(100vh - var(--header-height));
	padding: 40px 20px 40px 40px;
	margin-top: var(--header-height);
	background: var(--light-gray);
	border-radius: 10px;
	box-shadow: 0px 0px 24px 0px #8e8e8e33;
	z-index: 120;
}
.close-lightbox {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 10px;
	cursor: pointer;
}
.close-lightbox img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}
.lightbox-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
	height: 100%;
	max-height: calc(100dvh - var(--header-height) - 120px - 40px);
	overflow-y: auto;
	padding-right: 20px;
}
.form-head {
	display: flex;
	align-items: center;
	gap: 10px;
}
.form-head .h3 {
	text-align: center;
	transform: translateY(5px);
	width: 100%;
}
.form-description {
	display: flex;
	line-height: 20px;
	text-align: center;
	margin: 0 auto;
	max-width: 310px;
}
.form-head img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}
.form-fields {
	display: flex;
	flex-direction: column;
	gap: var(--blocks-indent);
}
.form-data-group {
	display: flex;
	gap: var(--blocks-indent);
	width: 100%;
}
.form-col-66,
.form-col-50,
.form-col-33,
.form-col-25 {
	flex-wrap: wrap;
}
.form-col-66 > * {
	width: calc(66.66% - var(--blocks-indent) / 2);
}
.form-col-50 > * {
	width: calc(50% - var(--blocks-indent) / 2);
}
.form-col-33 > * {
	width: calc(33.33% - var(--blocks-indent) * 2 / 3);
}
.form-col-33.c2 > * {
	width: calc(33.33% - var(--blocks-indent) / 2);
}
.form-col-25 > * {
	width: calc(25% - var(--blocks-indent) * 3 / 4);
}
.form-col-25.c2 > * {
	width: calc(25% - var(--blocks-indent) 2 / 3);
}
.form-col-25.c3 > * {
	width: calc(25% - var(--blocks-indent) / 2);
}
@media (max-width: 1279px) {
	.form-data-group:not(:last-child) {
		margin-bottom: 16px;
	}
	.lightbox-section {
		padding: 30px 10px 30px 30px;
		margin-top: 0;
	}
	.close-lightbox {
		top: 5px;
		right: 5px;
	}
	.form-col-25 > * {
		width: calc(50% - var(--blocks-indent) / 2);
	}
	.form-col-25.c2 > *,
	.form-col-25.c3 > * {
		width: calc(100% - 0px);
	}
	.form-col-66 > *,
	.form-col-50 *,
	.form-col-33 *,
	.form-col-33.c2 * {
		width: calc(100% - 0px);
	}
}
@media (max-width: 768px) {
	.form-col-25 > * {
		width: calc(100% - 0px);
	}
}
/* Form Lightbox - End */

/* Informer Lightbox - Start */
.informer-wrapper {
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 15px;
	z-index: 0;
	opacity: 0;
	transition: all 0.5s ease-in-out;
	pointer-events: none;
}
.informer-wrapper.ready {
	position: fixed;
	z-index: 99999;
}
.informer-wrapper.active {
	pointer-events: all;
	opacity: 1;
}
.informer-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(65, 65, 65, 0.3);
	opacity: 0;
	transition: all 0.5s ease-in-out;
	pointer-events: none;
	z-index: 110;
}
.informer-wrapper.active .informer-background {
	pointer-events: all;
	opacity: 1;
}
.informer-section {
	position: relative;
	display: flex;
	width: 620px;
	max-width: 100%;
	max-height: calc(100vh - var(--header-height));
	padding: 45px;
	margin-top: var(--header-height);
	background: var(--white);
	border-radius: 15px;
	box-shadow: 0px 0px 24px 0px #8e8e8e33;
	overflow-y: auto;
	z-index: 120;
}
.close-informer {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 15px;
	cursor: pointer;
}
.close-lightbox img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}
.informer-content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
	height: 100%;
}
.informer-content-box {
	display: flex;
	flex-direction: column;
}
@media (max-width: 1279px) {
	.informer-section {
		padding: 20px;
		margin-top: 0;
	}
	.close-informer {
		top: 5px;
		right: 5px;
	}
}
/* Informer Lightbox - End */

/* User Account Lightbox - Start */
#login-lightbox .lightbox-section {
	width: 600px;
}
.user-ajax-wrapper {
	display: flex;
	flex-direction: column;
	gap: var(--blocks-indent);
}
.user-ajax-wrapper .h2 {
	text-align: center;
}
.user-ajax-wrapper p {
	font-size: 16px;
	line-height: 21px;
	color: #6b7d90;
	text-align: center;
	max-width: 480px;
	margin: 0px auto 20px auto;
}
.user-ajax-wrapper input {
	border: 1px solid #d1d5db;
	padding: 15px 15px 15px 15px;
}
#forgot-password {
	font-size: 16px;
	line-height: 19px;
	color: #6b7d90;
	margin-bottom: 15px;
}
.user-ajax-wrapper .btn {
	color: #fff;
}
.user-navigtion {
	font-family: var(--font-family-1);
	font-size: 18px;
	line-height: 18px;
	text-align: center;
}
.pc-text {
	font-size: 16px;
	line-height: 19px;
	color: #0a121f;
	text-align: center;
	margin-top: 10px;
}
#login-lightbox input.woocommerce-invalid {
	background: rgb(255 0 0 / 30%) !important;
}
#login-lightbox .error-message {
	font-family: var(--font-family-1);
	font-size: 14px;
	line-height: 14px;
	color: red;
	margin-top: -10px;
}
@media (max-width: 1279px) {
	.user-ajax-wrapper p {
		font-size: 14px;
		line-height: 17px;
		margin: 0px auto 10px auto;
	}
	.user-navigtion {
		font-size: 16px;
	}
	.pc-text {
		font-size: 14px;
		line-height: 17px;
	}
}
/* User Account Lightbox - End */

/* One Click Order - Start */
.one-click-order .lightbox-section {
	max-width: 900px;
}
/* One Click Order - End */

/* FAQ - Start */
section.faq {
	padding-top: 50px;
	padding-bottom: 100px;
}
section.faq .h2 {
	margin-bottom: 20px;
}
.faq-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 25px;
	border: 1px solid #234b5a3d;
	border-radius: 20px;
}
.faq-question span {
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
}
.answer-content * {
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
}
.faq-question i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background: var(--black);
	border-radius: 100%;
}
.faq-question i img {
	position: absolute;
	width: 14px;
	height: 14px;
	object-fit: contain;
	filter: var(--primary-filter-match);
	opacity: 1;
	transition: all 0.5s ease;
}
.faq-question i img + img {
	position: absolute;
	filter: var(--primary-filter-match);
	opacity: 0;
	transition: all 0.5s ease;
}
.faq-question.active i img {
	opacity: 0;
}
.faq-question.active i img + img {
	opacity: 1;
}
.faq-answer {
	display: none;
	padding: 7px 7px 7px 15px;
}
.answer-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.faq-answer.open {
	visibility: visible;
	max-height: 1000px;
	opacity: 1;
}
@media (max-width: 1279px) {
	.faq-question {
		padding: 20px;
	}
	.faq-question i {
		width: 36px;
		height: 36px;
	}
	.answer-content * {
		font-size: 14px;
		line-height: 18px;
	}
}
/* FAQ - End */

/* Catalog Lightbox - Start */
.catalog-lightbox-wrapper {
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 15px;
	z-index: 0;
	opacity: 0;
	transition: all 0.5s ease-in-out;
	pointer-events: none;
}
.catalog-lightbox-wrapper.ready {
	position: fixed;
	z-index: 99999;
}
.catalog-lightbox-wrapper.active {
	pointer-events: all;
	opacity: 1;
}
.catalog-lightbox-wrapper.active .lightbox-background {
	pointer-events: all;
	opacity: 1;
}
.catalog-lightbox-wrapper .lightbox-section {
	position: relative;
	display: flex;
	width: 1000px;
	max-width: 100%;
	height: calc(100vh - 50px);
	max-height: 700px;
	margin-top: var(--header-height);
	background: var(--white);
	border-radius: 10px;
	box-shadow: 0px 0px 24px 0px #8e8e8e33;
	overflow-y: auto;
	z-index: 120;
}

.catalog-lightbox-wrapper .close-lightbox {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 15px;
	cursor: pointer;
	z-index: 5;
}

.catalog-lightbox-wrapper .close-lightbox img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.catalog-lightbox-wrapper .lightbox-content {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 30px;
}

.catalog-lightbox-wrapper .catalog-menu-top {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.catalog-lightbox-wrapper .catalog-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.catalog-lightbox-wrapper .category-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: calc(16.66% - 17px);
	padding: 15px;
	background: var(--light-gray);
	border-radius: var(--border-radius-10);
	transition: all 0.3s ease;
}

.catalog-lightbox-wrapper .category-item:hover {
	background: var(--primary);
}

.catalog-lightbox-wrapper .category-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	margin-bottom: 10px;
}

.catalog-lightbox-wrapper .category-icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.catalog-lightbox-wrapper .category-name {
	text-align: center;
	font-size: 14px;
	line-height: 18px;
	font-weight: 500;
}

.catalog-lightbox-wrapper .subcategories-toggle {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--white);
	border-radius: 50%;
	cursor: pointer;
}

.catalog-lightbox-wrapper .subcategories-toggle img {
	width: 8px;
	height: 8px;
	transition: transform 0.3s ease;
}

.catalog-lightbox-wrapper .category-item.active .subcategories-toggle img {
	transform: rotate(90deg);
}

.catalog-lightbox-wrapper .subcategories-dropdown {
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	width: 100%;
	background: var(--white);
	border-radius: var(--border-radius-10);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	padding: 10px;
	display: none;
	flex-direction: column;
	gap: 5px;
	z-index: 10;
}

.catalog-lightbox-wrapper .category-item.active .subcategories-dropdown {
	display: flex;
}

.catalog-lightbox-wrapper .subcategory-item {
	font-size: 14px;
	line-height: 16px;
	padding: 5px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.catalog-lightbox-wrapper .subcategory-item:hover {
	background: var(--light-gray);
}

/* Адаптивность */
@media (max-width: 1279px) {
	.catalog-lightbox-wrapper .lightbox-section {
		height: calc(100vh - var(--header-height));
		margin-top: 0;
		border-radius: 0;
	}

	.catalog-lightbox-wrapper .lightbox-content {
		padding: 20px;
	}

	.catalog-lightbox-wrapper .catalog-categories {
		gap: 15px;
	}

	.catalog-lightbox-wrapper .category-item {
		width: calc(33.33% - 10px);
	}
}

@media (max-width: 768px) {
	.catalog-lightbox-wrapper .category-item {
		width: calc(50% - 8px);
	}
}
/* Catalog Lightbox - End */

/* Review Cards - Start */
.review-card {
	background: var(--light-gray);
	border-radius: var(--border-radius-15);
	padding: 25px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
	border: 1px solid transparent;
}

.review-card:hover {
	border-color: var(--primary);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transform: translateY(-3px);
}

/* Шапка карточки отзыва - Start */
.review-card .review-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.review-card .review-meta {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
}

.review-card .review-person {
	width: 55px;
	height: 55px;
	min-width: 55px;
	border-radius: var(--border-radius-100);
	background: var(--white);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--primary);
}

.review-card .review-person img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-card .review-author {
	display: block;
	font-family: var(--font-family-2);
	font-size: 18px;
	line-height: 24px;
	font-weight: 600;
	color: var(--black);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.review-card .review-date {
	position: absolute;
	bottom: 25px;
	right: 25px;
	font-family: var(--font-family-1);
	font-size: 14px;
	line-height: 17px;
	color: var(--gray);
	font-weight: 300;
}
/* Шапка карточки отзыва - End */

/* Информация о товаре в отзыве - Start */
.review-card .review-product-info {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--border);
}

.review-card .product-link {
	display: inline-block;
	font-family: var(--font-family-1);
	font-size: 14px;
	line-height: 20px;
	color: var(--primary);
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.review-card .product-link:hover {
	color: var(--primary-hover);
	text-decoration: underline;
}
/* Информация о товаре в отзыве - End */

/* Контент отзыва - Start */
.review-card .review-content {
	flex: 1;
	margin-bottom: 20px;
}

.review-card .review-text {
	font-family: var(--font-family-1);
	font-size: 14px;
	line-height: 22px;
	font-weight: 300;
	color: var(--black);
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: all 0.3s ease;
}

.review-card .read-more-review {
	display: inline-block;
	font-family: var(--font-family-1);
	font-size: 14px;
	line-height: 20px;
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.review-card .read-more-review:hover {
	color: var(--primary-hover);
	text-decoration: underline;
}

.review-card .read-more-review.expanded {
	color: var(--accent);
}
/* Контент отзыва - End */

/* Фотографии в карточке отзыва - Start */
.review-card .review-photos {
	margin-top: 15px;
}

.review-card .review-photos-grid {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.review-card .review-photo-thumb {
	width: 60px;
	height: 60px;
	border-radius: var(--border-radius-10);
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.review-card .review-photo-thumb:hover {
	opacity: 0.9;
	transform: scale(1.05);
	border-color: var(--primary);
}

.review-card .review-photo-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* Фотографии в карточке отзыва - End */

/* Рейтинг в карточке - Start */
.review-card .star-rating {
	display: flex;
	gap: 4px;
	font-size: 22px;
	line-height: 22px;
}

.review-card .star {
	color: #e5e5e5;
	cursor: default;
}

.review-card .star.filled {
	color: var(--primary);
}
/* Рейтинг в карточке - End */

/* Модификаторы для разных контекстов - Start */
/* Карточка в слайдере */
.review-card.review-card-slider {
	height: 100%;
	background: var(--white);
	border: 1px solid var(--border);
}

.review-card.review-card-slider:hover {
	border-color: var(--primary);
}

/* Карточка в сетке (для страницы отзывов) */
.reviews-grid .review-card {
	width: calc(100% / 4 - var(--blocks-indent) * 3 / 4);
}

/* Скрытие карточек при фильтрации */
.review-card.hidden {
	display: none;
}

/* Убираем ограничение высоты при развернутом тексте */
.review-card-slider .review-text.expanded {
	-webkit-line-clamp: unset;
	display: block;
}
/* Модификаторы для разных контекстов - End */

/* Адаптивность - Start */
@media (max-width: 1480px) {
	.reviews-grid .review-card {
		width: calc(100% / 3 - var(--blocks-indent) * 2 / 3);
		padding: 20px;
	}

	.review-card .review-author {
		font-size: 17px;
		line-height: 22px;
	}

	.review-card .review-photo-thumb {
		width: 55px;
		height: 55px;
	}
}

@media (max-width: 1279px) {
	.reviews-grid .review-card {
		width: 100%;
		padding: 20px;
	}

	.review-card .review-header {
		margin-bottom: 15px;
		gap: 12px;
	}

	.review-card .review-person {
		width: 45px;
		height: 45px;
		min-width: 45px;
	}

	.review-card .review-author {
		font-size: 16px;
		line-height: 20px;
	}

	.review-card .review-text {
		font-size: 14px;
		line-height: 20px;
		-webkit-line-clamp: 4;
	}

	.review-card .review-photos-grid {
		gap: 8px;
	}

	.review-card .review-photo-thumb {
		width: 45px;
		height: 45px;
	}

	.review-card .star-rating {
		font-size: 20px;
	}

	.review-card .review-date {
		bottom: 20px;
		right: 20px;
		font-size: 12px;
		line-height: 16px;
	}
}

@media (max-width: 768px) {
	.review-card .review-person {
		width: 40px;
		height: 40px;
		min-width: 40px;
		border-width: 1px;
	}

	.review-card .review-photo-thumb {
		width: 40px;
		height: 40px;
	}

	.review-card .star-rating {
		font-size: 18px;
		gap: 2px;
	}
}
/* Адаптивность - End */

/* Review Cards - End */

/* Информер для полного текста отзыва - Start */
.informer-wrapper.review-full-text .informer-section {
	background: var(--white);
	border-radius: var(--border-radius-20);
	max-width: 700px;
}

/* Шапка информера - Start */
.review-full-header {
	display: flex;
	gap: 25px;
	margin-bottom: 30px;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--border);
	align-items: center;
}

.review-full-avatar {
	width: 70px;
	height: 70px;
	min-width: 70px;
	border-radius: var(--border-radius-100);
	overflow: hidden;
	background: var(--light-gray);
	border: 2px solid var(--primary);
}

.review-full-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-full-meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.review-full-author {
	font-family: var(--font-family-2);
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
	color: var(--black);
}

.review-full-date {
	font-family: var(--font-family-1);
	font-size: 14px;
	line-height: 20px;
	color: var(--gray);
	font-weight: 300;
}
/* Шапка информера - End */

/* Контент информера - Start */
.review-full-content {
	font-family: var(--font-family-1);
	font-size: 16px;
	line-height: 26px;
	color: var(--black);
	font-weight: 300;
	max-height: 400px;
	overflow-y: auto;
	padding-right: 15px;
	margin-bottom: 25px;
}

.review-full-content::-webkit-scrollbar {
	width: 6px;
}

.review-full-content::-webkit-scrollbar-track {
	background: var(--light-gray);
	border-radius: 3px;
}

.review-full-content::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 3px;
}

.review-full-content::-webkit-scrollbar-thumb:hover {
	background: var(--primary-hover);
}

.review-full-rating {
	display: flex;
	gap: 4px;
	font-size: 24px;
	line-height: 24px;
}

.review-full-rating .star {
	color: #e5e5e5;
}

.review-full-rating .star.filled {
	color: var(--primary);
}
/* Контент информера - End */

/* Фотографии в информере - Start */
.review-full-photos {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid var(--border);
}

.review-full-photos .review-photos-grid {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.review-full-photos .review-photo-thumb {
	width: 120px;
	height: 120px;
	border-radius: var(--border-radius-15);
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.review-full-photos .review-photo-thumb:hover {
	opacity: 0.95;
	transform: scale(1.05);
	border-color: var(--primary);
}

.review-full-photos .review-photo-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1279px) {
	.review-full-header {
		flex-direction: column;
		gap: 15px;
		margin-bottom: 25px;
		padding-bottom: 20px;
		text-align: center;
	}

	.review-full-avatar {
		width: 60px;
		height: 60px;
		min-width: 60px;
	}

	.review-full-meta {
		align-items: center;
	}

	.review-full-author {
		font-size: 20px;
		line-height: 24px;
	}

	.review-full-content {
		font-size: 14px;
		line-height: 22px;
		max-height: calc(100dvh - 380px);
		padding-right: 10px;
	}

	.review-full-rating {
		font-size: 22px;
	}

	.review-full-photos {
		margin-top: 25px;
		padding-top: 25px;
	}

	.review-full-photos .review-photo-thumb {
		width: 80px;
		height: 80px;
		border-radius: var(--border-radius-10);
	}
}

@media (max-width: 768px) {
	.review-full-photos .review-photos-grid {
		gap: 10px;
	}

	.review-full-photos .review-photo-thumb {
		width: 60px;
		height: 60px;
	}
}
/* Фотографии в информере - End */

/* Информер для полного текста отзыва - End */

/* Product Sets Component - Start */
.product-set-wrapper {
	display: flex;
	gap: var(--blocks-indent);
	align-items: center;
	width: 100%;
}

.set-image-1,
.set-image-2 {
	display: flex;
	width: calc(100% / 3 - var(--blocks-indent) * 2 / 3);
}

.set-image-1 img,
.set-image-2 img {
	width: 100%;
	height: auto;
	border-radius: 40px;
}

.set-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: calc(100% / 3 - var(--blocks-indent) * 2 / 3);
}

.set-content .h2 {
	margin-bottom: 20px;
}

.set-content p {
	max-width: 360px;
	margin-bottom: 35px;
	text-align: center;
}

/* Set Products List - Start */
.set-products-list {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 0 20px;
	margin-bottom: 35px;
}

.set-product-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 24px 0;
	border-bottom: 1px solid #234b5a;
}

.set-product-item:last-child {
	border-bottom: none;
}

.item-number {
	font-family: var(--font-family-2);
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	min-width: 24px;
	width: 24px;
	height: 24px;
	background: #234b5a0f;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	margin: auto;
}

.item-image img {
	width: 80px;
	height: 80px;
	min-width: 80px;
	border: 1px solid #f3f3f3;
	object-fit: contain;
	border-radius: 8px;
}

.item-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.item-title {
	font-family: var(--font-family-2);
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
}

.item-short-desc {
	display: block;
	font-family: var(--font-family-2);
	font-size: 14px;
	line-height: 18px;
	color: var(--gray);
	margin-top: 3px;
}

.item-price {
	font-family: var(--font-family-2);
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	margin-left: auto;
	min-width: 100px;
	text-align: right;
}

/* Quantity Controls - Start */
.item-quantity {
	display: flex;
	align-items: center;
	border: 1px solid #234b5a;
	border-radius: 60px;
}

.item-quantity button {
	width: 35px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	background: transparent;
	border: none;
	outline: none;
}

.set-product-qty {
	width: 20px;
	height: 40px;
	text-align: center;
	border: 0px solid var(--border);
	border-radius: var(--border-radius-5);
	font-size: 16px;
	padding: 0;
}
/* Quantity Controls - End */

/* Set Products List - End */

/* Product Sets Grid - Start */
.product-sets-grid {
	display: flex;
	flex-wrap: wrap;
	gap: var(--blocks-indent);
}

.product-set-card {
	width: calc(50% - var(--blocks-indent) / 2);
	background: var(--white);
	border-radius: var(--border-radius-20);
	padding: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.product-set-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.set-card-images {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
}

.set-card-images img {
	width: calc(50% - 7.5px);
	height: 150px;
	object-fit: cover;
	border-radius: var(--border-radius-15);
}

.set-card-content {
	text-align: center;
}

.set-card-content .h3 {
	margin-bottom: 15px;
}

.set-card-content p {
	margin-bottom: 20px;
	color: var(--gray);
}

.set-card-price {
	font-family: var(--font-family-2);
	font-size: 24px;
	line-height: 28px;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 20px;
}
/* Product Sets Grid - End */

/* Адаптивность Product Sets - Start */
@media (max-width: 1480px) {
	.set-products-list {
		padding: 0 0px;
	}

	.item-price {
		min-width: fit-content;
	}
}

@media (max-width: 1279px) {
	.product-set-wrapper {
		flex-wrap: wrap;
	}

	.set-image-1,
	.set-image-2 {
		width: calc(50% - var(--blocks-indent) / 2);
	}

	.set-image-1 img,
	.set-image-2 img {
		border-radius: 10px;
	}

	.set-content {
		padding: 0;
		width: 100%;
		margin-top: 20px;
	}

	.set-product-item {
		gap: 10px;
		padding: 12px 0;
	}

	.item-number {
		font-size: 12px;
		line-height: 12px;
		min-width: 24px;
		width: 24px;
		height: 24px;
	}

	.item-image img {
		width: 50px;
		height: 50px;
		min-width: 50px;
	}

	.item-title {
		font-size: 14px;
		line-height: 18px;
	}

	.item-short-desc {
		font-size: 12px;
		line-height: 16px;
	}

	.item-price {
		font-size: 14px;
		line-height: 18px;
		min-width: 80px;
	}

	.item-quantity button {
		width: 25px;
		height: 25px;
		font-size: 16px;
	}

	.set-product-qty {
		width: 15px;
		height: 25px;
		font-size: 14px;
	}

	/* Product Sets Grid */
	.product-set-card {
		width: 100%;
	}
}
/* Адаптивность Product Sets - End */
/* Product Sets Component - End */

/* AJAX Notifications - Start */
.ajax-notification {
	position: fixed;
	top: 100px;
	right: 20px;
	background: var(--white);
	color: var(--black);
	padding: 15px 25px;
	border-radius: var(--border-radius-10);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	opacity: 0;
	transform: translateX(100%);
	transition: all 0.3s ease;
}

.ajax-notification.show {
	opacity: 1;
	transform: translateX(0);
}

.ajax-notification.success {
	border-left: 4px solid var(--primary);
}

.ajax-notification.error {
	border-left: 4px solid var(--red);
}

.add-set-to-cart.loading,
.ajax_add_to_cart.loading {
	pointer-events: none;
	opacity: 0.6;
}

.add-set-to-cart.loading span:after,
.ajax_add_to_cart.loading span:after {
	content: "...";
	display: inline-block;
	animation: loading 1s infinite;
}

@keyframes loading {
	0% {
		content: ".";
	}
	33% {
		content: "..";
	}
	66% {
		content: "...";
	}
}
/* AJAX Notifications - End */

.hero-product-card {
	position: absolute;
	bottom: 40px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: var(--white);
	border-radius: 24px;
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	height: 132px;
	max-width: 600px;
}

.hero-product-card .product-image {
	width: 100px;
	height: 100px;
	min-width: 100px;
	border-radius: 12px;
	overflow: hidden;
}

.hero-product-card .product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 12px;
	border: 1px solid #f3f3f3;
}

.hero-product-card .product-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	flex-grow: 1;
}

.hero-product-card .product-title {
	font-family: var(--font-family-2);
	font-size: 22px;
	line-height: 25px;
	font-weight: 500;
	color: var(--black);
}
.hero-product-card .product-short-desc {
	font-family: var(--font-family-2);
	font-size: 16px;
	line-height: 19px;
	font-weight: 500;
	color: #234b5a7a;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
}
.hero-product-card .product-price {
	font-family: var(--font-family-2);
	font-size: 22px;
	line-height: 26px;
	font-weight: 500;
	color: var(--black);
	margin-top: auto;
}
.hero-product-card .btn.ajax_add_to_cart {
	width: 100px;
	height: 100px;
	min-width: 100px;
	background: #f2f4f5;
	border-radius: 12px;
}
.hero-product-card .btn.ajax_add_to_cart img {
	width: 44px;
	height: 44px;
}
@media (max-width: 1279px) {
	.hero-product-card {
		padding: 10px;
		gap: 10px;
		border-radius: 10px;
		height: 82px;
		max-width: 89vw;
		bottom: 10px;
	}
	.hero-product-card .btn.ajax_add_to_cart {
		width: 66px;
		min-width: 66px;
		height: 66px;
		background: #f2f4f5;
		border-radius: 7px;
	}
	.hero-product-card .btn.ajax_add_to_cart img {
		width: 24px;
		height: 24px;
	}
	.hero-product-card .product-image {
		width: 66px;
		height: 66px;
		min-width: 66px;
	}
	.hero-product-card .product-title {
		font-size: 14px;
		line-height: 18px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
		-webkit-line-clamp: 2;
	}
	.hero-product-card .product-short-desc {
		font-size: 12px;
		line-height: 14px;
	}

	.hero-product-card .product-price {
		font-size: 14px;
		line-height: 18px;
	}
}

/* Other - Start */
.site-url:first-letter {
	text-transform: capitalize;
}
.woocommerce-notices-wrapper {
	display: none;
}
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr td {
	padding: 15px 15px 15px 5px;
}
/* Other - End */

/* For Admins - Start */
@media (min-width: 1280px) {
	html {
		margin-top: 0px !important;
	}
	#wpadminbar {
		position: absolute;
		top: 0;
		background: var(--black);
		width: fit-content;
		height: 10px;
		line-height: 10px;
		z-index: 9999;
		opacity: 0.01;
		transition: all 0.3s ease;
	}
	#wpadminbar #wp-admin-bar-appearance {
		margin-top: 0;
	}
	#wpadminbar:hover {
		opacity: 1;
	}
	ul#wp-admin-bar-root-default {
		width: fit-content;
	}
	ul#wp-admin-bar-top-secondary {
		display: none !important;
	}
	#wpadminbar * {
		line-height: 10px !important;
		font-size: 9px !important;
		padding-top: 0px !important;
		padding-bottom: 0px !important;
	}
	#wpadminbar .quicklinks a,
	#wpadminbar .quicklinks > ul,
	#wpadminbar .quicklinks > ul li {
		height: 10px !important;
	}
	#wpadminbar .ab-icon:before,
	#wpadminbar .ab-item:before {
		font-size: 10px;
		padding: 1px 0;
		top: 1px !important;
	}
	#wpadminbar .ab-top-secondary {
		position: absolute;
		right: 0;
		top: 0;
	}
	#adminbarsearch,
	#wp-admin-bar-search {
		display: none;
	}
	#wp-admin-bar-woocommerce-site-visibility-badge,
	.woocommerce-site-status-badge-live {
		display: none !important;
	}
	ul#wp-admin-bar-root-default {
		flex-direction: row !important;
	}
	ul#wp-admin-bar-new-content-default,
	ul#wp-admin-bar-user-actions {
		flex-direction: column !important;
		gap: 5px !important;
	}
}
@media (max-width: 1279px) {
	html {
		margin-top: 0px !important;
	}
	#wpadminbar {
		display: none;
	}
}
/* For Admins - End */
