/*
	--theme-primary: #314e92;
	--theme-dark: #2f3261;
 */

.product-page-contents {
	/* background-color: #f1f3f6; */
	/* overflow: auto; */
	/* padding-top: 1px; */
	padding-bottom: 1px;
}

.product-content-row {
	display: flex;
	/* padding: 30px 15px 15px; */
	/* background-color: #fff; */
	border-radius: 4px;
	/* margin-bottom: 20px; */
	padding-block: 1rem;
	padding-top: 50px;
	align-items: flex-start;
	max-width: 1330px;
	margin-inline: auto;
}

.product-images-col,
.product-content-col {
	flex: 0 0 50%;
	width: 50%;
}

.product-images-col {
	/* position: sticky; */
	/* top: 0; */
	height: 100%;
}

.product-preview {
	display: flex;
	flex-direction: column-reverse;
	gap: 1rem;
}

.product-image-preview-label {
	display: none;
}

.product-thumbnails {
	flex: 0 0 85px;
	max-height: 500px;
}

.product-thumb {
	border: 1px solid #ddd;
	margin-bottom: 10px;
	cursor: pointer;
	transition: ease 0.25s border-color;
	/* height: 85px; */
	width: auto;
}

.product-thumb.swiper-slide-thumb-active {
	border-color: var(--theme-primary);
}

.product-thumb img {
	display: block;
	height: 100%;
	width: 100%;
	margin: auto;
	object-fit: contain;
}

.product-preview-zoom {
	flex: 1 1 100%;
	padding: 0 10px;
	overflow: hidden;
}

.product-preview-zoom>.swiper-container {
	max-width: 400px;
	/* height: 400px; */
	position: relative;
	z-index: 1;
}

.product-preview-img {
	/* border: 1px solid #ddd; */
	/* padding: 5px; */
	/* height: calc(100vh - 150px); */
	width: 100%;
}

.xzoom-source {
	z-index: 10;
}

.xzoom-preview {
	/* border: 1px solid #ddd; */
	z-index: 10;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	background-color: #fff;
}

.xzoom-preview img {
	object-fit: contain;
}

.xzoom-lens img {
	object-fit: cover;
}

.product-preview-img img {
	display: block;
	width: 100%;
	height: auto;
	height: 100%;
	object-fit: cover;
	touch-action: manipulation;
}

.product-image-preview-label {
	font-size: 14px;
	font-weight: 500;
	color: #999;
	margin: 5px 0;
}

.product-content-col {
	padding: 2.5rem 1rem;
	margin: 0 1.5rem;
	background: rgba(244, 243, 238, 0.51);
	/* padding-top: 2.5rem; */
	/* margin-top: 1.5rem; */
	display: grid;
	align-content: start;
	grid-template-columns: 450px;
	justify-content: center;
}

.product-page-subtitle {
	font-size: 10px;
	letter-spacing: 2.5px;
	margin-bottom: 0.5em;
	text-transform: uppercase;
	color: var(--primary_fg);
}

.product-page-title {
	font-weight: normal;
	font-size: 25px;
	margin-bottom: 0.5em;
	color: var(--primary_fg);
	font-family: var(--font-alt);
	line-height: 1em;
	text-transform: uppercase;
}

.product-title-rating {
	display: flex;
	align-items: center;
}

.rating-stars {
	display: flex;
	align-items: center;
	background-color: green;
	color: #fff;
	font-weight: 500;
	font-size: 12px;
	padding: 5px 7px;
	border-radius: 2px;
	margin-right: 10px;
}

.rating-stars span {
	margin-right: 3px;
}

.rating-review-summary {
	color: #999;
	font-weight: 500;
	font-size: 14px;
}

.content-separator {
	border: none;
	border-top: 1px solid #ddd;
	background-color: transparent;
	margin: 15px 0;
}

.content-section {
	margin-bottom: 10px;
	margin-top: 20px;
}

.content-section-title {
	font-size: 14px;
	margin-bottom: 10px;
	font-weight: 500;
	color: #646464;
	display: flex;
	justify-content: space-between;
}

.product-price-display {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-bottom: 5px;
}

.product-mrp-display {
	letter-spacing: 2.5px;
	font-size: 16px;
	color: #646464;
	font-weight: 600;
	/* text-decoration-line: line-through; */
	position: relative;
	display: none;
}

.product-mrp-display::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% + 15px);
	height: 1px;
	transform: translateX(-50%);
	background-color: currentColor;
}

.product-sp-display {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 2.5px;
	color: var(--primary_fg);
}

.product-mrp-display::before,
.product-sp-display::before {
	content: "₹";
	font-weight: 400;
	margin-right: 1px;
}

.product-discount-display {
	background: #7b283c;
	font-size: 10px;
	line-height: 20px;
	color: #fff;
	padding: 1px 10px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	margin: 0 0 0 10px;
	display: none !important;
}

.product-discount-display::before {
	content: "";
	position: absolute;
	top: 0;
	left: -12px;
	width: 0;
	height: 0;
	border-color: transparent #7b283c transparent transparent;
	border-style: solid;
	border-width: 11px 12px 11px 0;
}

.product-page-price-info {
	line-height: 1;
	font-style: italic;
	font-size: 16px;
	letter-spacing: 0.5px;
	color: #000000;
	font-family: var(--font-alt);
}

.product-variant-select {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.product-variant-item {
	position: relative;
}

.product-variant-name {
	/* font-size: 15px; */
}

/* .single-size > .content-section-title {
	display: none;
} */

.single-size .product-variant-label {
	padding: 0;
	border: 0;
	text-align: left;
}

.single-size .product-variant-item:nth-child(1),
.single-size .product-variant-label .product-variant-name {
	display: none;
}

.product-variant-input,
.product-filter-input {
	position: absolute;
	visibility: hidden;
}

.product-variant-label {
	display: grid;
	width: 40px;
	height: 40px;
	place-content: center;
	/* padding: 7px 20px; */
	/* background-color: #f1f1f1; */
	border: 1px solid #d7d7d7;
	transition: ease-in-out 0.2s border-color;
	font-weight: normal;
	cursor: pointer;
	font-size: 11px;
	color: var(--theme-primary);
	border-radius: 500px;
	text-align: center;
}

.product-variant-label:hover {
	border-color: var(--accent_bg);
}

.product-variant-label span {
	color: #000;
}

.product-variant-input:checked+.product-variant-label {
	border-color: var(--accent_bg);
}

.product-filter-input:checked+.product-variant-label {
	border-color: var(--accent_bg);
}

.product-variant-label strong {
	font-weight: 500;
}

.product-variant-label del {
	margin-right: 0.5em;
}

.product-variant-input:checked+.product-variant-label {
	border-color: #808080;
}

.product-content-col .product-qty {
	width: 100px;
}

.product-content-col .product-qty-input {
	font-size: 15px;
	height: 32px;
}

.product-content-col .product-qty-prepend {
	font-size: 15px;
	line-height: 1.6;
	padding: 3px 15px;
}

.product-content-col .cart-qty-change {
	font-size: 22px;
	width: 30px;
}

.product-size-chart-btn {
	cursor: pointer;
	/* text-decoration: underline; */
}

.product-size-chart {
	display: none;
}

.product-information-group {
	border-top: 1px solid #dadada;
}

.product-details-head {
	font-size: 15px;
	font-weight: 500;
	border: 1px solid #dadada;
	border-top: none;
	/* background-color: #f6f6f6; */
	padding: 7px 15px;
	position: relative;
	color: var(--primary_fg);
}

.product-details-head::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 5px;
	width: 0.45em;
	height: 0.45em;
	border: 1px solid #666;
	border-bottom: 0;
	border-right: 0;
	transform: translate(-50%, -50%) rotate(45deg);
	transition: ease 0.25s transform;
}

.collapsed .product-details-head::after {
	transform: translate(-50%, -50%) rotate(225deg);
}

.product-promotions-row {
	display: flex;
	justify-content: space-evenly;
	text-align: center;
	margin-top: 10px;
}

.product-promotions-icon {
	height: 50px;
	width: auto;
	display: block;
	margin-inline: auto;
}

.product-promotions-desc {
	text-transform: uppercase;
	margin: 5px 0 5px;
	font-size: 12px;
	font-weight: 400;
	color: var(--primary_fg);
}

.product-information-tab-heads {
	padding-bottom: 1rem;
	border-bottom: 1px solid #afafaf;
}

.product-information-tab-head {
	width: auto;
	min-width: 200px;
	cursor: pointer;
}

.product-tab-head {
	font-weight: 600;
	font-size: 11px;
	line-height: 12px;
	letter-spacing: 1.67px;
	text-transform: uppercase;
	color: #646464;
}

.product-information-tab-head.swiper-slide-thumb-active .product-tab-head {
	color: #000;
}

.product-information-tab-bodies {
	font-family: var(--font-alt);
	color: #646464;
	font-size: 19px;
	line-height: 24px;
	padding: 6px 0;
	margin-top: 15px;
}

.product-details-content {
	padding: 10px 15px;
	font-size: 14px;
	border: 1px solid #dadada;
	border-top: none;
	/* border-bottom: none; */
}

.product-description-view {
	/* max-height: 300px; */
	/* overflow: auto; */
	/* white-space: pre-line; */
}

.product-description-view ul,
.product-description-view ol {
	padding-left: 1.5em;
}

.product-description-view ul,
.product-description-view ol,
.product-description-view p {
	margin-bottom: 0.5em;
}

.product-description-view strong {
	font-weight: 700;
}

.product-information-cards {
	display: grid;
	gap: 1rem;
}

.product-information-card {
	position: relative;
	border: 1px solid #dadada;
	/* box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1); */
	border-radius: 4px;
	/* overflow: hidden; */
	background-color: rgba(255, 255, 255, 0.2);
}

.product-information-card-head {
	position: relative;
	padding: 1rem;
	padding-right: 2.5rem;
	cursor: pointer;
	color: var(--primary_fg);
}

.product-information-card-head::marker {
	content: "";
}

.product-information-card-head::after {
	/* angle down */
	font: var(--icon-font);
	font-size: 1.3rem;
	content: "\EA4E";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	transition: ease 0.25s;
	color: inherit;
}

.product-information-card[open] .product-information-card-head::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.product-information-card-title {
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	color: inherit;
}

.product-information-card-body {
	margin: 0;
	padding: 0;
	/* animation: info-card-close 0.3s ease; */
	/* position: absolute; */
}

.product-information-card-content {
	padding: 0.5rem;
	border-top: 1px solid #dadada;
}

.product-information-card[open] .product-information-card-body {
	/* animation: info-card-open 0.3s ease; */
}

/* @keyframes info-card-open {
	0% {
		max-height: 0;
		overflow: hidden;
	}
	95% {
		max-height: 50rem;
	}
	100% {
		max-height: 50rem;
		overflow: auto;
	}
}

@keyframes info-card-close {
	0% {
		max-height: 50rem;
		overflow: auto;
	}
	95% {
		max-height: 0;
	}
	100% {
		max-height: 0;
		overflow: hidden;
	}
} */

.enlarge-preview {
	position: fixed;
	left: 0;
	top: 0;
	width: 100dvw;
	height: 100dvh;
	display: none;
	z-index: 125;
	animation: enlarge-show 0.3s ease;
}

.enlarge-preview figure {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	overflow: auto;
}

@keyframes enlarge-show {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.enlarge-preview::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	background-color: #fff;
	opacity: 0.7;
	z-index: 0;
}

.enlarge-preview .close-preview {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 36px;
	color: #000;
	z-index: 2;
	padding: 10px;
	background-color: #dadada;
	line-height: 0.5;
	border-radius: 4px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.enlarge-preview img {
	position: relative;
	z-index: 2;
	min-width: 1200px;
	min-height: 1200px;
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	/* box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); */
	padding: 2rem;
	animation: enlarge 0.3s ease;
}

@keyframes enlarge {
	0% {
		transform: scale(0.5);
	}

	100% {
		transform: scale(1);
	}
}

.review-widget {
	display: flex;
	margin-top: 30px;
	padding-bottom: 30px;
	margin-bottom: 10px;
	border-bottom: 1px solid #dadada;
}

.review-widget-overall {
	text-align: center;
	padding: 10px;
	margin-right: 20px;
	border-right: 1px solid #dadada;
	max-width: 150px;
}

.review-overall-star {
	font-size: 24px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
}

.review-overall-star span {
	margin-right: 5px;
}

.review-overall-response {
	font-size: 14px;
	color: #999;
	font-weight: 500;
}

.rating-graph-breakup {
	width: 200px;
	font-size: 12px;
}

.rating-graph-breakup-row {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}

.rating-graph-breakup-stars {
	margin-right: 10px;
	width: 2em;
}

.rating-graph-breakup-bar {
	flex: 1 1 auto;
	height: 4px;
	background-color: #ddd;
	border-radius: 4px;
	overflow: hidden;
}

.rating-graph-breakup-fill {
	height: 100%;
	border-radius: 4px;
}

.row-green .rating-graph-breakup-fill {
	background-color: #009d08;
}

.row-yellow .rating-graph-breakup-fill {
	background-color: #ffcd04;
}

.row-red .rating-graph-breakup-fill {
	background-color: red;
}

.rating-graph-breakup-count {
	width: 2em;
	text-align: left;
	margin-left: 10px;
}

.review-user-response {
	margin-bottom: 10px;
	border-bottom: 1px solid #dadada;
}

.review-response-head {
	display: flex;
	align-items: center;
	/* margin-bottom: 10px; */
}

.review-response-head p {
	font-weight: 600;
	font-size: 13px;
}

.review-response-body {
	padding: 10px 0;
	font-size: 13px;
}

.product-similars-section {
	padding-block: 3rem;
}

.product-similars-section .category-section-head {
	margin-bottom: 2rem;
}

.product-slider-wrapper {
	/* padding: 20px 15px 10px; */
	/* background-color: #fff; */
	border-radius: 4px;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.product-similars-section {
		padding-inline: 20px;
	}
}

.product-list-page {
	/* display: flex; */
	/* margin-top: 10px; */
	margin-bottom: 30px;
}

.option-container {
	/* width: 250px; */
	/* flex: 0 0 250px; */
	position: sticky;
	top: 87px;
	z-index: 100;
	background-color: var(--page_bg);
	padding-block: 0.5rem;
	margin-bottom: 0.5rem;
	/* bottom: 0; */
	/* add height 100% to make nav sticky */
	/* transition: ease 0.25s top; */
	/* height: 100%; */
	/* border: 1px solid #dadada; */
	/* border-radius: 5px; */
	/* max-height: calc(100vh - 155px); */
	/* overflow: auto; */
	/* transition: ease 0.3s; */
}

.option-container::-webkit-scrollbar {
	width: 5px;
}

.option-container::-webkit-scrollbar-track {
	background-color: transparent;
}

.option-container::-webkit-scrollbar-thumb {
	background-color: transparent;
	border-radius: 5px;
}

.option-container:hover::-webkit-scrollbar-thumb {
	background-color: #00000022;
}

.scroll-down .option-container {
	/* top: 100px; */
	/* max-height: calc(100vh - 110px); */
}

.filter-container,
.sort-container {
	/* border-radius: inherit; */
	/* background-color: var(--sidebar_bg); */
	/* box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.1); */
	/* overflow: hidden; */
	/* margin-bottom: 10px; */
	/* border-bottom: inherit; */
}

.filter-container {
	display: flex;
	justify-content: space-between;
	/* margin-bottom: 1rem; */
}

.sort-container+.filter-container {
	/* margin-top: 10px; */
	border: 0;
	/* border-top: 1px solid #dadada; */
}

.filter-header {
	position: relative;
}

.filter-header-title {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.1;
	display: inline-block;
}

.clear-filter-btn {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	margin-top: 0.5rem;
	margin-inline: auto 0.4rem;
	padding: 3px 5px;
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 1;
	/* background-color: #fff; */
	/* border: 1px solid #ccc; */
	color: var(--accent_bg);
	border-radius: 3px;
	cursor: pointer;
	/* display: none; */
}

.filter-header,
.filter-group {
	padding: 15px 20px;
}

.filter-header {
	/* border-bottom: 1px solid #dadada; */
	padding-bottom: 0;
	padding: 0;
}

summary.filter-header {
	position: relative;
	cursor: pointer;
}

details.option-container-group {
	position: relative;
	display: flex;
	z-index: 1;
}

summary.filter-header::marker {
	display: none;
	content: none;
}

summary.filter-header::after {
	content: "\EA4E";
	font: var(--icon-font);
	vertical-align: middle;
	line-height: 1.2;
}

details.option-container-group .option-container {
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	width: 18rem;
	/* min-width: 16rem; */
	z-index: 5;
	max-height: 30rem;
	overflow: auto;
	overflow-x: hidden;
	background-color: var(--page_bg);
	border: 1px solid rgba(18, 18, 18, 0.1);
	transform: translateY(-1rem);
	transition: ease 0.25s;
	transition-delay: 0.2s;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
	transition-property: transform, opacity;
}

.filter-option-list .filter-header {
	display: none;
}

details.option-container-group:last-child .option-container {
	left: auto;
	right: 0;
}

details.option-container-group[open] {
	z-index: 2;
}

details.option-container-group[open] summary.filter-header::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 4;
	cursor: default;
}

details.option-container-group[open] .option-container {
	transform: translateY(0);
	transition-delay: 0.01s;
	z-index: 5;
}

.filter-group+.filter-group,
.custom-filter-options {
	border-top: 1px solid #dadada;
}

.filter-title {
	font-size: 18px;
	font-weight: 500;
	/* margin-bottom: 12px; */
	position: relative;
}

.filter-title.collapse-toggle {
	cursor: pointer;
}

.filter-title.collapse-toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 5px;
	height: 5px;
	border: 1px solid #333;
	border-top: none;
	border-left: none;
	transform: translate(-50%, -50%) rotate(225deg);
	transition: ease-in-out 0.25s transform;
}

.filter-group.collapsed .filter-title.collapse-toggle::after {
	transform: translate(-50%, -50%) rotate(45deg);
}

.filter-options {
	list-style: none;
	overflow: hidden;
}

.filter-search+.filter-options,
.collapse-body .filter-options {
	padding-top: 15px;
}

.filter-options>li:not(:first-child) {
	margin-top: 10px;
}

.filter-options .filter-sub-list {
	padding-left: 10px;
	margin-left: 5px;
	border-left: 2px solid #ddd;
	list-style: none;
}

.filter-options .filter-sub-list li {
	margin-top: 7px;
}

.filter-option-label {
	display: flex;
	align-items: center;
	font-size: 13px;
	/* font-weight: 500; */
	text-decoration: none;
	color: inherit;
	position: relative;
	cursor: pointer;
}

.filter-option-label input,
.filter-option-label .sort-icon {
	margin-right: 8px;
	accent-color: var(--primary_fg);
}

.filter-option-label input {
	/* visibility: hidden; */
}

.filter-option-label input:checked+span {
	font-weight: 600;
	color: #000;
}

.filter-option-label .label-check::before {
	position: absolute;
	left: 0;
	top: 50%;
	/* content: "\2713"; */
	transform: translate(50%, -50%);
}

.filter-option-label [data-product-count]::after {
	position: absolute;
	right: 5px;
	top: 50%;
	content: attr(data-product-count);
	transform: translate(0, -50%);
}

.filter-option-label input:checked+span::before {
	color: var(--theme-primary);
}

.filter-option-label .rating-star-group {
	color: var(--primary_fg);
	font-size: 1.1em;
	vertical-align: middle;
	line-height: 1;
}

.filter-search {
	margin-top: 15px;
	display: flex;
}

.filter-search input {
	display: block;
	width: 0;
	flex: 1 1 auto;
	padding: 7px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 13px;
	background-color: #fff;
}

.filter-search-range {
	display: flex;
	align-items: center;
}

.filter-search-range .search-separator {
	margin: auto 8px;
	font-weight: 600;
}

.product-list-right-container {
	flex: 1 1 auto;
	/* padding-left: 30px; */
	/* border-left: 1px solid #dadada; */
}

.product-list-area {
	/* background-color: #fff; */
	/* padding: 20px; */
	padding-bottom: 30px;
	padding-top: 0;
	border-radius: 4px;
	/* box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.1); */
	margin: 0;
	border: none;
	height: 100%;
}

.filtered-product-list {
	/* display: flex; */
	/* flex-wrap: wrap; */
	/* justify-content: center; */
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(25rem, 100%), 1fr));
	gap: 20px 15px;
}

.filtered-product-list .brand-banner {
	grid-column: 1 / -1;
	aspect-ratio: 820 / 273;
}

.filtered-product-list .brand-banner img {
	display: block;
	width: 100%;
}

.filtered-product-list .product-group-item {
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	max-width: 100%;
	width: 100%;
	padding: 0;
}

.filtered-product-list .product-slide-details {
	/* padding: 1rem; */
}

.profile-nav-collapse {
	display: none;
}

.resp-result-options,
.resp-filter-options {
	display: none;
}

.filtered-product-list .product-group-item.bordered {
	/* border: 1px solid #ddd; */
	/* border-radius: 4px; */
}

.product-list-extra {
	line-height: 2;
	font-weight: 500;
	font-size: 20px;
	grid-column: 1 / -1;
}

@media (min-width: 769px) {

	.enlarge-preview,
	.close-zoom-preview {
		display: none;
	}

	/* .product-variant-label span::before {
        content: "- ";
    } */

	.product-content-col .product-add-to-cart,
	.product-content-col .product-checkout-link {
		flex: 100%;
	}

	.product-details-group {
		gap: 0.5rem;
	}

	.product-content-col .product-add-to-cart {
		width: 160px;
		padding: 16px;
		line-height: 1;
	}

	.product-checkout-link {
		/* margin-left: 15px; */
		padding: 16px;
		width: 160px;
		text-align: center;
		justify-content: center;
		background-color: var(--accent_bg);
		color: var(--accent_fg);
		border-radius: 4px;
		text-decoration: none;
		font-size: 11px;
		font-weight: 600;
		text-transform: uppercase;
		display: flex;
		align-items: center;
		transition: ease 0.2s;
		transition-property: color, background-color;
		box-shadow: inset 0 0 0 2px var(--accent_bg);
	}

	.product-checkout-link:hover {
		background-color: var(--primary_bg);
		color: var(--primary_fg);
	}

	.product-checkout-link i {
		margin-left: 5px;
		font-weight: 100;
		font-size: 14px;
	}

	.filter-list {
		/* max-height: calc(100vh - 350px); */
		/* transition: ease 0.25s max-height; */
	}

	.scroll-down .filter-list {
		/* max-height: calc(100vh - 310px); */
	}

	.filter-group.collapsed .collapse-body:not([style]) .collapse-content {
		padding-bottom: 12px;
	}
}

@media (max-width: 768px) {
	.enlarge-preview img {
		max-width: 700px;
		max-height: 700px;
		min-height: auto;
		min-width: auto;
		width: 100%;
		height: 100%;
	}

	.product-checkout-link {
		display: none;
	}

	.product-content-row {
		flex-direction: column;
		padding-left: 0;
		padding-right: 0;
		padding-top: 10px;
	}

	.product-images-col {
		position: static;
		margin-bottom: 15px;
		width: 100%;
	}

	.product-content-col {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
		grid-template-columns: auto;
		margin: 0;
	}

	.product-list-extra {
		text-align: center;
		font-family: "Lateef";
		font-size: 32px;
		line-height: 1.1;
		color: var(--primary_fg);
		font-weight: normal;
	}

	.content-separator {
		margin: 5px 0 10px;
	}

	.product-preview-img {
		height: auto;
	}

	.product-preview-img img {
		height: 100%;
		object-fit: cover;
	}

	.product-preview-zoom {
		padding-inline: 0;
	}

	.product-page-title {
		font-size: 20px;
		margin-bottom: 0;
	}

	.rating-review-summary {
		font-size: 12px;
	}

	.rating-stars {
		font-size: 10px;
		margin-top: 0.3rem;
	}

	.content-section-title {
		font-size: 12px;
		margin-bottom: 5px;
	}

	.product-variant-label {
		padding: 5px 10px;
		font-size: 12px;
	}

	.product-variant-label span {
		display: block;
		font-weight: 600;
	}

	.product-content-col .product-details-group {
		flex-direction: row;
		/* margin-top: 1rem; */
		gap: 0.5rem;
		justify-content: center;
	}

	.product-content-col .product-qty {
		/* width: 50%; */
	}

	.product-content-col .product-qty-prepend {
		font-size: 12px;
	}

	.product-content-col .product-qty-input {
		height: auto;
		font-size: 13px;
		min-width: auto;
	}

	.product-content-col .product-add-to-cart {
		margin-top: 0;
		/* margin-left: 10px; */
		width: 50%;
	}

	.review-overall-response {
		font-size: 12px;
	}

	.rating-graph-breakup {
		width: 180px;
	}

	.product-page-contents {
		padding-left: 0;
		padding-right: 0;
	}

	.product-details-head {
		font-size: 12px;
		/* color: #666; */
	}

	.product-description-view {
		font-size: 14px;
	}

	.product-list-page {
		flex-direction: column;
		margin-top: 0;
	}

	.product-list-page {
		position: relative;
		padding-left: 0;
		padding-right: 0;
		/* background-color: #fff; */
	}

	.option-container {
		flex: auto;
		/* z-index: 20; */
		/* border: 0; */
		top: 113px;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		top: auto;
		margin: 0;
		padding: 0;
	}

	.resp-sort-overlay {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: #000;
		pointer-events: none;
		opacity: 0;
		transition: ease-in-out 0.25s opacity;
	}

	.filter-container {
		/* position: fixed; */
		/* width: 100%; */
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 20;
		/* top: 155px; */
		flex: auto;
		/* overflow: auto; */
		/* transform: translateY(105%); */
		/* opacity: 0; */
		transition: ease-in-out 0.25s;
		/* margin-bottom: 0.5rem; */
		/* margin-top: 0.5rem; */
		background-color: #fbf4ef;
	}

	.filter-container.active {
		transform: translateY(0);
		opacity: 1;
	}

	.product-list-right-container {
		padding-left: 0;
		margin-top: 0;
	}

	.resp-result-options,
	.resp-filter-options {
		display: flex;
		position: sticky;
		z-index: 10;
		background-color: #fff;
		padding-top: 3px;
		padding-bottom: 3px;
	}

	.resp-result-options {
		top: 90px;
		box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.3);
		margin-bottom: 10px;
		border-radius: 4px;
		transition: ease 0.3s top;
		z-index: 5;
		margin-top: 10px;
		padding: 0;
		display: none;
	}

	.resp-result-options::before {
		content: "";
		position: absolute;
		top: -10px;
		left: -10px;
		min-width: calc(100% + 20px);
		height: calc(200% + 20px);
		transform: translateY(-50%);
		z-index: -2;
	}

	.scrolled-down .resp-result-options::before {
		backdrop-filter: blur(4px);
		background-color: rgba(255, 255, 255, 0.3);
	}

	.result-toggle-btn {
		padding: 12px 12px;
		text-align: center;
		flex: 1 1 50%;
		border: none;
		background-color: #fff;
		color: #333;
		text-transform: uppercase;
		letter-spacing: 2px;
		font-size: 12px;
		font-weight: 600;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.result-toggle-btn:first-child {
		border-top-left-radius: inherit;
		border-bottom-left-radius: inherit;
	}

	.result-toggle-btn:last-child {
		border-top-right-radius: inherit;
		border-bottom-right-radius: inherit;
	}

	.resp-result-options::after,
	.resp-filter-options::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 1px;
		height: 15px;
		z-index: 10;
		transform: translate(-50%, -50%);
		background-color: #ccc;
	}

	.result-toggle-btn i {
		margin-right: 10px;
		display: inline-block;
	}

	.resp-filter-options {
		bottom: 0;
		border-top: 1px solid #ccc;
	}

	.sort-container {
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		margin-bottom: 0;
		padding-bottom: 20px;
		transform: translateY(105%);
		opacity: 0;
		transition: ease-in-out 0.3s;
		transition-property: opacity, transform;
		border-radius: 5px 5px 0 0;
	}

	.option-container.active .resp-sort-overlay {
		pointer-events: all;
		opacity: 0.3;
	}

	.option-container.active .sort-container {
		opacity: 1;
		transform: translateY(0);
	}

	.sort-container .sort-icon {
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.filter-list {
		/* position: relative; */
		/* height: calc(100% - 95px); */
		/* margin-top: 15px; */
	}

	.filter-group.collapsible {
		width: 30%;
		padding: 0;
		transition: ease-in-out 0.35s background-color;
	}

	.filter-group.collapsible .filter-title {
		padding: 12px 10px;
		font-size: 12px;
	}

	.filter-group.collapsible .filter-search {
		margin-top: 10px;
	}

	.filter-group.collapsible:last-child {
		border-bottom: 1px solid #dadada;
	}

	.filter-group .collapse-body {
		position: absolute;
		top: 0;
		left: 30%;
		right: 0;
		bottom: 0;
		border-left: 1px solid #ccc;
		height: 100% !important;
		padding-left: 10px;
		padding-right: 10px;
		background-color: #fff;
		visibility: hidden;
	}

	.filter-group.resp-side-active {
		background-color: #eaeaea;
	}

	.filter-group.resp-side-active .collapse-body {
		visibility: visible;
	}

	.filter-group.collapsible .filter-title.collapse-toggle::after {
		transform: translate(-50%, -50%) rotate(315deg);
		right: 15px;
	}

	details.option-container-group .filter-option-list {
		/* max-width: 100vw; */
		/* width: calc(100vw - 20px); */
		/* height: 100vh; */
		padding-block: 0;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		max-height: 100vh;
		overflow: auto;
		padding: 0;
		transform: translateY(1rem);
	}

	details.option-container-group .resp-filter-options {
		position: absolute;
		width: 100%;
	}

	details.option-container-group {
		flex: 1 1 100%;
	}

	summary.filter-header {
		text-align: center;
		padding: 0.5rem;
		border: 1px solid #ccc;
		border-block-width: 2px;
	}

	details.option-container-group:last-child .option-container {
		position: fixed;
		top: auto;
		bottom: 0;
		transform: translateY(1rem);
		width: 100%;
	}

	details.option-container-group[open] .option-container {
		transform: translateY(0rem);
	}

	.filter-option-list .filter-header {
		display: block;
		padding: 1rem;
	}

	.filter-option-list .collapse-group {
		height: calc(100% - 95px);
		position: relative;
	}

	.filter-list:not(.filter-option-list) .filter-option-label {
		justify-content: center;
		padding: 0.3rem;
	}

	.product-list-area {
		padding: 0;
	}

	.filtered-product-list {
		grid-template-columns: 1fr 1fr;
		gap: 10px 1px;
		padding-inline: 5px;
	}

	/* .filtered-product-list .product-slide-details .product-brand,
    .filtered-product-list .product-slide-details .product-title,
    .filtered-product-list .select-product-size {
        padding-left: 10px;
        padding-right: 10px;
    } */

	.filtered-product-list .product-slide-details {
		padding-left: 5px;
		padding-right: 5px;
	}

	.filtered-product-list .product-slide-details .product-title {
		/* height: 2.6em; */
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: normal;
		-webkit-line-clamp: 2;
		display: -webkit-box;
		-webkit-box-orient: vertical;
	}

	.filter-header-title {
		font-size: 12px;
		text-transform: uppercase;
		letter-spacing: 2px;
	}

	.select-product-size .select-arrow {
		width: 25px;
	}

	.product-slider-wrapper {
		padding-left: 0;
		padding-right: 0;
	}

	.product-slide {
		padding-left: 0;
		padding-right: 0;
	}

	.product-preview {
		overflow: hidden;
	}

	.product-thumbnails {
		/* flex: 1 1 100%; */
		/* display: flex; */
		/* overflow: auto; */
		width: 100%;
		padding-inline: 20px;
	}

	.product-price .em {
		display: block;
	}

	.product-thumb {
		/* flex: 0 0 65px; */
		/* margin-right: 5px; */
		width: auto;
	}

	.product-thumb img {
		width: auto;
	}

	.product-image-preview-label {
		font-size: 11px;
	}

	.enlarge-preview img {
		padding: 1rem;
	}

	/* .enlarge-preview.active {
		display: block;
	} */
	.product-images-col.zoom-view {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 20;
		background-color: #fff;
	}

	.product-images-col.zoom-view .product-thumbnails {
		margin-top: auto;
		padding: 10px;
	}

	.product-images-col.zoom-view .product-thumb {
		height: 120px;
	}

	.product-images-col.zoom-view .product-image-preview-label {
		display: none;
	}

	.product-images-col.zoom-view .product-thumbnails {
		flex-basis: auto;
	}

	.product-images-col.zoom-view .product-preview {
		height: 100%;
	}

	.close-zoom-preview {
		display: none;
		margin: 10px 0;
		padding: 7px 15px;
		background-color: #eaeaea;
		color: #000;
		font-weight: 500;
		font-size: 18px;
	}

	.close-zoom-preview i {
		vertical-align: middle;
		display: inline-block;
	}

	.product-images-col.zoom-view .close-zoom-preview {
		display: block;
	}
}