/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team.
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.1.9
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Premium WooCommerce product media gallery - built for Elementor shortcode widget */
.lux-pg-gallery,
.lux-pg-gallery * {
	box-sizing: border-box;
}

.lux-pg-empty {
	padding: 18px 20px;
	border: 1px dashed #cbd5e1;
	border-radius: 16px;
	background: #fff;
	color: #475569;
	font-size: 14px;
	line-height: 1.5;
}

/* GRID LAYOUT: first image large, rest as two-column cards */
.lux-pg-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.lux-pg-grid .lux-pg-card {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	background: #bfeaf2;
	overflow: hidden;
	text-decoration: none;
	box-shadow: none;
	position: relative;
}

.lux-pg-grid .lux-pg-card-main {
	grid-column: 1 / -1;
	aspect-ratio: 1 / 1;
}

.lux-pg-grid .lux-pg-card img,
.lux-pg-grid .lux-pg-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: inherit;
	transition: transform 220ms ease;
}

.lux-pg-grid .lux-pg-card:hover img {
	transform: scale(1.015);
}

/* SLIDER LAYOUT: thumbnails left + contained main image */
.lux-pg-slider {
	width: 100%;
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr);
	gap: 24px;
	align-items: stretch;
}

.lux-pg-thumbs {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: stretch;
	justify-content: flex-start;
	min-width: 0;
}

.lux-pg-thumb {
	appearance: none;
	-webkit-appearance: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	padding: 8px;
	border: 2px solid transparent;
	border-radius: 18px;
	background: #ffffff;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
	transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.lux-pg-thumb.is-active,
.lux-pg-thumb:hover {
	border-color: #0b56ff;
	box-shadow: 0 10px 24px rgba(11, 86, 255, 0.14);
}

.lux-pg-thumb:hover {
	transform: translateY(-1px);
}

.lux-pg-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.lux-pg-main-wrap {
	position: relative;
	min-width: 0;
	width: 100%;
}

.lux-pg-main-frame {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 560px;
	aspect-ratio: 1 / 1;
	padding: 0;
	border-radius: 24px;
	background: #f8f8f8;
	overflow: hidden;
}

.lux-pg-main-img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover !important;
	object-position: center !important;
	border-radius: 0;
}

.lux-pg-zoom {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: #ffffff;
	color: #030712;
	font-size: 28px;
	line-height: 1;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

.lux-pg-badge {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: #ffd34d;
	color: #061a40;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}



/* Image fit modes. Default is cover = no empty gaps inside cards. Use fit="contain" in shortcode only if you want the full image visible even with empty space. */
.lux-pg-fit-cover .lux-pg-img,
.lux-pg-fit-cover .lux-pg-main-img {
	object-fit: cover !important;
}

.lux-pg-fit-contain .lux-pg-img,
.lux-pg-fit-contain .lux-pg-main-img {
	object-fit: contain !important;
}

.lux-pg-fit-contain .lux-pg-main-frame {
	padding: 24px;
}

@media (max-width: 1024px) {
	.lux-pg-main-frame {
		min-height: 440px;
		padding: 0;
	}
}

@media (max-width: 767px) {
	.lux-pg-grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.lux-pg-grid .lux-pg-card {
		border-radius: 10px;
	}

	.lux-pg-slider {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.lux-pg-thumbs {
		order: 2;
		flex-direction: row;
		overflow-x: auto;
		padding: 2px 2px 8px;
		scrollbar-width: thin;
	}

	.lux-pg-thumb {
		flex: 0 0 72px;
		width: 72px;
		height: 72px;
		border-radius: 14px;
	}

	.lux-pg-main-wrap {
		order: 1;
	}

	.lux-pg-main-frame {
		min-height: auto;
		aspect-ratio: 1 / 1;
		padding: 0;
		border-radius: 20px;
	}
}


/* Force gallery hover colors so Elementor/theme global hover does not turn cards pink */
.lux-pg-gallery a,
.lux-pg-gallery a:visited,
.lux-pg-gallery a:hover,
.lux-pg-gallery a:focus,
.lux-pg-gallery a:active {
	color: inherit !important;
	text-decoration: none !important;
	outline: none !important;
}

.lux-pg-grid .lux-pg-card,
.lux-pg-grid .lux-pg-card:visited,
.lux-pg-grid .lux-pg-card:hover,
.lux-pg-grid .lux-pg-card:focus,
.lux-pg-grid .lux-pg-card:active {
	background: #bfeaf2 !important;
	border-color: transparent !important;
	box-shadow: none !important;
}

.lux-pg-thumb,
.lux-pg-thumb:hover,
.lux-pg-thumb:focus,
.lux-pg-thumb:active {
	background: #ffffff !important;
	color: inherit !important;
}

.lux-pg-main-frame,
.lux-pg-main-frame:hover,
.lux-pg-main-frame:focus,
.lux-pg-main-frame:active {
	background: #f8f8f8 !important;
}

.lux-pg-zoom,
.lux-pg-zoom:visited,
.lux-pg-zoom:hover,
.lux-pg-zoom:focus,
.lux-pg-zoom:active {
	background: #ffffff !important;
	color: #030712 !important;
}

/* Final hard fix: no empty inner space in the slider image card. */
.lux-pg-fit-cover .lux-pg-main-frame {
	padding: 0 !important;
}

.lux-pg-fit-cover .lux-pg-main-frame img,
.lux-pg-fit-cover .lux-pg-main-img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center center !important;
}

/* Premium WooCommerce reviews section - Amazon / Shopify inspired */
.lux-rv-wrap,
.lux-rv-wrap * {
	box-sizing: border-box;
}

.lux-rv-wrap {
	--lux-rv-accent: #d44fd2;
	--lux-rv-empty: #d1d5db;
	--lux-rv-text: #111111;
	--lux-rv-muted: #5f6368;
	--lux-rv-border: #e5e7eb;
	--lux-rv-soft: #fbf3fb;
	width: 100%;
	display: grid;
	grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
	gap: 48px;
	padding: 34px 0;
	color: var(--lux-rv-text);
	font-family: inherit;
}

.lux-rv-summary {
	align-self: start;
	position: sticky;
	top: 24px;
}

.lux-rv-summary h2 {
	margin: 0 0 16px;
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--lux-rv-text);
}

.lux-rv-stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	line-height: 1;
	white-space: nowrap;
}

.lux-rv-star {
	position: relative;
	display: inline-block;
	font-size: 24px;
	line-height: 1;
	color: var(--lux-rv-empty);
}

.lux-rv-star.is-filled {
	color: var(--lux-rv-accent);
}

.lux-rv-star.is-empty {
	color: var(--lux-rv-empty);
}

.lux-rv-star.is-partial {
	color: var(--lux-rv-empty);
}

.lux-rv-star.is-partial::before {
	content: '★';
	position: absolute;
	top: 0;
	left: 0;
	width: var(--lux-rv-fill, 0%);
	height: 100%;
	overflow: hidden;
	color: var(--lux-rv-accent);
}

.lux-rv-score-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 6px;
}

.lux-rv-score-row .lux-rv-stars .lux-rv-star {
	font-size: 31px;
}

.lux-rv-score-row strong {
	font-size: 38px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.lux-rv-score-row span:last-child {
	font-size: 14px;
	color: var(--lux-rv-muted);
}

.lux-rv-count {
	margin: 0 0 22px;
	font-size: 14px;
	color: var(--lux-rv-muted);
}

.lux-rv-bars {
	display: grid;
	gap: 10px;
	margin-bottom: 22px;
}

.lux-rv-bar {
	appearance: none;
	-webkit-appearance: none;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) 44px;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent !important;
	box-shadow: none !important;
	font: inherit;
	color: var(--lux-rv-text) !important;
	cursor: pointer;
	text-align: left;
}

.lux-rv-bar-label,
.lux-rv-bar-percent {
	font-size: 13px;
	color: #444;
}

.lux-rv-bar-percent {
	text-align: right;
}

.lux-rv-bar-track {
	display: block;
	height: 10px;
	border-radius: 999px;
	background: #f0f0f0;
	overflow: hidden;
}

.lux-rv-bar-track span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--lux-rv-accent);
}

.lux-rv-clear {
	appearance: none;
	-webkit-appearance: none;
	justify-self: start;
	padding: 4px 0;
	border: 0;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 13px;
	font-weight: 700;
	color: var(--lux-rv-text) !important;
	text-decoration: underline;
	cursor: pointer;
}

.lux-rv-write {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	padding: 12px 16px;
	border: 1px solid var(--lux-rv-text);
	border-radius: 999px;
	background: #ffffff !important;
	color: var(--lux-rv-text) !important;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	box-shadow: 0 2px 0 rgba(0,0,0,0.08);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.lux-rv-write:hover {
	transform: translateY(-1px);
	box-shadow: 0 7px 20px rgba(0,0,0,0.08);
}

.lux-rv-say {
	margin-top: 22px;
	padding: 18px;
	border-radius: 18px;
	background: var(--lux-rv-soft);
}

.lux-rv-say strong {
	display: block;
	margin-bottom: 7px;
	font-size: 15px;
	font-weight: 800;
}

.lux-rv-say p {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: #333;
}

.lux-rv-main {
	min-width: 0;
}

.lux-rv-main-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--lux-rv-border);
}

.lux-rv-eyebrow {
	display: inline-flex;
	margin-bottom: 4px;
	font-size: 13px;
	font-weight: 700;
	color: var(--lux-rv-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.lux-rv-main-head h3 {
	margin: 0;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--lux-rv-text);
}

.lux-rv-controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	flex-wrap: wrap;
}

.lux-rv-chip,
.lux-rv-sort {
	min-height: 38px;
	border: 1px solid var(--lux-rv-text) !important;
	border-radius: 10px !important;
	background: #fff !important;
	color: var(--lux-rv-text) !important;
	font-size: 13px;
	font-weight: 700;
	box-shadow: none !important;
}

.lux-rv-chip {
	padding: 8px 12px;
	cursor: pointer;
}

.lux-rv-chip.is-active {
	background: var(--lux-rv-text) !important;
	color: #fff !important;
}

.lux-rv-sort {
	padding: 8px 34px 8px 12px;
}

.lux-rv-image-strip {
	padding: 22px 0;
	border-bottom: 1px solid var(--lux-rv-border);
}

.lux-rv-strip-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.lux-rv-strip-head strong {
	font-size: 20px;
	font-weight: 800;
}

.lux-rv-strip-head span {
	font-size: 13px;
	color: var(--lux-rv-muted);
}

.lux-rv-strip-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}

.lux-rv-img-btn,
.lux-rv-media-btn {
	appearance: none;
	-webkit-appearance: none;
	padding: 0;
	border: 0;
	background: transparent !important;
	box-shadow: none !important;
	cursor: zoom-in;
	overflow: hidden;
}

.lux-rv-img-btn {
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	background: #f6f6f6 !important;
}

.lux-rv-img-btn img,
.lux-rv-media-btn img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 180ms ease;
}

.lux-rv-img-btn:hover img,
.lux-rv-media-btn:hover img {
	transform: scale(1.04);
}

.lux-rv-list {
	display: grid;
}

.lux-rv-card {
	padding: 26px 0;
	border-bottom: 1px solid var(--lux-rv-border);
}

.lux-rv-card.is-hidden {
	display: none !important;
}

.lux-rv-card-top {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 6px;
}

.lux-rv-card-top .lux-rv-star {
	font-size: 23px;
}

.lux-rv-author {
	font-size: 14px;
	font-weight: 800;
	color: var(--lux-rv-text);
}

.lux-rv-verified {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 20px;
	padding: 2px 8px;
	border: 1px solid var(--lux-rv-text);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	color: var(--lux-rv-text);
}

.lux-rv-date {
	display: block;
	margin-bottom: 16px;
	font-size: 13px;
	color: var(--lux-rv-muted);
}

.lux-rv-card h4 {
	margin: 0 0 9px;
	font-size: clamp(18px, 2vw, 23px);
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--lux-rv-text);
}

.lux-rv-content,
.lux-rv-content p {
	font-size: 15px;
	line-height: 1.62;
	color: #1f2937;
}

.lux-rv-content p {
	margin: 0 0 10px;
}

.lux-rv-content p:last-child {
	margin-bottom: 0;
}

.lux-rv-media {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 16px;
}

.lux-rv-media-btn {
	width: 112px;
	height: 112px;
	border-radius: 12px;
	background: #f5f5f5 !important;
}

.lux-rv-product-line {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
	padding: 12px;
	border-radius: 12px;
	background: var(--lux-rv-soft);
}

.lux-rv-product-img {
	width: 46px;
	height: 46px;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	flex: 0 0 auto;
}

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

.lux-rv-product-line span {
	display: block;
	font-size: 12px;
	color: var(--lux-rv-muted);
}

.lux-rv-product-line a {
	font-size: 14px;
	font-weight: 700;
	color: var(--lux-rv-text) !important;
	text-decoration: underline !important;
}

.lux-rv-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 22px 0 0;
	min-height: 44px;
	padding: 12px 22px;
	border: 1px solid var(--lux-rv-text) !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: var(--lux-rv-text) !important;
	font-size: 14px;
	font-weight: 800;
	box-shadow: 0 2px 0 rgba(0,0,0,0.08) !important;
	cursor: pointer;
}

.lux-rv-empty {
	padding: 18px;
	border: 1px dashed #cbd5e1;
	border-radius: 16px;
	background: #fff;
	color: #475569;
	font-size: 14px;
	line-height: 1.5;
}

.lux-rv-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0,0,0,0.82);
}

.lux-rv-lightbox.is-open {
	display: flex;
}

.lux-rv-lightbox img {
	display: block;
	max-width: min(94vw, 1100px);
	max-height: 88vh;
	border-radius: 12px;
	object-fit: contain;
	background: #fff;
}

.lux-rv-close {
	position: absolute;
	top: 18px;
	right: 20px;
	width: 44px;
	height: 44px;
	border: 0 !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: #111 !important;
	font-size: 30px;
	line-height: 1;
	font-weight: 400;
	cursor: pointer;
	box-shadow: none !important;
}

@media (max-width: 1024px) {
	.lux-rv-wrap {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.lux-rv-summary {
		position: static;
		max-width: 520px;
	}

	.lux-rv-strip-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.lux-rv-wrap {
		padding: 24px 0;
		gap: 22px;
	}

	.lux-rv-summary h2 {
		font-size: 25px;
	}

	.lux-rv-score-row {
		align-items: flex-end;
		flex-wrap: wrap;
	}

	.lux-rv-score-row .lux-rv-stars .lux-rv-star {
		font-size: 25px;
	}

	.lux-rv-score-row strong {
		font-size: 34px;
	}

	.lux-rv-main-head {
		display: grid;
		gap: 14px;
	}

	.lux-rv-controls {
		justify-content: flex-start;
	}

	.lux-rv-chip,
	.lux-rv-sort {
		min-height: 36px;
		font-size: 12px;
	}

	.lux-rv-strip-grid {
		display: flex;
		overflow-x: auto;
		padding-bottom: 6px;
		scrollbar-width: thin;
	}

	.lux-rv-img-btn {
		flex: 0 0 90px;
		width: 90px;
		height: 90px;
	}

	.lux-rv-card {
		padding: 22px 0;
	}

	.lux-rv-media-btn {
		width: 92px;
		height: 92px;
	}

	.lux-rv-product-line {
		align-items: flex-start;
	}
}


/* Review form modal: makes "Write a customer review" work even when the default WooCommerce reviews tab/form is not placed in Elementor. */
html.lux-rv-lock-scroll,
html.lux-rv-lock-scroll body {
	overflow: hidden;
}

.lux-rv-write {
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}

.lux-rv-form-modal {
	position: fixed;
	inset: 0;
	z-index: 999998;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 22px;
	background: rgba(0,0,0,0.62);
}

.lux-rv-form-modal.is-open {
	display: flex;
}

.lux-rv-form-panel {
	position: relative;
	width: min(100%, 620px);
	max-height: 90vh;
	overflow: auto;
	padding: 28px;
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 24px 80px rgba(0,0,0,0.24);
	color: #111111;
}

.lux-rv-form-panel h3 {
	margin: 0 42px 8px 0;
	font-size: 26px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #111111;
}

.lux-rv-form-intro,
.lux-rv-form-message {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.55;
	color: #4b5563;
}

.lux-rv-form-message {
	padding: 14px 16px;
	border: 1px dashed #cbd5e1;
	border-radius: 14px;
	background: #f8fafc;
}

.lux-rv-form-close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid #e5e7eb !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	color: #111111 !important;
	font-size: 26px;
	line-height: 1;
	font-weight: 400;
	box-shadow: none !important;
	cursor: pointer;
}

.lux-rv-comment-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
}

.lux-rv-comment-form .comment-form-cookies-consent,
.lux-rv-comment-form .form-submit,
.lux-rv-comment-form .lux-rv-field:not(.lux-rv-field-half) {
	grid-column: 1 / -1;
}

.lux-rv-field,
.lux-rv-comment-form p {
	margin: 0;
}

.lux-rv-field label,
.lux-rv-comment-form label {
	display: block;
	margin-bottom: 7px;
	font-size: 13px;
	font-weight: 800;
	color: #111111;
}

.lux-rv-field input,
.lux-rv-field textarea,
.lux-rv-field select,
.lux-rv-comment-form input[type="text"],
.lux-rv-comment-form input[type="email"],
.lux-rv-comment-form textarea,
.lux-rv-comment-form select {
	width: 100%;
	min-height: 44px;
	padding: 11px 13px;
	border: 1px solid #d1d5db !important;
	border-radius: 12px !important;
	background: #ffffff !important;
	color: #111111 !important;
	font-size: 14px;
	line-height: 1.4;
	box-shadow: none !important;
	outline: none;
}

.lux-rv-field textarea,
.lux-rv-comment-form textarea {
	min-height: 130px;
	resize: vertical;
}

.lux-rv-field input:focus,
.lux-rv-field textarea:focus,
.lux-rv-field select:focus,
.lux-rv-comment-form input:focus,
.lux-rv-comment-form textarea:focus,
.lux-rv-comment-form select:focus {
	border-color: #111111 !important;
}

.lux-rv-submit {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 22px !important;
	border: 1px solid #111111 !important;
	border-radius: 999px !important;
	background: #111111 !important;
	color: #ffffff !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	box-shadow: none !important;
	cursor: pointer;
}

@media (max-width: 767px) {
	.lux-rv-form-modal {
		align-items: flex-end;
		padding: 12px;
	}

	.lux-rv-form-panel {
		width: 100%;
		max-height: 92vh;
		padding: 22px 18px;
		border-radius: 20px;
	}

	.lux-rv-form-panel h3 {
		font-size: 22px;
	}

	.lux-rv-comment-form {
		grid-template-columns: 1fr;
	}

	.lux-rv-comment-form .comment-form-cookies-consent,
	.lux-rv-comment-form .form-submit,
	.lux-rv-comment-form .lux-rv-field:not(.lux-rv-field-half) {
		grid-column: auto;
	}
}


/* Native review image upload field inside the popup form. */
.lux-rv-upload-field {
	position: relative;
}

.lux-rv-optional {
	font-weight: 600;
	color: #6b7280;
}

.lux-rv-upload-box {
	display: flex !important;
	align-items: center;
	gap: 12px;
	min-height: 86px;
	padding: 14px !important;
	border: 1px dashed #9ca3af !important;
	border-radius: 16px !important;
	background: #fafafa !important;
	cursor: pointer;
	transition: border-color 160ms ease, background 160ms ease;
}

.lux-rv-upload-box:hover {
	border-color: #111111 !important;
	background: #ffffff !important;
}

.lux-rv-upload-box strong,
.lux-rv-upload-box small {
	display: block;
}

.lux-rv-upload-box strong {
	font-size: 14px;
	line-height: 1.25;
	font-weight: 800;
	color: #111111;
}

.lux-rv-upload-box small {
	margin-top: 4px;
	font-size: 12px;
	line-height: 1.35;
	font-weight: 500;
	color: #6b7280;
}

.lux-rv-upload-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: #111111;
	color: #ffffff;
	font-size: 26px;
	font-weight: 500;
	line-height: 1;
	flex: 0 0 auto;
}

.lux-rv-upload-field input[type="file"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.lux-rv-upload-preview {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	min-height: 0;
}

.lux-rv-upload-preview:not(:empty) {
	margin-top: -4px;
}

.lux-rv-upload-preview img {
	display: block;
	width: 72px;
	height: 72px;
	border-radius: 12px;
	object-fit: cover;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
}


.lux-rv-upload-error {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.4;
	color: #b42318;
}


/* =========================================================
   Premium supplement style - WooCommerce Shop / Archive page
   ========================================================= */

body.lux-shop-premium .site-main,
body.lux-shop-premium .woocommerce {
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
}

body.lux-shop-premium .woocommerce-products-header {
	margin-bottom: 18px;
}

body.lux-shop-premium .woocommerce-products-header__title.page-title,
body.lux-shop-premium .page-title {
	margin: 0 0 10px;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.05;
	letter-spacing: -0.03em;
	font-weight: 800;
	color: #0d2240;
}

body.lux-shop-premium .term-description,
body.lux-shop-premium .woocommerce-products-header p {
	max-width: 680px;
	font-size: 16px;
	line-height: 1.7;
	color: #5d6b82;
}

body.lux-shop-premium .woocommerce-breadcrumb {
	margin-bottom: 16px;
	font-size: 14px;
	color: #72819a;
}

body.lux-shop-premium .woocommerce-breadcrumb a {
	color: #4f6fa8;
	text-decoration: none;
}

body.lux-shop-premium .woocommerce-result-count {
	font-size: 14px;
	color: #6d7a8f;
	margin: 0;
}

body.lux-shop-premium .woocommerce-ordering {
	margin: 0 0 26px;
}

body.lux-shop-premium .woocommerce-ordering select {
	min-width: 220px;
	padding: 12px 42px 12px 14px;
	border: 1px solid #d8e0eb;
	border-radius: 14px;
	background: #fff;
	color: #0d2240;
	font-size: 14px;
}

body.lux-shop-premium ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	margin-top: 22px;
}

body.lux-shop-premium ul.products::before,
body.lux-shop-premium ul.products::after {
	display: none !important;
}

body.lux-shop-premium ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
	padding: 0 !important;
	list-style: none;
	background: #ffffff;
	border: 1px solid #e7edf5;
	border-radius: 26px;
	overflow: hidden;
	box-shadow: 0 12px 34px rgba(12, 31, 61, 0.06);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
	position: relative;
	display: flex;
	flex-direction: column;
}

body.lux-shop-premium ul.products li.product:hover {
	transform: translateY(-4px);
	border-color: #d4e0ef;
	box-shadow: 0 20px 44px rgba(12, 31, 61, 0.10);
}

body.lux-shop-premium ul.products li.product > a:first-of-type {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	height: 100%;
}

body.lux-shop-premium ul.products li.product a img {
	width: 100% !important;
	margin: 0 !important;
}

body.lux-shop-premium ul.products li.product .attachment-woocommerce_thumbnail,
body.lux-shop-premium ul.products li.product .woocommerce-placeholder {
	aspect-ratio: 4 / 4.7;
	object-fit: contain;
	padding: 24px;
	background:
		radial-gradient(circle at top left, rgba(222, 239, 255, 0.95), rgba(245, 250, 255, 0.95) 54%, rgba(231, 240, 255, 0.88));
	border-bottom: 1px solid #edf2f8;
}

body.lux-shop-premium ul.products li.product .onsale {
	min-height: unset;
	min-width: unset;
	line-height: 1;
	padding: 10px 14px;
	margin: 0;
	border-radius: 999px;
	background: #0d4ea6;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	top: 16px !important;
	left: 16px !important;
	right: auto !important;
}

body.lux-shop-premium ul.products li.product .woocommerce-loop-product__title {
	padding: 22px 22px 0;
	margin: 0;
	font-size: 24px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #10233f;
	text-transform: none;
}

body.lux-shop-premium ul.products li.product .star-rating {
	margin: 12px 22px 0 !important;
	color: #f3b41b;
	font-size: 14px;
}

body.lux-shop-premium .lux-shop-excerpt {
	padding: 10px 22px 0;
	font-size: 14px;
	line-height: 1.7;
	color: #64748b;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 48px;
}

body.lux-shop-premium ul.products li.product .price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
	padding: 14px 22px 0;
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #0d4ea6;
}

body.lux-shop-premium ul.products li.product .price del {
	order: 2;
	color: #97a4b5;
	font-size: 15px;
	opacity: 1;
}

body.lux-shop-premium ul.products li.product .price ins {
	order: 1;
	text-decoration: none;
	color: #0d2240;
	font-size: 26px;
	font-weight: 800;
}

body.lux-shop-premium ul.products li.product .price .amount {
	text-decoration: none;
}

body.lux-shop-premium ul.products li.product .button,
body.lux-shop-premium ul.products li.product .added_to_cart {
	margin: 18px 22px 0 !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: calc(100% - 44px);
	min-height: 54px;
	padding: 14px 18px !important;
	border-radius: 16px;
	border: 1px solid #0d4ea6;
	background: linear-gradient(180deg, #135dcc, #0d4ea6);
	color: #fff !important;
	font-size: 15px;
	font-weight: 800;
	text-decoration: none !important;
	box-shadow: 0 12px 24px rgba(13, 78, 166, 0.18);
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

body.lux-shop-premium ul.products li.product .button:hover,
body.lux-shop-premium ul.products li.product .added_to_cart:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(13, 78, 166, 0.24);
	background: linear-gradient(180deg, #1565da, #0d4ea6);
}

body.lux-shop-premium .lux-shop-trust-row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	padding: 16px 22px 24px;
	margin-top: auto;
}

body.lux-shop-premium .lux-shop-trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 10px;
	border-radius: 999px;
	background: #f4f8fd;
	border: 1px solid #e2ebf5;
	color: #4d6281;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

body.lux-shop-premium .lux-shop-trust-row span::before {
	content: '•';
	color: #0d4ea6;
	font-size: 14px;
	line-height: 1;
}

body.lux-shop-premium .woocommerce-pagination {
	margin-top: 34px;
}

body.lux-shop-premium .woocommerce-pagination ul.page-numbers {
	border: 0;
	display: flex;
	gap: 10px;
	justify-content: center;
}

body.lux-shop-premium .woocommerce-pagination ul.page-numbers li {
	border: 0;
	float: none;
}

body.lux-shop-premium .woocommerce-pagination .page-numbers a,
body.lux-shop-premium .woocommerce-pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #dbe5f0;
	color: #0d2240;
	font-weight: 700;
}

body.lux-shop-premium .woocommerce-pagination .page-numbers .current {
	background: #0d4ea6;
	border-color: #0d4ea6;
	color: #fff;
}

body.lux-shop-premium.lux-shop-single-item ul.products {
	grid-template-columns: minmax(320px, 430px);
	justify-content: center;
}

body.lux-shop-premium.lux-shop-single-item ul.products li.product {
	max-width: 430px;
}

@media (max-width: 1024px) {
	body.lux-shop-premium ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px;
	}
}

@media (max-width: 767px) {
	body.lux-shop-premium .woocommerce-products-header__title.page-title,
	body.lux-shop-premium .page-title {
		font-size: 34px;
	}

	body.lux-shop-premium ul.products {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	body.lux-shop-premium ul.products li.product,
	body.lux-shop-premium.lux-shop-single-item ul.products li.product {
		max-width: none;
	}

	body.lux-shop-premium ul.products li.product .attachment-woocommerce_thumbnail,
	body.lux-shop-premium ul.products li.product .woocommerce-placeholder {
		padding: 18px;
	}

	body.lux-shop-premium ul.products li.product .woocommerce-loop-product__title {
		font-size: 22px;
		padding: 18px 18px 0;
	}

	body.lux-shop-premium .lux-shop-excerpt,
	body.lux-shop-premium ul.products li.product .price,
	body.lux-shop-premium .lux-shop-trust-row {
		padding-left: 18px;
		padding-right: 18px;
	}

	body.lux-shop-premium ul.products li.product .button,
	body.lux-shop-premium ul.products li.product .added_to_cart {
		margin-left: 18px !important;
		margin-right: 18px !important;
		width: calc(100% - 36px);
	}
}


/* =========================================================
   Premium scalable shop intro
   ========================================================= */

body.lux-shop-premium .woocommerce-products-header {
	display: none;
}

body.lux-shop-premium .lux-shop-intro {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 24px;
	padding: 28px 30px;
	margin: 6px 0 26px;
	border: 1px solid #e6edf5;
	border-radius: 28px;
	background: linear-gradient(135deg, #f4f8fd 0%, #ffffff 68%, #eef4fb 100%);
	box-shadow: 0 14px 36px rgba(12, 31, 61, 0.05);
}

body.lux-shop-premium .lux-shop-intro-copy {
	max-width: 760px;
}

body.lux-shop-premium .lux-shop-intro-kicker {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: #eaf2ff;
	color: #0d4ea6;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

body.lux-shop-premium .lux-shop-intro-title {
	margin: 0;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.02;
	letter-spacing: -0.03em;
	font-weight: 800;
	color: #0d2240;
}

body.lux-shop-premium .lux-shop-intro-text {
	margin: 14px 0 0;
	font-size: 16px;
	line-height: 1.75;
	color: #607089;
	max-width: 720px;
}

body.lux-shop-premium .lux-shop-intro-chips {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 18px;
}

body.lux-shop-premium .lux-shop-intro-chips span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 12px;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid #dde7f2;
	color: #40546f;
	font-size: 13px;
	font-weight: 700;
}

body.lux-shop-premium .lux-shop-intro-chips span::before {
	content: '•';
	color: #0d4ea6;
	font-size: 15px;
	line-height: 1;
}

body.lux-shop-premium .woocommerce-breadcrumb {
	margin-bottom: 12px;
}

body.lux-shop-premium .woocommerce-notices-wrapper:empty {
	display: none;
}

body.lux-shop-premium .woocommerce .products,
body.lux-shop-premium ul.products {
	margin-top: 0;
}

body.lux-shop-premium .woocommerce-ordering {
	margin-top: 2px;
}

@media (max-width: 767px) {
	body.lux-shop-premium .lux-shop-intro {
		padding: 20px 18px;
		border-radius: 22px;
		margin-bottom: 20px;
	}

	body.lux-shop-premium .lux-shop-intro-title {
		font-size: 34px;
	}

	body.lux-shop-premium .lux-shop-intro-text {
		font-size: 15px;
		line-height: 1.65;
	}
}
