.irfas-single-product {
	--irfas-border: #e2e2e2;
	--irfas-muted: #666;
	--irfas-heading: #111;
	--irfas-panel-bg: #fff;
	--irfas-gap: 20px;
	--irfas-summary-gap: 16px;
	--irfas-gallery-col: 55%;
	--irfas-summary-col: 45%;
	--irfas-panel-padding: 16px;
	font-size: 16px;
	color: #1a1a1a;
}

.irfas-single-product__breadcrumbs {
	margin: 0 0 8px;
	color: #6f6f6f;
	font-size: 13px;
}

.irfas-single-product__breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.irfas-single-product__breadcrumbs a:hover {
	color: #111;
	text-decoration: underline;
}

.irfas-single-product__meta-line {
	font-size: 14px;
	color: var(--irfas-muted);
	margin-bottom: 4px;
}

.irfas-single-product__title {
	font-size: 24px;
	font-weight: 600;
	color: var(--irfas-heading);
	margin: 0 0 16px;
}

.irfas-single-product__main {
	display: grid;
	grid-template-columns: minmax(0, var(--irfas-gallery-col)) minmax(0, var(--irfas-summary-col));
	gap: var(--irfas-gap);
	align-items: start;
}

.irfas-single-product__gallery {
	position: relative;
	border: 1px solid var(--irfas-border);
	background: var(--irfas-panel-bg);
	padding: var(--irfas-panel-padding);
	border-radius: 8px;
}

.irfas-single-product__summary {
	border: 1px solid var(--irfas-border);
	background: var(--irfas-panel-bg);
	padding: var(--irfas-panel-padding);
	border-radius: 8px;
}

.irfas-single-product__summary-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: var(--irfas-summary-gap);
}

.irfas-single-product__gallery .woocommerce-product-gallery__wrapper img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.irfas-single-product__gallery .woocommerce-product-gallery__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
}

.irfas-single-product__gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
	position: relative;
	margin: 0;
	flex: 0 0 88px;
	width: 88px;
	opacity: 0.72;
	transition: opacity 0.2s ease;
}

.irfas-single-product__gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image.is-current {
	flex: 0 0 100%;
	width: 100%;
	order: -1;
	opacity: 1;
}

.irfas-single-product__gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:hover {
	opacity: 1;
}

.irfas-single-product__gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a {
	display: block;
	border-radius: 8px;
	overflow: hidden;
	cursor: default;
}

.irfas-single-product__gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image.is-current a {
	border-radius: 10px;
}

.irfas-single-product__gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image.is-current img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.irfas-single-product__gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(.is-current) img {
	width: 100%;
	height: 88px;
	max-height: none !important;
	object-fit: cover !important;
}

.irfas-single-product__gallery .irfas-single-product__gallery-arrows {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 10px;
	pointer-events: none;
}

.irfas-single-product__gallery .irfas-single-product__gallery-nav {
	pointer-events: auto;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: rgba(17, 17, 17, 0.75);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.irfas-single-product__gallery .irfas-single-product__gallery-nav:hover,
.irfas-single-product__gallery .irfas-single-product__gallery-nav:focus {
	background: rgba(17, 17, 17, 0.92);
}

.irfas-single-product__gallery .irfas-single-product__gallery-open {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 6;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: rgba(17, 17, 17, 0.75);
	color: #fff;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.irfas-single-product__gallery .irfas-single-product__gallery-open:hover,
.irfas-single-product__gallery .irfas-single-product__gallery-open:focus {
	background: rgba(17, 17, 17, 0.92);
}

.irfas-single-product__specs-title,
.irfas-single-product__buy-title,
.irfas-single-product__description-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--irfas-heading);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 10px;
}

.irfas-single-product__specs-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.irfas-single-product__specs-table th,
.irfas-single-product__specs-table td {
	padding: 6px 0;
	border-bottom: 1px solid var(--irfas-border);
	text-align: left;
	vertical-align: top;
}

.irfas-single-product__specs-table th {
	font-weight: 500;
	color: var(--irfas-muted);
	width: 55%;
}

.irfas-single-product__specs-table td {
	font-weight: 500;
	color: #333;
}

.irfas-single-product__price {
	font-size: 20px;
	font-weight: 700;
	color: #d62828;
	margin-bottom: 12px;
}

.irfas-single-product__cart form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.irfas-single-product__cart .quantity input.qty {
	width: 70px;
	height: 40px;
	padding: 0 6px;
}

.irfas-single-product__cart .single_add_to_cart_button {
	background: #e53935;
	border: none;
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	position: relative;
}

.irfas-single-product.is-cart-icon .irfas-single-product__cart .single_add_to_cart_button {
	text-indent: -9999px;
	overflow: hidden;
}

.irfas-single-product.is-cart-icon .irfas-single-product__cart .single_add_to_cart_button:before {
	content: "";
	width: 18px;
	height: 18px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='9' cy='20' r='1'/><circle cx='18' cy='20' r='1'/><path d='M4 4h2l2.4 11h9.6l2-8H7.4'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='9' cy='20' r='1'/><circle cx='18' cy='20' r='1'/><path d='M4 4h2l2.4 11h9.6l2-8H7.4'/></svg>") no-repeat center / contain;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.irfas-single-product__cart .single_add_to_cart_button:hover,
.irfas-single-product__cart .single_add_to_cart_button:focus {
	background: #c62828;
}

.irfas-single-product__description {
	margin-top: 20px;
	border: 1px solid var(--irfas-border);
	background: var(--irfas-panel-bg);
	padding: var(--irfas-panel-padding);
	border-radius: 8px;
}

.irfas-single-product__description-content {
	font-size: 14px;
	color: #333;
}

.irfas-single-product__description-content ul,
.irfas-single-product__description-content ol {
	margin: 0 0 1em;
	padding-left: 1.25em;
}

.irfas-single-product__description-content ul {
	list-style: disc;
}

.irfas-single-product__description-content ol {
	list-style: decimal;
}

.irfas-single-product__description-content li {
	margin-bottom: 0.35em;
}

.irfas-single-product__description-content p:last-child,
.irfas-single-product__description-content ul:last-child,
.irfas-single-product__description-content ol:last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.irfas-single-product__main {
		grid-template-columns: 1fr;
	}

	.irfas-single-product__summary-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.irfas-single-product__gallery .woocommerce-product-gallery__wrapper {
		gap: 8px;
	}

	.irfas-single-product__gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(.is-current) {
		flex-basis: 72px;
		width: 72px;
	}

	.irfas-single-product__gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(.is-current) img {
		height: 72px;
	}

	.irfas-single-product__gallery .irfas-single-product__gallery-nav {
		width: 32px;
		height: 32px;
		font-size: 20px;
	}

	.irfas-single-product__gallery .irfas-single-product__gallery-open {
		top: 10px;
		right: 10px;
		width: 30px;
		height: 30px;
		font-size: 14px;
	}

	.irfas-single-product__cart form.cart {
		align-items: stretch;
	}

	.irfas-single-product__cart .single_add_to_cart_button {
		width: 100%;
	}
}

/* Keep Elementor lightbox controls isolated from sticky header/panel UI. */
.dialog-type-lightbox,
.dialog-widget.dialog-lightbox-widget,
.elementor-lightbox {
	z-index: 200000 !important;
}

body.dialog-prevent-scroll .irfas-uber-header--sticky-hide,
body.dialog-prevent-scroll .sticky-panel {
	opacity: 0 !important;
	pointer-events: none !important;
}
