/**
 * PAGES CSS
 * Stili specifici per ogni pagina
 */

/* ========== HOMEPAGE ========== */

/* ========== ABOUT HERITAGE SECTION ========== */
.about-heritage {
	text-align: center;
}

.heritage-photos-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-2xl);
}

.heritage-photo {
	position: relative;
	perspective: 1000px;
}

.heritage-photo img {
	width: 100%;
	height: auto;
	min-height: 350px;
	object-fit: cover;
	border-radius: var(--radius-md);
	border: 4px solid var(--gold);
	box-shadow:
		0 15px 50px rgba(0, 0, 0, 0.6),
		0 0 0 1px rgba(201, 165, 92, 0.3),
		inset 0 0 20px rgba(0, 0, 0, 0.1);
	filter: sepia(25%) contrast(1.15) brightness(0.95);
	transition: all var(--transition-slow);
}

/* Effetto polaroid vintage */
.heritage-photo::before {
	content: '';
	position: absolute;
	inset: -4px;
	background: linear-gradient(
		135deg,
		rgba(201, 165, 92, 0.15) 0%,
		transparent 40%,
		rgba(0, 0, 0, 0.3) 100%
	);
	border-radius: var(--radius-md);
	pointer-events: none;
	z-index: 1;
}

/* Texture carta vintage */
.heritage-photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.03) 0px,
		transparent 1px,
		transparent 2px,
		rgba(0, 0, 0, 0.03) 3px
	);
	border-radius: var(--radius-md);
	pointer-events: none;
	z-index: 2;
	opacity: 0.3;
}

/* Rotazioni alternate */
.heritage-photo:nth-child(1) {
	transform: rotate(-2deg);
}

.heritage-photo:nth-child(2) {
	transform: rotate(1deg);
}

.heritage-photo:nth-child(3) {
	transform: rotate(-1deg);
}

.heritage-photo:nth-child(4) {
	transform: rotate(2deg);
}

.heritage-photo:hover {
	z-index: 10;
	transform: rotate(0deg) translateY(-10px) scale(1.05) !important;
}

.heritage-photo:hover img {
	filter: sepia(10%) contrast(1.1) brightness(1);
	box-shadow:
		0 25px 70px rgba(0, 0, 0, 0.7),
		0 0 60px rgba(201, 165, 92, 0.4);
}

.photo-caption {
	display: block;
	margin-top: var(--spacing-sm);
	font-size: var(--text-sm);
	color: var(--gold);
	font-style: italic;
	font-family: var(--font-heading);
	text-align: center;
	opacity: 0.9;
	letter-spacing: 0.05em;
}

/* Mobile - una sotto l'altra */
@media (max-width: 768px) {
	.heritage-photos-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-xl);
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

	.heritage-photo img {
		min-height: 400px;
	}

	.heritage-photo:nth-child(1),
	.heritage-photo:nth-child(2),
	.heritage-photo:nth-child(3),
	.heritage-photo:nth-child(4) {
		transform: none;
	}
}

.heritage-content {
	max-width: 700px;
	margin: 0 auto;
}

.heritage-content .badge {
	margin-bottom: var(--spacing-md);
}

.heritage-content h2 {
	margin-bottom: var(--spacing-md);
}

.heritage-content p {
	color: var(--text-secondary);
	margin-bottom: var(--spacing-lg);
	line-height: var(--leading-relaxed);
}

/* Responsive */
@media (max-width: 640px) {
	.heritage-photos {
		flex-direction: column;
		align-items: center;
		gap: var(--spacing-xl);
	}

	.heritage-photo {
		flex: none;
		width: 85%;
		max-width: 320px;
	}

	.heritage-photo img {
		max-height: 400px;
	}

	.heritage-photo--left,
	.heritage-photo--right {
		transform: none;
	}

	.heritage-photo--left {
		animation: float-left 6s ease-in-out infinite;
	}

	.heritage-photo--right {
		animation: float-right 6s ease-in-out infinite;
		animation-delay: -3s;
	}

	@keyframes float-left {
		0%,
		100% {
			transform: translateX(-5px) rotate(-2deg);
		}
		50% {
			transform: translateX(5px) rotate(2deg);
		}
	}

	@keyframes float-right {
		0%,
		100% {
			transform: translateX(5px) rotate(2deg);
		}
		50% {
			transform: translateX(-5px) rotate(-2deg);
		}
	}
}

.heritage-content {
	max-width: 700px;
	margin: 0 auto;
}

.heritage-content .badge {
	margin-bottom: var(--spacing-md);
}

.heritage-content h2 {
	margin-bottom: var(--spacing-md);
}

.heritage-content p {
	color: var(--text-secondary);
	margin-bottom: var(--spacing-lg);
	line-height: var(--leading-relaxed);
}

/* Services Preview */
.services-preview {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--spacing-md);
}

@media (min-width: 768px) {
	.services-preview {
		grid-template-columns: repeat(3, 1fr);
	}
}

.service-preview-card {
	position: relative;
	text-align: center;
	padding: var(--spacing-xl) var(--spacing-lg);
	background: linear-gradient(145deg, var(--panel) 0%, var(--bg-darker) 100%);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-md);
	transition: all var(--transition-normal);
	overflow: hidden;
}

.service-preview-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	transition: width var(--transition-normal);
}

.service-preview-card:hover {
	border-color: rgba(201, 165, 92, 0.3);
	transform: translateY(-3px);
	box-shadow:
		0 15px 30px rgba(0, 0, 0, 0.2),
		0 0 20px rgba(201, 165, 92, 0.08);
}

.service-preview-card:hover::before {
	width: 80px;
}

.service-preview-card h4 {
	margin-bottom: var(--spacing-sm);
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: var(--text-sm);
	transition: color var(--transition-normal);
}

.service-preview-card:hover h4 {
	color: var(--gold);
}

.service-preview-card .price {
	color: var(--gold);
	font-weight: 600;
	font-size: var(--h4-size);
}

/* Locations Preview */
.locations-preview {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-lg);
}

@media (min-width: 768px) {
	.locations-preview {
		grid-template-columns: repeat(2, 1fr);
	}
}

.location-preview-card {
	background-color: var(--panel);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.location-preview-image {
	aspect-ratio: 16/9;
	background-color: var(--bg-lighter);
}

.location-preview-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.location-preview-content {
	padding: var(--spacing-lg);
	text-align: center;
}

.location-preview-content h3 {
	margin-bottom: var(--spacing-xs);
}

.location-preview-content .address {
	color: var(--muted);
	font-size: var(--text-sm);
	margin-bottom: var(--spacing-md);
}

.location-preview-content .location-hours {
	margin-bottom: var(--spacing-md);
}

.location-hours {
	margin-bottom: var(--spacing-md);
}

.location-hours dt,
.location-hours dd {
	display: block;
	float: left;
	margin: 0;
	width: 48%;
}

.location-hours dd {
	text-align: left;
}

.location-hours dt {
	font-weight: bolder;
	color: var(--gold);
	text-align: right;
	margin-right: 1%;
}

.location-hours dt::after {
	content: ' ';
}

.location-hours dd::after {
	content: '';
	display: block;
	margin-bottom: var(--spacing-xs);
}

/* Final CTA */
.final-cta {
	text-align: center;
	padding: var(--spacing-3xl) var(--container-padding);
	background: linear-gradient(to bottom, var(--bg), var(--bg-darker));
}

.final-cta h2 {
	margin-bottom: var(--spacing-sm);
}

.final-cta p {
	color: var(--muted);
	margin-bottom: var(--spacing-lg);
}

/* ========== LOCATIONS PAGE ========== */
.page-header {
	text-align: center;
	padding: var(--spacing-3xl) 0 var(--spacing-2xl);
	background-color: var(--bg-darker);
}

.page-header h1 {
	margin-bottom: var(--spacing-sm);
}

.page-header p {
	color: var(--muted);
	max-width: 600px;
	margin: 0 auto;
}

.location-detail {
	background-color: var(--panel);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: var(--spacing-2xl);
}

.location-detail:last-child {
	margin-bottom: 0;
}

.location-detail-grid {
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.location-detail-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.location-map {
	aspect-ratio: 16/9;
	background-color: var(--bg-lighter);
}

@media (min-width: 768px) {
	.location-map {
		aspect-ratio: auto;
		min-height: 400px;
	}
}

.location-map iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.location-info {
	padding: var(--spacing-xl);
}

.location-info h2 {
	margin-bottom: var(--spacing-xs);
}

.location-info .address {
	color: var(--muted);
	margin-bottom: var(--spacing-lg);
}

.location-info .hours-title {
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: var(--tracking-wide);
	color: var(--gold);
	margin-bottom: var(--spacing-sm);
}

.location-info .location-hours {
	margin-bottom: var(--spacing-lg);
}

/* ========== SERVICES PAGE ========== */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-lg);
}

@media (min-width: 640px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.service-card {
	position: relative;
	background: linear-gradient(145deg, var(--panel) 0%, var(--bg-darker) 100%);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all var(--transition-normal);
}

.service-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		145deg,
		transparent 0%,
		rgba(201, 165, 92, 0.03) 100%
	);
	opacity: 0;
	transition: opacity var(--transition-normal);
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(201, 165, 92, 0.3);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(201, 165, 92, 0.1);
}

.service-card:hover::before {
	opacity: 1;
}

/* Header con titolo centrale */
.service-card-header {
	position: relative;
	padding: var(--spacing-xl) var(--spacing-lg);
	text-align: center;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: var(--spacing-sm);
}

/* Prezzo in alto */
.service-price-tag {
	font-size: var(--h3-size);
	font-weight: 700;
	color: var(--gold);
	text-shadow: 0 0 20px rgba(201, 165, 92, 0.3);
}

/* Titolo servizio - effetto wow */
.service-title {
	position: relative;
	font-size: var(--h4-size);
	font-weight: 400;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--text);
	margin: 0;
	padding: var(--spacing-sm) 0;
	transition: all var(--transition-normal);
}

.service-title::before,
.service-title::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	transition: width var(--transition-normal);
}

.service-title::before {
	top: 0;
}

.service-title::after {
	bottom: 0;
}

.service-card:hover .service-title {
	letter-spacing: 0.2em;
	color: var(--gold);
	text-shadow: 0 0 30px rgba(201, 165, 92, 0.5);
}

.service-card:hover .service-title::before,
.service-card:hover .service-title::after {
	width: 100px;
}

/* Durata sotto il titolo */
.service-duration-tag {
	font-size: var(--text-sm);
	color: var(--muted);
	letter-spacing: 0.1em;
}

/* Body con descrizione */
.service-card-body {
	padding: 0 var(--spacing-lg) var(--spacing-lg);
	text-align: center;
	border-top: 1px solid var(--panel-border);
	margin: 0 var(--spacing-md);
	padding-top: var(--spacing-md);
}

.service-card-body p {
	color: var(--muted);
	font-size: var(--text-sm);
	line-height: 1.6;
	margin: 0;
}

/* Shine effect on hover */
.service-card-header::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.03),
		transparent
	);
	transform: skewX(-20deg);
	transition: none;
}

.service-card:hover .service-card-header::after {
	animation: shine 0.8s ease-out;
}

@keyframes shine {
	0% {
		left: -100%;
	}
	100% {
		left: 200%;
	}
}

/* ========== BARBERS PAGE ========== */
.barbers-location-section {
	margin-bottom: var(--spacing-3xl);
}

.barbers-location-section:last-child {
	margin-bottom: 0;
}

.barbers-location-header {
	text-align: center;
	margin-bottom: var(--spacing-xl);
	padding-bottom: var(--spacing-md);
	border-bottom: 1px solid var(--panel-border);
}

.barbers-location-header h2 {
	margin-bottom: var(--spacing-xs);
}

.barbers-location-header p {
	color: var(--muted);
	font-size: var(--text-sm);
}

.barbers-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-lg);
}

@media (min-width: 640px) {
	.barbers-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.barbers-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.barber-card {
	background-color: var(--panel);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	text-align: center;
}

.barber-image {
	aspect-ratio: 3/4;
	background-color: var(--bg-lighter);
}

.barber-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.barber-info {
	padding: var(--spacing-lg);
}

.barber-info h3 {
	margin-bottom: var(--spacing-xs);
}

.barber-role {
	color: var(--gold);
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: var(--tracking-wide);
	margin-bottom: var(--spacing-sm);
}

.barber-bio {
	color: var(--muted);
	font-size: var(--text-sm);
}

.barber-locations-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-xs);
	margin-top: var(--spacing-sm);
	padding: var(--spacing-xs) var(--spacing-sm);
	background-color: rgba(201, 165, 92, 0.1);
	border-radius: var(--radius-full);
	font-size: var(--text-xs);
	color: var(--gold);
}

/* ========== BOOKING PAGE ========== */
.booking-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-lg);
}

@media (min-width: 768px) {
	.booking-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.booking-card {
	background-color: var(--panel);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-lg);
	padding: var(--spacing-xl);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.booking-card h2 {
	margin-bottom: var(--spacing-xs);
}

.booking-card .address {
	color: var(--muted);
	margin-bottom: var(--spacing-lg);
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-lg);
	margin-bottom: var(--spacing-2xl);
}

@media (min-width: 640px) {
	.contact-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.contact-item {
	text-align: center;
	padding: var(--spacing-lg);
	background-color: var(--panel);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-md);
}

.contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--spacing-md);
	transition: transform var(--transition-normal);
}

.contact-item:hover .contact-icon {
	transform: translateY(-4px);
}

.contact-icon svg {
	filter: drop-shadow(0 0 10px rgba(201, 165, 92, 0.3));
}

.contact-item h4 {
	margin-bottom: var(--spacing-xs);
	color: var(--gold);
}

.contact-item a {
	color: var(--text);
}

.contact-item a:hover {
	color: var(--gold);
}

/* ========== LEGAL PAGES ========== */
.legal-content {
	max-width: var(--container-narrow);
	margin: 0 auto;
}

.legal-content h2 {
	font-size: var(--h3-size);
	margin-top: var(--spacing-xl);
	margin-bottom: var(--spacing-md);
	padding-top: var(--spacing-lg);
	border-top: 1px solid var(--panel-border);
}

.legal-content h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.legal-content p {
	color: var(--text-secondary);
	margin-bottom: var(--spacing-md);
}

.legal-content ul {
	margin-bottom: var(--spacing-md);
	padding-left: var(--spacing-lg);
}

.legal-content li {
	color: var(--text-secondary);
	margin-bottom: var(--spacing-xs);
	position: relative;
}

.legal-content li::before {
	content: '•';
	color: var(--gold);
	position: absolute;
	left: calc(var(--spacing-md) * -1);
}

/* ========== HERO SLIDESHOW ========== */
/*.hero-slideshow {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.hero-slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(26, 26, 26, 0.4) 0%,
		rgba(26, 26, 26, 0.7) 50%,
		rgba(26, 26, 26, 1) 100%
	);
}

.hero-slide.active {
	opacity: 1;
}*/

/* ========== HERO VIDEO ========== */
.hero-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.hero-video video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

/* Overlay scuro per leggibilità testo */
.hero-video-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(13, 31, 18, 0.5) 0%,
		rgba(13, 31, 18, 0.7) 50%,
		rgba(13, 31, 18, 0.9) 100%
	);
	z-index: 1;
}

/* Mobile - video più leggero o immagine fallback */
@media (max-width: 768px) {
	.hero-video video {
		/* Su mobile potresti voler nascondere il video e usare solo l'immagine */
		/* display: none; */
	}
}

/* Barber placeholder (no image) */
.barber-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--panel) 0%, var(--bg-lighter) 100%);
	font-family: var(--font-heading);
	font-size: 4rem;
	color: var(--gold);
	opacity: 0.5;
}

/* Card più compatta senza bio */
.barber-info {
	padding: var(--spacing-md);
	text-align: center;
}

.barber-info h3 {
	margin-bottom: var(--spacing-xs);
}

/* ========== ENHANCED HERO ========== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse at 30% 20%,
			rgba(30, 86, 49, 0.3) 0%,
			transparent 50%
		),
		radial-gradient(
			ellipse at 70% 80%,
			rgba(201, 165, 92, 0.1) 0%,
			transparent 50%
		);
	z-index: 1;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-badge {
	display: inline-block;
	padding: var(--spacing-sm) var(--spacing-lg);
	background: rgba(201, 165, 92, 0.15);
	border: 1px solid var(--gold);
	border-radius: var(--radius-full);
	color: var(--gold);
	font-size: var(--text-sm);
	letter-spacing: var(--tracking-wide);
	margin-bottom: var(--spacing-lg);
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

/* ========== ABOUT HERITAGE - ENHANCED ========== */
.about-heritage {
	text-align: center;
}

.heritage-content {
	max-width: 700px;
	margin: 0 auto;
}

.heritage-content h2 {
	margin-bottom: var(--spacing-md);
}

.heritage-content p {
	color: var(--text-secondary);
	margin-bottom: var(--spacing-lg);
	line-height: var(--leading-relaxed);
}

/* ========== OWNER SECTION ========== */
.owner-section {
	background: linear-gradient(135deg, var(--green-darker) 0%, var(--bg) 100%);
}

/* ========== SALON PREVIEW ========== */
.salon-preview-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 250px;
	gap: var(--spacing-sm);
}

/* Layout desktop - asimmetrico ma bilanciato */
.salon-preview-item:nth-child(1) {
	/* Interior wide - occupa 2 colonne */
	grid-column: span 2;
	grid-row: span 1;
}

.salon-preview-item:nth-child(2) {
	/* Service - normale */
	grid-column: span 1;
	grid-row: span 1;
}

.salon-preview-item:nth-child(3) {
	/* Details - alto a destra */
	grid-column: span 1;
	grid-row: span 2;
}

.salon-preview-item:nth-child(4) {
	/* Work - seconda riga, 2 colonne */
	grid-column: span 2;
	grid-row: span 1;
}

.salon-preview-item:nth-child(5) {
	/* Chair - piccola */
	grid-column: span 1;
	grid-row: span 1;
}

.salon-preview-item:nth-child(6) {
	/* Team - grande in basso, 4 colonne, PIÙ ALTA */
	grid-column: span 4;
	grid-row: span 1;
	min-height: 300px;
}

.salon-preview-item {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--green-dark);
	border: 1px solid var(--panel-border);
	transition: all var(--transition-normal);
}

.salon-preview-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-gold);
	border-color: var(--gold);
}

.salon-preview-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

/* Foto del team - object-fit contain per vedere tutto */
.salon-preview-item:nth-child(6) img {
	object-fit: contain;
	background: var(--green-darkest);
}

.salon-preview-item:hover img {
	transform: scale(1.05);
}

/* Non scalare la foto del team on hover perché è contain */
.salon-preview-item:nth-child(6):hover img {
	transform: none;
}

/* Overlay scuro on hover */
.salon-preview-item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(13, 31, 18, 0.6) 0%,
		transparent 50%
	);
	opacity: 0;
	transition: opacity var(--transition-normal);
}

.salon-preview-item:hover::after {
	opacity: 1;
}

/* Mobile - griglia 2 colonne semplice */
@media (max-width: 768px) {
	.salon-preview-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 180px;
		gap: var(--spacing-xs);
	}

	.salon-preview-item:nth-child(1) {
		grid-column: span 2;
		grid-row: span 1;
	}

	.salon-preview-item:nth-child(2),
	.salon-preview-item:nth-child(3),
	.salon-preview-item:nth-child(4),
	.salon-preview-item:nth-child(5) {
		grid-column: span 1;
		grid-row: span 1;
	}

	.salon-preview-item:nth-child(6) {
		grid-column: span 2;
		grid-row: span 1;
		min-height: 200px;
	}
}

/* ========== LOCATION CARDS ENHANCED ========== */
.location-preview-card {
	position: relative;
	overflow: hidden;
}

.location-preview-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--gold),
		var(--green-light),
		var(--gold)
	);
	transform: scaleX(0);
	transition: transform var(--transition-normal);
}

.location-preview-card:hover::before {
	transform: scaleX(1);
}

/* Location Preview - testo centrato */
.location-preview-content {
	padding: var(--spacing-lg);
	text-align: center;
}

.location-preview-content .location-hours {
	display: inline-block;
	text-align: left;
	margin: 0 auto var(--spacing-md);
}

/* ========== EXPERIENCE ITEMS ENHANCED ========== */
.experience-item {
	position: relative;
	padding: var(--spacing-lg);
	background: linear-gradient(135deg, var(--panel) 0%, transparent 100%);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-md);
	transition: all var(--transition-normal);
}

.experience-item:hover {
	border-color: var(--gold);
	transform: translateY(-5px);
	box-shadow: var(--shadow-gold);
}

.experience-icon {
	font-size: 2.5rem;
	margin-bottom: var(--spacing-md);
	display: block;
}

/* ========== REVIEW CARDS ENHANCED ========== */
.review-card {
	position: relative;
	background: linear-gradient(145deg, var(--panel) 0%, var(--bg-darker) 100%);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-lg);
	padding: var(--spacing-xl);
	text-align: center;
}

.review-card::before {
	content: '"';
	position: absolute;
	top: var(--spacing-md);
	left: var(--spacing-lg);
	font-size: 4rem;
	font-family: var(--font-heading);
	color: var(--gold);
	opacity: 0.2;
	line-height: 1;
}

.review-stars {
	color: var(--gold);
	font-size: var(--text-lg);
	letter-spacing: 0.2em;
	margin-bottom: var(--spacing-md);
}

/* ========== FINAL CTA ENHANCED ========== */
.final-cta {
	position: relative;
	text-align: center;
	padding: var(--spacing-3xl) var(--container-padding);
	background: linear-gradient(
		135deg,
		var(--green-dark) 0%,
		var(--bg) 50%,
		var(--green-darker) 100%
	);
	overflow: hidden;
}

.final-cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(201, 165, 92, 0.1) 0%,
		transparent 70%
	);
	pointer-events: none;
}

/* ========== MOBILE WOW EFFECTS ========== */
@media (max-width: 768px) {
	.hero {
		min-height: 100svh;
	}

	.hero-content {
		padding: var(--spacing-xl);
	}

	.section-header h2 {
		font-size: var(--h2-size);
	}

	/* Stagger animations on scroll */
	.services-preview .service-preview-card,
	.experience-list .experience-item {
		opacity: 0;
		transform: translateY(20px);
		animation: fade-up 0.5s ease-out forwards;
	}

	.services-preview .service-preview-card:nth-child(1) {
		animation-delay: 0.1s;
	}
	.services-preview .service-preview-card:nth-child(2) {
		animation-delay: 0.2s;
	}
	.services-preview .service-preview-card:nth-child(3) {
		animation-delay: 0.3s;
	}
	.services-preview .service-preview-card:nth-child(4) {
		animation-delay: 0.4s;
	}
	.services-preview .service-preview-card:nth-child(5) {
		animation-delay: 0.5s;
	}
	.services-preview .service-preview-card:nth-child(6) {
		animation-delay: 0.6s;
	}

	@keyframes fade-up {
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
}

/* ========== SHOP PAGE ========== */

/* Hero Image with overlay */
.shop-hero-image {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	border-radius: var(--radius-lg);
	margin-bottom: var(--spacing-2xl);
}

.shop-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shop-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(30, 86, 49, 0.7) 0%,
		rgba(30, 86, 49, 0.9) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
}

.shop-status {
	text-align: center;
	color: var(--text-on-dark);
	max-width: 500px;
	padding: var(--spacing-lg);
}

.shop-status .badge {
	margin-bottom: var(--spacing-md);
	font-size: var(--text-lg);
	padding: var(--spacing-sm) var(--spacing-xl);
}

.shop-status p {
	font-size: var(--text-xl);
	line-height: var(--leading-relaxed);
}

/* Products Grid */
.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-xl);
	max-width: 1200px;
	margin: 0 auto;
}

.product-card {
	position: relative;
	transition: transform var(--transition-normal);
}

.product-card-centered {
	grid-column: 2;
}

.product-image-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--panel-bg);
	border: 2px solid var(--panel-border);
	cursor: pointer;
	transition: border-color var(--transition-normal);
}

.product-image-wrapper:hover {
	border-color: var(--gold);
}

.product-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity var(--transition-normal);
}

.product-img-hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.product-image-wrapper:hover .product-img-hover {
	opacity: 1;
}

.product-details-btn {
	position: absolute;
	bottom: var(--spacing-lg);
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: var(--gold);
	color: var(--text-on-dark);
	border: none;
	padding: var(--spacing-sm) var(--spacing-xl);
	border-radius: var(--radius-full);
	font-weight: 600;
	font-size: var(--text-base);
	cursor: pointer;
	opacity: 0;
	transition: all var(--transition-normal);
	box-shadow: 0 4px 20px rgba(201, 165, 92, 0.4);
	z-index: 2;
}

.product-image-wrapper:hover .product-details-btn {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.product-details-btn:hover {
	background: var(--gold-light);
	box-shadow: 0 6px 30px rgba(201, 165, 92, 0.6);
	transform: translateX(-50%) translateY(-2px);
}

.product-title {
	margin-top: var(--spacing-md);
	font-size: var(--text-xl);
	color: var(--text-primary);
	text-align: center;
	font-family: var(--font-heading);
}

/* Product Modal */
.product-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: var(--spacing-lg);
}

.product-modal.active {
	display: flex;
}

.product-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(5px);
}

.product-modal-content {
	position: relative;
	background: var(--bg-primary);
	border-radius: var(--radius-xl);
	max-width: 1000px;
	width: 100%;
	max-height: 90vh;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
	from {
		opacity: 0;
		transform: translateY(40px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.product-modal-close {
	position: absolute;
	top: var(--spacing-lg);
	right: var(--spacing-lg);
	background: rgba(30, 86, 49, 0.9);
	color: var(--text-on-dark);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 28px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all var(--transition-normal);
}

.product-modal-close:hover {
	background: var(--gold);
	transform: rotate(90deg);
}

.product-modal-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xl);
	padding: var(--spacing-2xl);
	overflow-y: auto;
	max-height: 90vh;
}

.product-modal-image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-modal-image img {
	width: 100%;
	height: auto;
	max-height: 600px;
	object-fit: contain;
	border-radius: var(--radius-lg);
	border: 3px solid var(--gold);
}

.product-modal-info h2 {
	font-size: var(--text-3xl);
	color: var(--text-primary);
	margin-bottom: var(--spacing-lg);
	font-family: var(--font-heading);
}

.product-modal-info p {
	color: var(--text-secondary);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--spacing-md);
}

.product-features {
	margin: var(--spacing-lg) 0;
	padding: var(--spacing-lg);
	background: var(--panel-bg);
	border-radius: var(--radius-md);
	border-left: 4px solid var(--gold);
}

.product-features h3 {
	font-size: var(--text-lg);
	color: var(--gold);
	margin-bottom: var(--spacing-sm);
	font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-lg);
	}

	.product-card-centered {
		grid-column: span 2;
		max-width: 400px;
		margin: 0 auto;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.shop-hero-image {
		height: 400px;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
		padding: 0 var(--spacing-md);
	}

	.product-card-centered {
		grid-column: 1;
		max-width: 100%;
	}

	.product-modal-body {
		grid-template-columns: 1fr;
		padding: var(--spacing-lg);
	}

	.product-modal-image {
		order: -1;
	}

	.product-modal-close {
		top: var(--spacing-md);
		right: var(--spacing-md);
	}
}
