:root {
	--qalbi-black: #050505;
	--qalbi-ink: #252525;
	--qalbi-muted: #686868;
	--qalbi-cream: #f4f2ed;
	--qalbi-line: #dedede;
	--qalbi-radius: 16px;
	--qalbi-container: 1440px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #fff;
	color: var(--qalbi-ink);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	overflow-x: hidden;
}

body.admin-bar .qalbi-header {
	top: 32px;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
}

button,
input,
select,
textarea {
	font: inherit;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.qalbi-main {
	min-height: 60vh;
}

.qalbi-container {
	width: min(var(--qalbi-container), calc(100% - 40px));
	margin-inline: auto;
}

.qalbi-header {
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	height: 74px;
	background: var(--qalbi-black);
	color: #fff;
	transition: background-color .28s ease, box-shadow .28s ease;
}

.qalbi-header--overlay {
	position: fixed;
	top: 0;
	left: 0;
	background: transparent;
	box-shadow: none;
}

.qalbi-header--overlay.is-past-hero {
	background: var(--qalbi-black);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}

.qalbi-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	width: min(var(--qalbi-container), calc(100% - 40px));
	height: 100%;
	margin-inline: auto;
}

.qalbi-primary-nav {
	display: flex;
	align-items: center;
}

.qalbi-menu {
	display: flex;
	align-items: center;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.qalbi-menu li {
	position: relative;
	margin: 0;
	padding: 0;
}

.qalbi-menu a {
	display: block;
	color: #fff;
	font-size: 13px;
	text-decoration: none;
	transition: opacity .2s ease;
}

.qalbi-menu a:hover,
.qalbi-menu .current-menu-item > a {
	opacity: .62;
}

.qalbi-menu .sub-menu {
	position: absolute;
	top: calc(100% + 18px);
	left: -18px;
	min-width: 190px;
	margin: 0;
	padding: 13px 0;
	list-style: none;
	background: #fff;
	color: #111;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.qalbi-menu .sub-menu a {
	padding: 8px 18px;
	color: #111;
	font-size: 12px;
}

.qalbi-menu li:hover > .sub-menu,
.qalbi-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.qalbi-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 110px;
	height: 64px;
	transform: translate(-50%, -50%);
	overflow: visible;
}

.qalbi-logo img {
	display: block;
	width: 100px;
	max-width: none;
	height: auto;
	margin: 2px auto 0;
	filter: none;
	transition: filter .28s ease;
}

.qalbi-header:not(.qalbi-header--overlay) .qalbi-logo img,
.qalbi-header--overlay.is-past-hero .qalbi-logo img {
	filter: brightness(0) invert(1);
}

.qalbi-header-actions {
	display: flex;
	align-items: center;
	gap: 19px;
	margin-left: auto;
}

.qalbi-icon-button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 32px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}

.qalbi-icon-button svg {
	display: block;
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.qalbi-cart-count {
	position: absolute;
	top: -1px;
	right: -8px;
	display: none;
	min-width: 15px;
	height: 15px;
	padding: 0 3px;
	border-radius: 99px;
	background: #fff;
	color: #111;
	font-size: 9px;
	line-height: 15px;
	text-align: center;
}

.qalbi-cart-count:not(:empty) {
	display: block;
}

.qalbi-mobile-toggle {
	display: none;
	width: 30px;
	height: 30px;
	padding: 7px 3px;
	border: 0;
	background: transparent;
}

.qalbi-mobile-toggle span {
	display: block;
	width: 22px;
	height: 1px;
	margin: 5px 0;
	background: #fff;
}

.qalbi-search-drawer {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	max-height: 0;
	overflow: hidden;
	background: #fff;
	color: #111;
	opacity: 0;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .1);
	transition: max-height .3s ease, opacity .2s ease;
}

.qalbi-search-drawer.is-open {
	max-height: 150px;
	opacity: 1;
}

.qalbi-search-drawer form {
	width: min(720px, calc(100% - 40px));
	margin: 0 auto;
	padding: 22px 0;
}

.qalbi-search-drawer label {
	display: block;
	margin-bottom: 7px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.qalbi-search-drawer form > div {
	display: flex;
}

.qalbi-search-drawer input[type="search"] {
	flex: 1;
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid #ccc;
	border-right: 0;
	border-radius: 0;
	background: #fff;
}

.qalbi-search-drawer button {
	padding: 0 20px;
	border: 1px solid #111;
	background: #111;
	color: #fff;
	cursor: pointer;
}

.qalbi-hero {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 855px;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, .56), rgba(0, 0, 0, .14)),
		var(--qalbi-hero-image) center 33% / cover no-repeat;
	color: #fff;
	text-align: center;
}

.qalbi-hero::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(0deg, rgba(0, 0, 0, .28), transparent 45%);
	pointer-events: none;
}

.qalbi-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(620px, calc(100% - 40px));
	height: 100%;
	min-height: 855px;
	padding: 132px 20px 84px;
}

.qalbi-kicker {
	margin: 0 0 21px;
	font-size: 14px;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.qalbi-hero h1 {
	margin: 0 0 19px;
	font-family: "Syne", Arial, sans-serif;
	font-size: 64px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .03em;
}

.qalbi-hero__content > p:not(.qalbi-kicker) {
	max-width: 510px;
	margin: 0;
	font-size: 15px;
	line-height: 1.45;
}

.qalbi-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 30px;
	border: 1px solid #111;
	background: transparent;
	color: #111;
	font-size: 12px;
	letter-spacing: .06em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .2s ease, color .2s ease;
}

.qalbi-button:hover {
	background: #111;
	color: #fff;
}

.qalbi-button--light {
	margin-top: auto;
	border-color: #fff;
	background: rgba(255, 255, 255, .12);
	color: #fff;
}

.qalbi-button--light:hover {
	background: #fff;
	color: #111;
}

.qalbi-ticker {
	overflow: hidden;
	padding: 15px 0;
	background: #050505;
	color: #fff;
	white-space: nowrap;
}

.qalbi-ticker > div {
	display: inline-flex;
	gap: 58px;
	min-width: max-content;
	animation: qalbi-ticker 30s linear infinite;
}

.qalbi-ticker span {
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
}

@keyframes qalbi-ticker {
	to {
		transform: translateX(-50%);
	}
}

.qalbi-home-products {
	padding: 88px 0 82px;
}

.qalbi-product-grid {
	display: grid;
}

.qalbi-product-grid--home {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px 12px;
}

.qalbi-product-grid--catalogue {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 27px 16px;
}

.qalbi-product-card {
	min-width: 0;
	margin: 0;
}

.qalbi-product-card__link {
	display: block;
	color: var(--qalbi-ink);
	text-decoration: none;
}

.qalbi-product-card__media {
	position: relative;
	overflow: hidden;
	margin-bottom: 11px;
	border-radius: var(--qalbi-radius);
	background: #f6f6f4;
}

.qalbi-product-card__image {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	transform: scale(1);
	transition: transform .45s ease;
}

.qalbi-product-card__link:hover .qalbi-product-card__image {
	transform: scale(1.015);
}

.qalbi-product-card__name {
	margin: 0;
	color: #505050;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.qalbi-product-card__price {
	margin-top: 5px;
	color: #555;
	font-size: 12px;
}

.qalbi-product-card__price del {
	opacity: .5;
}

.qalbi-home-products__cta {
	padding-top: 45px;
	text-align: center;
}

.qalbi-story {
	padding: 112px 20px;
	background: var(--qalbi-cream);
	text-align: center;
}

.qalbi-story h2 {
	max-width: 900px;
	margin: 0 auto 18px;
	font-family: "Syne", Arial, sans-serif;
	font-size: 50px;
	font-weight: 400;
	line-height: 1.06;
}

.qalbi-story p {
	max-width: 540px;
	margin: 0 auto;
	color: #55514b;
	font-size: 14px;
	line-height: 1.65;
}

.qalbi-gallery {
	padding: 0;
	background: #fff;
}

.qalbi-gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.qalbi-gallery__item {
	margin: 0;
	overflow: hidden;
	background: #f5f5f3;
}

.qalbi-gallery__item img {
	display: block;
	width: 100%;
	height: auto;
}

.qalbi-chapters {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qalbi-chapter-card {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 720px;
	padding: 52px;
	overflow: hidden;
	background:
		linear-gradient(0deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .04)),
		var(--chapter-image) center top / cover no-repeat;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

.qalbi-chapter-card h2 {
	margin: 0 0 10px;
	font-family: "Syne", Arial, sans-serif;
	font-size: 50px;
	font-weight: 400;
}

.qalbi-chapter-card span {
	border-bottom: 1px solid currentColor;
	font-size: 13px;
	text-transform: uppercase;
}

.qalbi-catalogue {
	padding: 48px 0 100px;
}

.qalbi-catalogue__title {
	margin: 0 0 65px;
	font-family: "Syne", Arial, sans-serif;
	font-size: 50px;
	font-weight: 400;
	line-height: 1.1;
	text-align: center;
}

.qalbi-catalogue-toolbar {
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	margin-bottom: 27px;
}

.qalbi-catalogue-toolbar__filters,
.qalbi-catalogue-toolbar__sort {
	display: flex;
	align-items: center;
	gap: 18px;
}

.qalbi-catalogue-toolbar select,
.qalbi-price-filter summary {
	padding: 8px 22px 8px 0;
	border: 0;
	background: transparent;
	color: #555;
	font-size: 14px;
	cursor: pointer;
}

.qalbi-catalogue-toolbar select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%);
	background-position: calc(100% - 7px) 52%, calc(100% - 3px) 52%;
	background-size: 4px 4px, 4px 4px;
	background-repeat: no-repeat;
}

.qalbi-price-filter {
	position: relative;
}

.qalbi-price-filter summary {
	list-style: none;
}

.qalbi-price-filter summary::-webkit-details-marker {
	display: none;
}

.qalbi-price-filter summary::after {
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: 0 0 3px 8px;
	border-right: 1px solid #777;
	border-bottom: 1px solid #777;
	content: "";
	transform: rotate(45deg);
}

.qalbi-price-filter__panel {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	width: 280px;
	padding: 16px;
	background: #fff;
	box-shadow: 0 9px 35px rgba(0, 0, 0, .13);
}

.qalbi-price-filter__panel label span {
	display: block;
	margin-bottom: 5px;
	font-size: 11px;
	color: #777;
}

.qalbi-price-filter__panel input {
	width: 100%;
	padding: 9px;
	border: 1px solid #ccc;
}

.qalbi-price-filter__panel button {
	grid-column: 1 / -1;
	padding: 10px;
	border: 0;
	background: #111;
	color: #fff;
	cursor: pointer;
}

.qalbi-catalogue-toolbar__sort > span:first-child {
	color: #777;
	font-size: 14px;
}

.qalbi-grid-icon {
	display: grid;
	grid-template-columns: repeat(2, 4px);
	gap: 3px;
	align-content: center;
	justify-content: center;
	width: 29px;
	height: 29px;
	border-radius: 3px;
	background: #f1f1f1;
}

.qalbi-grid-icon i {
	width: 4px;
	height: 4px;
	border-radius: 1px;
	background: #111;
}

.qalbi-empty-state {
	padding: 90px 0;
	text-align: center;
}

.qalbi-content,
.qalbi-woocommerce-shell {
	padding-top: 70px;
	padding-bottom: 100px;
}

.qalbi-content > h1,
.qalbi-woocommerce-shell h1 {
	font-family: "Syne", Arial, sans-serif;
	font-size: 50px;
	font-weight: 400;
}

.qalbi-woocommerce-shell .woocommerce-breadcrumb {
	margin-bottom: 30px;
	color: #777;
	font-size: 12px;
}

.single-product .qalbi-woocommerce-shell div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
	gap: 70px;
}

.single-product .woocommerce-product-gallery,
.single-product div.product .summary {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

.single-product .woocommerce-product-gallery__wrapper img {
	border-radius: var(--qalbi-radius);
}

.single-product div.product .product_title {
	margin: 0 0 12px;
	font-family: "Syne", Arial, sans-serif;
	font-size: 50px;
	font-weight: 400;
}

.single-product div.product p.price {
	color: #333;
	font-size: 16px;
}

.single-product div.product form.cart {
	display: flex;
	gap: 10px;
	margin-top: 30px;
}

.woocommerce .quantity .qty {
	min-height: 48px;
	border: 1px solid #bbb;
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	min-height: 48px;
	padding: 13px 24px;
	border-radius: 0;
	background: #111;
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
	background: #333;
	color: #fff;
}

.woocommerce table.shop_table {
	border-radius: 0;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid #c9c9c9;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
	border-top-color: #111;
	background: #f6f6f4;
}

.woocommerce-info::before,
.woocommerce-message::before {
	color: #111;
}

.qalbi-footer {
	padding: 52px 0 0;
	background: #f7f7f5;
	color: #242424;
}

.qalbi-footer__inner,
.qalbi-footer__bottom {
	display: flex;
	width: min(var(--qalbi-container), calc(100% - 40px));
	margin-inline: auto;
}

.qalbi-footer__inner {
	align-items: flex-start;
	justify-content: space-between;
	gap: 80px;
	padding-bottom: 52px;
}

.qalbi-footer__inner > div:first-child {
	flex: 1.35;
}

.qalbi-footer__logo {
	display: block;
	width: 150px;
	height: 82px;
	margin-bottom: 4px;
	overflow: hidden;
}

.qalbi-footer__logo img {
	display: block;
	width: 150px;
	height: auto;
	filter: none;
}

.qalbi-footer__column {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 13px;
}

.qalbi-footer__column h2 {
	margin: 0 0 6px;
	font-family: "Syne", Arial, sans-serif;
	font-size: 24px;
	font-weight: 400;
}

.qalbi-footer p {
	margin: 7px 0 0;
	color: #333;
	font-size: 13px;
}

.qalbi-footer__column a {
	color: #555;
	font-size: 13px;
	text-decoration: none;
}

.qalbi-footer__column a:hover {
	color: #111;
}

.qalbi-footer__social {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #d8d8d5;
}

.qalbi-footer__social a {
	display: block;
	width: 24px;
	height: 24px;
	color: #222;
}

.qalbi-footer__social svg {
	display: block;
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.qalbi-footer__bottom {
	justify-content: space-between;
	margin-top: 0;
	padding-top: 30px;
	padding-bottom: 30px;
	border-top: 1px solid #dededb;
	color: #777;
	font-size: 10px;
}

@media (max-width: 1100px) {
	.qalbi-menu {
		gap: 14px;
	}

	.qalbi-menu a {
		font-size: 11px;
	}

	.qalbi-product-grid--catalogue {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.qalbi-chapter-card {
		min-height: 580px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .qalbi-header {
		top: 46px;
	}
}

@media (max-width: 800px) {
	.qalbi-container,
	.qalbi-header__inner,
	.qalbi-footer__inner,
	.qalbi-footer__bottom {
		width: calc(100% - 28px);
	}

	.qalbi-header {
		height: 64px;
	}

	.qalbi-mobile-toggle {
		display: block;
		color: #fff;
		cursor: pointer;
	}

	.qalbi-primary-nav {
		position: absolute;
		top: 64px;
		right: -14px;
		left: -14px;
		display: block;
		max-height: 0;
		overflow: hidden;
		background: #050505;
		transition: max-height .3s ease;
	}

	.qalbi-primary-nav.is-open {
		max-height: 420px;
	}

	.qalbi-menu {
		display: block;
		padding: 13px 20px 23px;
	}

	.qalbi-menu a {
		padding: 10px 0;
		font-size: 12px;
	}

	.qalbi-menu .sub-menu {
		position: static;
		display: none;
		min-width: 0;
		padding: 0 0 0 14px;
		background: transparent;
		color: #fff;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
	}

	.qalbi-menu .sub-menu a {
		color: #aaa;
	}

	.qalbi-menu li:hover > .sub-menu,
	.qalbi-menu li:focus-within > .sub-menu {
		display: block;
	}

	.qalbi-logo {
		width: 90px;
		height: 56px;
	}

	.qalbi-logo img {
		width: 82px;
		margin: 3px auto 0;
	}

	.qalbi-header-actions {
		gap: 4px;
	}

	.qalbi-icon-button {
		width: 29px;
	}

	.qalbi-icon-button svg {
		width: 17px;
		height: 17px;
	}

	.qalbi-hero,
	.qalbi-hero__content {
		min-height: 650px;
	}

	.qalbi-hero {
		background-position: center 27%;
	}

	.qalbi-hero__content {
		padding: 112px 18px 74px;
	}

	.qalbi-kicker {
		margin-bottom: 13px;
		font-size: 11px;
	}

	.qalbi-hero h1 {
		margin-bottom: 14px;
		font-size: 50px;
	}

	.qalbi-hero__content > p:not(.qalbi-kicker) {
		max-width: 300px;
		font-size: 13px;
	}

	.qalbi-ticker {
		padding: 12px 0;
	}

	.qalbi-ticker > div {
		gap: 35px;
	}

	.qalbi-ticker span {
		font-size: 10px;
	}

	.qalbi-home-products {
		padding: 50px 0 58px;
	}

	.qalbi-product-grid--home,
	.qalbi-product-grid--catalogue {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 25px 10px;
	}

	.qalbi-product-card__media {
		margin-bottom: 8px;
		border-radius: 12px;
	}

	.qalbi-product-card__name {
		font-size: 12px;
	}

	.qalbi-product-card__price {
		font-size: 11px;
	}

	.qalbi-home-products__cta {
		padding-top: 32px;
	}

	.qalbi-story {
		padding: 68px 22px;
	}

	.qalbi-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.qalbi-story h2,
	.qalbi-chapter-card h2,
	.qalbi-catalogue__title,
	.qalbi-content > h1,
	.qalbi-woocommerce-shell h1,
	.single-product div.product .product_title {
		font-size: 38px;
	}

	.qalbi-chapters {
		grid-template-columns: 1fr;
	}

	.qalbi-chapter-card {
		min-height: 470px;
		padding: 35px 18px;
	}

	.qalbi-catalogue {
		padding: 38px 0 65px;
	}

	.qalbi-catalogue__title {
		margin-bottom: 38px;
	}

	.qalbi-catalogue-toolbar {
		align-items: flex-start;
		margin-bottom: 20px;
	}

	.qalbi-catalogue-toolbar__filters,
	.qalbi-catalogue-toolbar__sort {
		gap: 8px;
	}

	.qalbi-catalogue-toolbar select,
	.qalbi-price-filter summary,
	.qalbi-catalogue-toolbar__sort > span:first-child {
		font-size: 10px;
	}

	.qalbi-catalogue-toolbar__sort > span:first-child,
	.qalbi-grid-icon {
		display: none;
	}

	.qalbi-price-filter__panel {
		width: 250px;
	}

	.single-product .qalbi-woocommerce-shell div.product {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.qalbi-content,
	.qalbi-woocommerce-shell {
		padding-top: 40px;
		padding-bottom: 70px;
	}

	.qalbi-footer {
		padding: 42px 0 0;
	}

	.qalbi-footer__inner {
		display: block;
		padding-bottom: 36px;
	}

	.qalbi-footer__column {
		margin-top: 34px;
	}

	.qalbi-footer__column h2 {
		font-size: 22px;
	}

	.qalbi-footer__bottom {
		display: block;
	}

	.qalbi-footer__bottom span {
		display: block;
		margin-top: 7px;
	}
}

/* Editorial product detail */
.single-product .qalbi-woocommerce-shell {
	width: min(1440px, calc(100% - 40px));
	padding-top: 25px;
	padding-bottom: 80px;
}

.qalbi-product-detail {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
	gap: 78px;
	align-items: start;
}

.qalbi-product-media {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
}

.qalbi-product-thumbs {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.qalbi-product-thumb {
	width: 74px;
	height: 112px;
	padding: 0;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: 16px;
	background: #f4f4f2;
	cursor: pointer;
}

.qalbi-product-thumb.is-active {
	border-color: #222;
}

.qalbi-product-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qalbi-product-main-image {
	overflow: hidden;
	border-radius: 16px;
	background: #f4f4f2;
}

.qalbi-product-main-image img {
	display: block;
	width: 100%;
	height: auto;
}

.qalbi-product-info {
	padding-top: 0;
}

.qalbi-product-info > h1 {
	margin: 0 0 12px;
	font-family: "Syne", Arial, sans-serif;
	font-size: 36px;
	font-weight: 400;
	line-height: 1.12;
}

.qalbi-product-price {
	margin-bottom: 20px;
	font-size: 16px;
}

.qalbi-product-meta {
	margin: 0 0 30px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.qalbi-size-guide {
	display: flex;
	justify-content: space-between;
	padding: 0 0 12px;
	border-bottom: 1px solid #ddd;
	font-size: 13px;
}

.qalbi-size-guide a {
	color: inherit;
	text-decoration: underline;
}

.qalbi-size-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin: 14px 0 10px;
}

.qalbi-size-options button {
	height: 46px;
	border: 1px solid #d8d8d8;
	border-radius: 20px;
	background: #fff;
	color: #222;
	cursor: pointer;
}

.qalbi-size-options button.is-active {
	border-color: #111;
	background: #050505;
	color: #fff;
}

.qalbi-add-to-cart {
	display: grid;
	grid-template-columns: 126px 1fr;
	gap: 12px;
	margin: 0;
}

.qalbi-add-to-cart .quantity {
	display: flex;
	align-items: center;
}

.qalbi-add-to-cart .quantity .qty {
	width: 100%;
	height: 52px;
	border: 1px solid #d8d8d8;
	text-align: center;
}

.qalbi-add-button,
.qalbi-buy-button {
	height: 52px;
	border: 0;
	background: #050505;
	color: #fff;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 13px;
	cursor: pointer;
}

.qalbi-buy-button {
	width: 100%;
	margin-top: 10px;
}

.qalbi-product-accordions {
	margin-top: 14px;
}

.qalbi-product-accordions details {
	border-bottom: 1px solid #e2e2e2;
}

.qalbi-product-accordions summary {
	display: flex;
	justify-content: space-between;
	padding: 14px 0;
	cursor: pointer;
	list-style: none;
	font-size: 15px;
}

.qalbi-product-accordions summary::-webkit-details-marker {
	display: none;
}

.qalbi-product-accordions summary::after {
	content: "⌄";
	font-size: 18px;
}

.qalbi-product-accordions details[open] summary::after {
	content: "⌃";
}

.qalbi-accordion-content {
	max-width: 540px;
	padding: 0 0 15px;
	color: #666;
	font-size: 13px;
	line-height: 1.7;
}

.qalbi-related-products {
	padding: 78px 0 0;
}

.qalbi-related-products h2 {
	margin: 0 0 26px;
	font-family: "Syne", Arial, sans-serif;
	font-size: 28px;
	font-weight: 400;
}

.qalbi-product-grid--related {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 800px) {
	.single-product .qalbi-woocommerce-shell {
		width: calc(100% - 28px);
		padding-top: 18px;
		padding-bottom: 60px;
	}

	.qalbi-product-detail {
		display: block;
	}

	.qalbi-product-media {
		grid-template-columns: 58px minmax(0, 1fr);
		gap: 8px;
	}

	.qalbi-product-thumb {
		width: 58px;
		height: 82px;
		border-radius: 11px;
	}

	.qalbi-product-main-image {
		border-radius: 12px;
	}

	.qalbi-product-info {
		padding-top: 32px;
	}

	.qalbi-product-info > h1 {
		font-size: 38px;
	}

	.qalbi-product-grid--related {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 25px 10px;
	}

	.qalbi-related-products {
		padding-top: 58px;
	}
}
