/* ============================================================================
   LUMALUX — Shop V2 (dark luxury)
   ============================================================================ */

:root {
	--lsh-bg:        #0d0d0d;
	--lsh-bg-2:      #141414;
	--lsh-surface:   #1a1a1a;
	--lsh-surface-2: #1f1f1f;
	--lsh-border:    rgba(186, 153, 63, 0.22);
	--lsh-border-2:  rgba(255, 255, 255, 0.06);
	--lsh-gold:      #BA993F;
	--lsh-gold-2:    #d4b65a;
	--lsh-text:      #f5f1e6;
	--lsh-text-soft: #e7decf;
	--lsh-muted:     #a8a08d;
	--lsh-font:      'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	--lsh-serif:     'Cormorant Garamond', 'Playfair Display', Georgia, serif;
}

.lumalux-shop-v2 {
	background: var(--lsh-bg);
	color: var(--lsh-text);
	font-family: var(--lsh-font);
	-webkit-font-smoothing: antialiased;
	min-height: 70vh;
}
.lumalux-shop-v2 *, .lumalux-shop-v2 *::before, .lumalux-shop-v2 *::after { box-sizing: border-box; }
.lumalux-shop-v2 a { text-decoration: none; color: inherit; }
.lumalux-shop-v2 img { max-width: 100%; height: auto; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.lsh-hero {
	position: relative;
	padding: 90px 24px 70px;
	overflow: hidden;
	background: linear-gradient(180deg, #0d0d0d 0%, #161616 100%);
}
.lsh-bg { position: absolute; inset: 0; pointer-events: none; }
.lsh-glow {
	position: absolute;
	top: -180px;
	right: -120px;
	width: 660px;
	height: 660px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(186, 153, 63, 0.28) 0%, rgba(186, 153, 63, 0.08) 35%, transparent 70%);
	filter: blur(40px);
}
.lsh-grain {
	position: absolute; inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 3px 3px;
	opacity: 0.4;
}
.lsh-hero-inner {
	position: relative;
	max-width: 920px;
	margin: 0 auto;
	text-align: center;
}
.lsh-eyebrow {
	display: inline-block;
	color: var(--lsh-gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.lsh-title {
	font-family: var(--lsh-serif);
	font-size: 56px;
	font-weight: 400;
	line-height: 1.1;
	color: var(--lsh-text);
	margin: 0 0 22px;
	letter-spacing: 0.005em;
}
.lsh-title em { color: var(--lsh-gold); font-style: italic; }
.lsh-lead {
	color: var(--lsh-muted);
	font-size: 17px;
	line-height: 1.7;
	max-width: 620px;
	margin: 0 auto 24px;
}
.lsh-trust {
	display: inline-flex;
	gap: 8px;
	font-size: 12px;
	color: var(--lsh-muted);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 500;
	flex-wrap: wrap;
	justify-content: center;
}
.lsh-trust > span { display: inline-flex; align-items: center; gap: 6px; padding: 0 4px; }
.lsh-trust svg { color: var(--lsh-gold); flex-shrink: 0; }
.lsh-trust .sep { color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════════════════════
   FILTRI CATEGORIA (sticky sub-nav)
   ═══════════════════════════════════════════════════════ */
.lsh-filters {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(13, 13, 13, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid var(--lsh-border-2);
	border-bottom: 1px solid var(--lsh-border-2);
}
.lsh-filters-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}
.lsh-filter {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 22px;
	background: transparent;
	border: 1px solid var(--lsh-border-2);
	color: var(--lsh-text-soft);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.lsh-filter small {
	color: var(--lsh-muted);
	font-size: 10px;
	font-weight: 600;
	background: rgba(186, 153, 63, 0.10);
	padding: 3px 8px;
	border-radius: 999px;
	transition: background 0.25s ease, color 0.25s ease;
}
.lsh-filter:hover {
	border-color: var(--lsh-gold);
	color: var(--lsh-gold);
}
.lsh-filter.is-active {
	background: var(--lsh-gold);
	border-color: var(--lsh-gold);
	color: #0d0d0d;
}
.lsh-filter.is-active small { background: rgba(13, 13, 13, 0.18); color: #0d0d0d; }

/* ═══════════════════════════════════════════════════════
   GRID PRODOTTI
   ═══════════════════════════════════════════════════════ */
.lsh-grid-section {
	padding: 60px 24px 80px;
	background: var(--lsh-bg-2);
}
.lsh-grid-inner { max-width: 1240px; margin: 0 auto; }

.lsh-grid-inner.is-loading .lsh-grid,
.lsh-grid-inner.is-loading .lsh-empty {
	opacity: 0.4;
	pointer-events: none;
	transition: opacity 0.2s ease;
}
.lsh-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.lsh-card {
	position: relative;
	background: var(--lsh-surface);
	border: 1px solid var(--lsh-border-2);
	transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
	overflow: hidden;
}
.lsh-card:hover {
	transform: translateY(-5px);
	border-color: var(--lsh-gold);
	background: var(--lsh-surface-2);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.lsh-card.is-best { border-color: var(--lsh-gold); }
.lsh-card-link {
	display: block;
	color: inherit;
}

.lsh-card-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 6px 12px;
}
.lsh-card-badge--best { background: var(--lsh-gold); color: #0d0d0d; }
.lsh-card-badge--sale { background: #c62828; color: #ffffff; }

.lsh-card-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.lsh-card-img img {
	max-width: 80%;
	max-height: 88%;
	width: auto;
	height: auto;
	display: block;
	filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.5));
	transition: transform 0.6s ease;
}
.lsh-card:hover .lsh-card-img img { transform: scale(1.06); }

.lsh-card-body {
	padding: 24px 22px 26px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	border-top: 1px solid var(--lsh-border-2);
}
.lsh-card-cat {
	color: var(--lsh-muted);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.20em;
	text-transform: uppercase;
}
.lsh-card-title {
	font-family: var(--lsh-serif);
	font-size: 21px;
	font-weight: 500;
	color: var(--lsh-text);
	line-height: 1.25;
	margin: 2px 0 6px;
	letter-spacing: 0.005em;
	/* truncate at 2 lines */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.5em;
}
.lsh-card-price {
	display: flex;
	align-items: baseline;
	gap: 10px;
}
.lsh-card-old {
	color: var(--lsh-muted);
	font-size: 14px;
	text-decoration: line-through;
	text-decoration-color: var(--lsh-gold);
}
.lsh-card-old .amount { color: inherit; }
.lsh-card-now {
	font-family: var(--lsh-serif);
	font-size: 26px;
	font-weight: 600;
	color: var(--lsh-gold);
	line-height: 1;
}
.lsh-card-now .amount { color: inherit; }
.lsh-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	color: var(--lsh-gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	transition: gap 0.25s ease;
}
.lsh-card:hover .lsh-card-cta { gap: 12px; }

/* Empty state */
.lsh-empty {
	text-align: center;
	padding: 80px 0;
	color: var(--lsh-muted);
}
.lsh-empty h2 {
	font-family: var(--lsh-serif);
	font-size: 28px;
	font-weight: 500;
	color: var(--lsh-text);
	margin: 0 0 18px;
}
.lsh-empty-btn {
	display: inline-flex;
	gap: 8px;
	padding: 13px 26px;
	background: var(--lsh-gold);
	color: #0d0d0d !important;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	border: 1px solid var(--lsh-gold);
	text-decoration: none !important;
}
.lsh-empty-btn:hover { background: var(--lsh-gold-2); }

/* ═══════════════════════════════════════════════════════
   BOTTOM BANNER (trust icons)
   ═══════════════════════════════════════════════════════ */
.lsh-banner {
	background: var(--lsh-bg);
	border-top: 1px solid var(--lsh-border-2);
	padding: 50px 24px;
}
.lsh-banner-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.lsh-banner-item {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 24px;
	background: var(--lsh-surface);
	border: 1px solid var(--lsh-border-2);
}
.lsh-banner-item svg { color: var(--lsh-gold); flex-shrink: 0; }
.lsh-banner-item h3 {
	font-family: var(--lsh-serif);
	font-size: 19px;
	font-weight: 500;
	color: var(--lsh-text);
	margin: 0 0 4px;
}
.lsh-banner-item p {
	color: var(--lsh-muted);
	font-size: 13px;
	margin: 0;
	line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
	.lsh-hero { padding: 70px 22px 60px; }
	.lsh-title { font-size: 44px; }
	.lsh-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
	.lsh-banner-inner { grid-template-columns: 1fr; gap: 14px; }
	.lsh-filters-inner { padding: 14px 16px; gap: 6px; }
	.lsh-filter { padding: 10px 16px; font-size: 11px; letter-spacing: 0.12em; }
}
@media (max-width: 720px) {
	.lsh-hero { padding: 50px 16px 40px; }
	.lsh-title { font-size: 32px; }
	.lsh-lead { font-size: 14.5px; }
	.lsh-trust { gap: 4px; font-size: 11px; }
	.lsh-grid-section { padding: 30px 16px 50px; }
	.lsh-grid { grid-template-columns: 1fr; gap: 16px; }
	.lsh-card-body { padding: 20px 18px 22px; }
	.lsh-card-title { font-size: 19px; min-height: 2.3em; }
	.lsh-card-now { font-size: 22px; }
	.lsh-banner { padding: 36px 16px; }
	.lsh-banner-item { padding: 18px 20px; gap: 14px; }
	.lsh-filters-inner { padding: 12px 12px; }
	.lsh-filter { padding: 9px 14px; }
}
