.ll-pgw {
	--ll-pgw-header-offset: 0px;
	width: 100%;
	align-self: flex-start;
}

.ll-pgw__sticky-track {
	min-height: calc(100dvh - var(--ll-pgw-header-offset));
}

.ll-pgw__sticky-shell {
	position: -webkit-sticky;
	position: sticky;
	top: var(--ll-pgw-header-offset);
	height: calc(100dvh - var(--ll-pgw-header-offset));
	min-height: 360px;
	display: flex;
	align-items: stretch;
	gap: 16px;
}

.ll-pgw__main-media {
	flex: 1 1 auto;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
	position: relative;
	background: #fff;
	cursor: zoom-in;
}

.ll-pgw .ll-pgw__main-media img.ll-pgw__image {
	display: block;
	width: auto !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain !important;
	object-position: left center !important;
	transform-origin: var(--ll-pgw-zoom-x, 50%) var(--ll-pgw-zoom-y, 50%);
	transition: opacity 0.24s ease, transform 0.2s ease;
	will-change: transform;
	pointer-events: none;
}

.ll-pgw__main-media.is-switching .ll-pgw__image {
	opacity: 0.24;
}

.ll-pgw__main-media.is-zoomed {
	cursor: zoom-out;
}

.ll-pgw__main-media.is-zoomed .ll-pgw__image {
	transform: scale(var(--ll-pgw-zoom-scale, 1.9));
}

.ll-pgw__thumbs {
	flex: 0 0 96px;
	width: 96px;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	overflow-y: auto;
	padding-right: 2px;
}

.ll-pgw__thumb {
	display: block;
	width: 100%;
	border: 1px solid #d9d9d9;
	background: #fff;
	padding: 0;
	cursor: pointer;
	line-height: 0;
	transition: border-color 0.2s ease;
}

.ll-pgw__thumb.is-active {
	border-color: #222;
}

.ll-pgw__thumb img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 1024px) {
	.ll-pgw__sticky-shell {
		gap: 12px;
	}

	.ll-pgw__thumbs {
		flex-basis: 80px;
		width: 80px;
	}
}

@media (hover: none), (pointer: coarse) {
	.ll-pgw__main-media {
		cursor: default;
	}
}

.elel-atc {
	--elel-atc-card-bg: #ffffff;
	--elel-atc-border: #e7e9ee;
	--elel-atc-muted: #6f7785;
	--elel-atc-text: #171a22;
	--elel-atc-accent: #7a4ec2;
	--elel-atc-accent-strong: #653cad;
	--elel-atc-control-height: 48px;
	--elel-atc-radius: 14px;
	width: 100%;
}

.elel-atc .cart.elel-atc__form {
	border: 1px solid var(--elel-atc-border);
	border-radius: var(--elel-atc-radius);
	background: var(--elel-atc-card-bg);
	box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
	padding: 20px;
}

.elel-atc__variations {
	display: grid;
	gap: 16px;
	margin-bottom: 30px;
}

.elel-atc__variation-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 12px 0;
	border-top: 1px solid #edf0f5;
	border-bottom: 1px solid #edf0f5;
}

.elel-atc__variation-label {
	flex: 0 0 96px;
	padding-top: 8px;
	font-size: 15px;
	font-weight: 600;
	color: var(--elel-atc-text);
}

.elel-atc__variation-value {
	flex: 1 1 auto;
	min-width: 0;
}

.elel-atc__hidden-select {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.elel-atc__swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.elel-atc__swatch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 10px 14px;
	border: 1px solid #d7dce5;
	border-radius: 10px;
	background: #fff;
	color: var(--elel-atc-text);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.elel-atc__swatch:hover {
	border-color: var(--elel-atc-swatch-hover-border, var(--elel-atc-accent));
	background: var(--elel-atc-swatch-hover-bg, #fff);
	color: var(--elel-atc-swatch-hover-text, var(--elel-atc-text));
	box-shadow: 0 0 0 3px rgba(122, 78, 194, 0.12);
}

.elel-atc__swatch.is-selected {
	border-color: var(--elel-atc-swatch-active-border, var(--elel-atc-accent));
	background: var(--elel-atc-swatch-active-bg, var(--elel-atc-accent));
	color: var(--elel-atc-swatch-active-text, #fff);
}

/* Unavailable options: match product list (.elel-pl-card__swatch.is-unavailable) */
.elel-atc__swatch.is-disabled,
.elel-atc__swatch:disabled {
	opacity: 1;
	border-color: #8a95aa;
	color: #4d5669;
	text-decoration: line-through;
	text-decoration-thickness: 2px;
	text-decoration-color: #6b7488;
	background: rgba(233, 237, 244, 0.88);
	cursor: not-allowed;
	box-shadow: none;
}

.elel-atc__swatch.is-disabled:hover,
.elel-atc__swatch:disabled:hover {
	border-color: #8a95aa;
	background: rgba(233, 237, 244, 0.88);
	color: #4d5669;
	box-shadow: none;
}

.elel-atc .reset_variations {
	display: inline-block;
	margin-top: 12px;
	color: var(--elel-atc-muted);
	font-size: 14px;
	text-decoration: none;
}

.elel-atc .reset_variations:hover {
	color: var(--elel-atc-text);
	text-decoration: underline;
}

.elel-atc-tooltip {
	position: absolute;
	z-index: 9999;
	max-width: 220px;
	padding: 6px 10px;
	border-radius: 6px;
	background: #111;
	color: #fff;
	font-size: 12px;
	line-height: 1.2;
	pointer-events: none;
	opacity: 0;
	transform: translateY(2px);
	transition: opacity 0.14s ease, transform 0.14s ease;
}

.elel-atc-tooltip.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.elel-atc .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	padding-top: 2px;
}

.elel-atc .woocommerce-variation-add-to-cart .quantity {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	order: 10;
	padding: 0 6px;
	height: var(--elel-atc-control-height);
	border: 1px solid #d7dce5;
	border-radius: 12px;
	background: #f8fafc;
}

.elel-atc .woocommerce-variation-add-to-cart .quantity .qty {
	height: var(--elel-atc-control-height);
	min-height: var(--elel-atc-control-height);
	width: 58px;
	padding: 6px 4px;
	border: 0;
	background: transparent;
	font-size: 17px;
	font-weight: 600;
	color: var(--elel-atc-text);
	text-align: center;
}

.elel-atc__qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid #c9ced8;
	border-radius: 999px;
	background: #fff;
	color: var(--elel-atc-text);
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.elel-atc__qty-btn:hover:not(:disabled) {
	border-color: var(--elel-atc-qty-hover-border, var(--elel-atc-accent));
	background: var(--elel-atc-qty-hover-bg, #f3edff);
	color: var(--elel-atc-qty-hover-text, var(--elel-atc-text));
}

.elel-atc__qty-btn.is-disabled,
.elel-atc__qty-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.elel-atc .woocommerce-variation-add-to-cart .single_add_to_cart_button {
	height: var(--elel-atc-control-height);
	min-height: var(--elel-atc-control-height);
	padding: 0 24px;
	border-radius: 12px;
	border: 0;
	background: var(--elel-atc-accent);
	font-weight: 600;
	order: 20;
	transition: background-color 0.2s ease, transform 0.06s ease;
}

.elel-atc .woocommerce-variation-add-to-cart .single_add_to_cart_button:hover:not(:disabled) {
	background: var(--elel-atc-cta-hover-bg, var(--elel-atc-accent-strong));
}

.elel-atc .woocommerce-variation-add-to-cart .single_add_to_cart_button:active:not(:disabled) {
	background: var(--elel-atc-cta-active-bg, var(--elel-atc-accent-strong));
	transform: translateY(1px);
}

.elel-atc .woocommerce-variation-add-to-cart .reset_variations {
	order: 30;
	margin: 0;
	margin-left: 22px;
	white-space: nowrap;
	align-self: center;
}

.elel-atc .single_variation .stock {
	display: none !important;
}

@media (max-width: 767px) {
	.elel-atc .cart.elel-atc__form {
		padding: 16px;
		border-radius: 12px;
	}

	.elel-atc__variation-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.elel-atc__variation-label {
		flex-basis: auto;
		padding-top: 0;
	}

	.elel-atc .woocommerce-variation-add-to-cart {
		gap: 10px;
	}

	.elel-atc .woocommerce-variation-add-to-cart .single_add_to_cart_button {
		width: 100%;
		order: 20;
	}

	.elel-atc .woocommerce-variation-add-to-cart .reset_variations {
		margin-left: 0;
	}
}

.elel-product-details {
	--elel-details-card-bg: #ffffff;
	--elel-details-card-border: #e7e9ee;
	--elel-details-label: #5f6775;
	--elel-details-value: #171a22;
	--elel-details-divider: #eef1f6;
	width: 100%;
}

.elel-product-details__card {
	border: 1px solid var(--elel-details-card-border);
	border-radius: 14px;
	background: var(--elel-details-card-bg);
	box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
	padding: 20px;
}

.elel-product-details__heading {
	margin: 0 0 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--elel-details-divider);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--elel-details-value);
}

.elel-product-details__rows {
	display: grid;
	gap: 10px;
}

.elel-product-details__row {
	display: grid;
	grid-template-columns: minmax(112px, 148px) minmax(0, 1fr);
	gap: 14px;
	padding: 8px 0;
	border-bottom: 1px solid var(--elel-details-divider);
}

.elel-product-details__row:last-child {
	border-bottom: 0;
}

.elel-product-details__label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--elel-details-label);
}

.elel-product-details__value {
	font-size: 15px;
	line-height: 1.5;
	color: var(--elel-details-value);
	word-break: break-word;
}

.elel-product-details__value p {
	margin: 0;
}

.elel-product-details__value a {
	color: var(--elel-details-value);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.elel-product-details__value a:hover {
	text-decoration-thickness: 2px;
}

.elel-pl {
	--elel-pl-cols-desktop: 4;
	--elel-pl-cols-tablet: 2;
	--elel-pl-cols-mobile: 1;
	--elel-pl-gap: 18px;
	width: 100%;
}

.elel-pl__viewport {
	width: 100%;
	overflow: hidden;
}

.elel-pl__track {
	display: grid;
	grid-template-columns: repeat(var(--elel-pl-cols-desktop), minmax(0, 1fr));
	gap: var(--elel-pl-gap);
	align-items: stretch;
}

.elel-pl--carousel .elel-pl__track {
	display: flex;
	flex-wrap: nowrap;
	transition: transform 0.28s ease;
	will-change: transform;
}

.elel-pl--carousel .elel-pl-card {
	flex: 0 0 calc((100% - (var(--elel-pl-gap) * (var(--elel-pl-cols-desktop) - 1))) / var(--elel-pl-cols-desktop));
}

.elel-pl__carousel-nav {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-bottom: 12px;
}

.elel-pl__nav-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid #b8c2d4;
	border-radius: 999px;
	background: #f6f8fc;
	color: #0f172a;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
}

.elel-pl__nav-icon {
	display: block;
	font-size: 22px;
	line-height: 1;
	transform: translateY(-1px);
}

.elel-pl__nav-button:hover:not(:disabled) {
	border-color: #111827;
	background: #ffffff;
	color: #111827;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.elel-pl__nav-button:active:not(:disabled) {
	transform: translateY(1px);
}

.elel-pl__nav-button:disabled {
	opacity: 0.58;
	background: #eef2f7;
	color: #8b97ad;
	border-color: #c8d0de;
	box-shadow: none;
	cursor: not-allowed;
}

.elel-pl-card {
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	min-width: 0;
	border: 1px solid #eaedf3;
	border-radius: 14px;
	background: #fff;
	overflow: hidden;
}

.elel-pl-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 2 / 3;
	background: #fff;
	overflow: hidden;
}

.elel-pl-card__media-link,
.elel-pl-card__media-link:focus,
.elel-pl-card__media-link:hover {
	display: block;
	position: absolute;
	inset: 0;
}

.elel-pl-card__media-link img.elel-pl-card__image {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center center !important;
	display: block;
	z-index: 1;
	opacity: 1;
	transition: opacity 0.6s ease-in-out;
	will-change: opacity;
}

.elel-pl-card__media-link img.elel-pl-card__image.elel-pl-card__image--transition {
	z-index: 1;
	pointer-events: none;
	transition: opacity 0.6s ease-in-out;
	will-change: opacity;
}

.elel-pl-card__media-link img.elel-pl-card__image.is-fading-out {
	opacity: 0 !important;
}

.elel-pl-card__swatches {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	z-index: 4;
	display: grid;
	gap: 6px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	backdrop-filter: none;
}

@supports not (aspect-ratio: 1 / 1) {
	.elel-pl-card__media {
		height: 0;
		padding-top: 150%;
	}
}

.elel-pl-card__swatch-group {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.elel-pl-card__swatch {
	min-height: 28px;
	padding: 4px 8px;
	border: 1px solid #cfd6e2;
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	color: #1b2231;
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.elel-pl-card__swatch.is-selected {
	border-color: #111;
	background: rgba(17, 17, 17, 0.82);
	color: #fff;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.38);
}

.elel-pl-card__swatch.is-unavailable,
.elel-pl-card__swatch:disabled {
	opacity: 1;
	border-color: #8a95aa;
	color: #4d5669;
	text-decoration: line-through;
	text-decoration-thickness: 2px;
	text-decoration-color: #6b7488;
	background: rgba(233, 237, 244, 0.88);
	backdrop-filter: blur(1px);
	-webkit-backdrop-filter: blur(1px);
	cursor: not-allowed;
	box-shadow: none;
}

.elel-pl-card__content {
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	gap: 10px;
	padding: 12px;
	height: 100%;
}

.elel-pl-card__title {
	margin: 0;
	min-height: 4.05em;
	font-size: 16px;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.elel-pl-card__title a {
	color: #151a24;
	text-decoration: none;
}

.elel-pl-card__title a:hover {
	text-decoration: underline;
}

.elel-pl-card__price {
	font-size: 22px;
	font-weight: 700;
	color: var(--e-global-color-accent, #c0204d);
	min-height: 1.6em;
	text-align: right;
}

.elel-pl-card__price .price {
	display: inline-flex;
	gap: 6px;
	align-items: baseline;
	justify-content: flex-end;
	width: 100%;
}

.elel-pl-card__actions {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: auto;
}

.elel-pl-card__actions .elel-pl-card__view-button,
.elel-pl-card__actions .elel-pl-card__view-button:visited {
	flex: 1 1 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	padding: 0 14px;
	border: 1px solid var(--e-global-color-primary, #111);
	border-radius: 10px;
	background: transparent;
	color: var(--e-global-color-primary, #111) !important;
	-webkit-text-fill-color: var(--e-global-color-primary, #111) !important;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.elel-pl-card__actions .elel-pl-card__view-button:hover,
.elel-pl-card__actions .elel-pl-card__view-button:focus,
.elel-pl-card__actions .elel-pl-card__view-button:focus-visible,
.elel-pl-card__actions .elel-pl-card__view-button:active {
	border-color: var(--e-global-color-primary, #111);
	background: var(--e-global-color-primary, #111);
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	text-decoration: none;
}

.elel-pl-card__atc-button {
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #bfc8d7;
	border-radius: 10px;
	background: #fff;
	color: #141414;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.elel-pl-card__atc-button .elementor-button-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.elel-pl-card__atc-button .e-font-icon-svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.elel-pl-card__atc-button .elementor-button-icon-qty {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 14px;
	height: 14px;
	padding: 0 2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--e-global-color-accent, #c0204d);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

.elel-pl-card__atc-button:hover:not(:disabled) {
	border-color: #141414;
	background: #141414;
	color: #fff;
}

.elel-pl-card__atc-button.is-loading {
	opacity: 0.6;
}

.elel-pl-card__atc-button.is-added {
	background: #198754;
	border-color: #198754;
	color: #fff;
}

.elel-pl-card__atc-button.is-disabled,
.elel-pl-card__atc-button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.elel-pl__pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.elel-pl__page-link {
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #d4dbe8;
	border-radius: 8px;
	background: #fff;
	color: #111;
	text-decoration: none;
	font-size: 14px;
}

.elel-pl__page-link.is-active {
	background: #111;
	color: #fff;
	border-color: #111;
}

/* Product list: toast after add to cart */
.elel-pl-toast-container {
	position: fixed;
	z-index: 999999888;
	right: 16px;
	top: 16px;
	left: 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	pointer-events: none;
}

@media (min-width: 600px) {
	.elel-pl-toast-container {
		left: auto;
		width: min(420px, calc(100vw - 32px));
	}
}

.elel-pl-toast {
	pointer-events: auto;
	max-width: 100%;
	padding: 14px 16px;
	border-radius: 10px;
	background: rgba(17, 17, 17, 0.92);
	color: #fff;
	font-size: 14px;
	line-height: 1.45;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.elel-pl-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.elel-pl-toast__message {
	margin: 0;
}

.elel-pl-toast__button {
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid var(--e-global-color-accent, #c0204d);
	border-radius: 8px;
	background: transparent;
	color: var(--e-global-color-accent, #c0204d);
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.elel-pl-toast__button:hover {
	border-color: var(--e-global-color-accent, #c0204d);
	background: var(--e-global-color-accent, #c0204d);
	color: #fff;
}

@media (max-width: 1024px) {
	.elel-pl__track {
		grid-template-columns: repeat(var(--elel-pl-cols-tablet), minmax(0, 1fr));
	}

	.elel-pl--carousel .elel-pl-card {
		flex-basis: calc((100% - (var(--elel-pl-gap) * (var(--elel-pl-cols-tablet) - 1))) / var(--elel-pl-cols-tablet));
	}
}

@media (max-width: 767px) {
	.elel-pl__track {
		grid-template-columns: repeat(var(--elel-pl-cols-mobile), minmax(0, 1fr));
	}

	.elel-pl--carousel .elel-pl-card {
		flex-basis: calc((100% - (var(--elel-pl-gap) * (var(--elel-pl-cols-mobile) - 1))) / var(--elel-pl-cols-mobile));
	}
}

@media (max-width: 767px) {
	.elel-product-details__card {
		padding: 16px;
		border-radius: 12px;
	}

	.elel-product-details__heading {
		font-size: 18px;
		margin-bottom: 12px;
		padding-bottom: 10px;
	}

	.elel-product-details__row {
		grid-template-columns: 1fr;
		gap: 4px;
		padding: 10px 0;
	}
}
