/* Product page premium UX */
.lux-product-gallery__main img {
	cursor: zoom-in;
	transition: transform 0.4s ease;
	border-radius: var(--lux-radius-lg);
}

.lux-product-gallery__main img.is-zoomed {
	cursor: zoom-out;
	transform: scale(1.75);
}

.lux-product-room-fit {
	margin: 1.5rem 0;
	padding: 1.25rem;
	background: var(--lux-gray-100);
	border-radius: var(--lux-radius-lg);
	border: 1px solid var(--lux-gray-300);
}

.lux-product-room-fit__form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.lux-product-room-fit__form input {
	width: 5.5rem;
	padding: 0.5rem 0.65rem;
	border: 1px solid var(--lux-gray-300);
	border-radius: var(--lux-radius-md);
}

.lux-sticky-atc {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 997;
	padding: 0.75rem 0;
	background: rgba(11, 11, 11, 0.94);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	transform: translateY(100%);
	transition: transform 0.35s ease;
	backdrop-filter: blur(16px);
}

.lux-sticky-atc.is-visible {
	transform: translateY(0);
}

.lux-sticky-atc__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.lux-sticky-atc__title {
	color: var(--lux-white);
	font-weight: 600;
	font-size: 0.9375rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lux-product-trust-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	margin: 1rem 0;
	font-size: 0.8125rem;
	color: var(--lux-gray-700);
}

.lux-product-trust-strip span {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.lux-quote-fab {
	position: fixed;
	bottom: 1.25rem;
	right: 1.25rem;
	z-index: 996;
	padding: 0.85rem 1.25rem;
	background: var(--lux-gold);
	color: var(--lux-black);
	font-weight: 700;
	font-size: 0.8125rem;
	text-decoration: none;
	border-radius: 999px;
	box-shadow: 0 8px 32px rgba(201, 162, 39, 0.35);
}

.lux-quote-fab:hover {
	color: var(--lux-black);
	transform: translateY(-2px);
}

@media (min-width: 901px) {
	.lux-sticky-atc {
		display: none;
	}
}

@media (max-width: 900px) {
	.lux-quote-fab {
		bottom: 5rem;
	}

	.lux-product-gallery__main img.is-zoomed {
		transform: none;
		cursor: default;
	}
}
