/**
 * Luxury flyer-inspired atmosphere — cream paper, gold accents, editorial calm.
 */

:root {
	--lwf-cream: #fffdf9;
	--lwf-cream-soft: #fcfaf5;
	--lwf-cream-card: #f5efe4;
	--lwf-cream-muted: #ebe3d6;
	--lwf-cream-line: rgba(224, 213, 200, 0.65);
	--lwf-gold: #b8956a;
	--lwf-gold-light: #d4b896;
	--lwf-gold-dark: #8f6b47;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	background-color: var(--lwf-cream);
}

body {
	overflow-x: clip;
	/* Fallback: evita micro-scroll orizzontale (Safari/Chrome) */
	overflow-x: hidden;
	font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	color: #2d2d2d;
	background-color: var(--lwf-cream);
	background-image:
		radial-gradient(ellipse 120% 70% at 0% -10%, rgba(245, 239, 228, 0.55) 0%, transparent 52%),
		radial-gradient(ellipse 90% 50% at 100% 0%, rgba(235, 227, 214, 0.35) 0%, transparent 48%),
		radial-gradient(ellipse 80% 45% at 50% 100%, rgba(229, 220, 205, 0.2) 0%, transparent 50%),
		url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	background-attachment: fixed;
}

@media (max-width: 768px) {
	body {
		background-attachment: scroll;
	}
}

/*
 * Contenitore pagina: max-width 6xl / 3xl + padding che rispetta safe-area (iPhone notch, ecc.).
 * Sostituisce mx-auto max-w-* px-4 sm:px-6 nei template.
 */
.lwf-container {
	width: 100%;
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: max(1rem, env(safe-area-inset-left, 0px));
	padding-right: max(1rem, env(safe-area-inset-right, 0px));
}
@media (min-width: 640px) {
	.lwf-container {
		padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
		padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
	}
}
.lwf-container--narrow {
	max-width: 48rem;
}

main#content {
	overflow-x: clip;
}

main,
header,
footer {
	max-width: 100%;
}

.lwf-breadcrumb ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

#site-header {
	padding-top: env(safe-area-inset-top, 0px);
	background-color: var(--lwf-cream-soft);
}

/* Barra admin WordPress: niente fascia grigia sopra l’header */
body.admin-bar #site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar #site-header {
		top: 46px;
	}
}

/* Plugin (es. Trustindex) iniettati in wp_body_open: non spingono l’header verso il basso */
body > .ti-widget,
body > [class*="trustindex"],
body > [id^="trustindex"] {
	max-width: 100%;
}

/*
 * Header + menu: stili base sempre attivi (se cdn.tailwindcss.com non carica su hosting).
 */
#site-header .lwf-container > div:first-child {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	min-height: 4rem;
}

#site-header .lwf-primary-nav {
	display: none;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.25rem 2rem;
}

@media (min-width: 768px) {
	#site-header .lwf-primary-nav {
		display: flex;
	}
}

#site-header .lwf-primary-nav ul,
#site-header #mobile-menu ul {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 768px) {
	#site-header .lwf-primary-nav ul {
		flex-direction: row;
		align-items: center;
		gap: 2rem;
	}
}

#site-header .lwf-primary-nav .menu-item > a,
#site-header #mobile-menu .menu-item > a {
	color: #2d2d2d;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

#site-header .lwf-primary-nav > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}

#site-header .lwf-primary-nav > a[href*="book"] {
	border: 1px solid rgba(184, 149, 106, 0.45);
	background: rgba(245, 239, 228, 0.95);
	color: #2d2d2d;
}

#site-header .lwf-primary-nav > a[href*="prenota"] {
	border: 1px solid rgba(143, 107, 71, 0.35);
	background: linear-gradient(180deg, #b8956a 0%, #8f6b47 100%);
	color: #fffdf9;
}

#site-header .font-serif {
	font-family: "Playfair Display", ui-serif, Georgia, serif;
}

#site-header .font-script {
	font-family: "Great Vibes", cursive;
}

#mobile-menu-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	#mobile-menu-button {
		display: none;
	}
}

#mobile-menu.hidden {
	display: none;
}

@media (min-width: 768px) {
	#mobile-menu {
		display: none !important;
	}
}

#mobile-menu .menu-item > a {
	display: flex;
	align-items: center;
	min-height: 2.75rem;
	padding: 0.375rem 0;
}

.lwf-trustindex-wrap {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
}

/* Calendario prenota: su mobile i giorni sono in colonna (no scroll orizzontale); da tablet scroll orizzontale se serve */
#slots {
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
}
@media (max-width: 767px) {
	#slots.lwf-booking-slots {
		overflow-x: visible;
	}
}

::selection {
	background: rgba(231, 199, 194, 0.45);
	color: #2d2d2d;
}

:focus-visible {
	outline: 2px solid rgba(184, 149, 106, 0.55);
	outline-offset: 3px;
}

/* Testo lungo: respiro in più per lettura da telefono */
main#content p {
	text-wrap: pretty;
}

/*
 * Link nel testo (non pulsanti CTA).
 */
main#content a:not(.lwf-footer-social__link):not([class*="rounded-full"]):not([class*="from-gold"]) {
	color: var(--lwf-gold-dark, #8f6b47);
	text-decoration-color: rgba(184, 149, 106, 0.4);
}

main#content a:not(.lwf-footer-social__link):not([class*="rounded-full"]):not([class*="from-gold"]):hover {
	color: var(--lwf-gold, #b8956a);
}

main#content a:not(.lwf-footer-social__link):not([class*="rounded-full"]):not([class*="from-gold"]):visited {
	color: var(--lwf-gold-dark, #8f6b47);
}

/* Pulsanti oro: testo crema leggibile (non ereditare colore link) */
a[class*="from-gold"][class*="to-gold"],
a.lwf-btn-primary {
	color: #fffdf9 !important;
}

a[class*="from-gold"][class*="to-gold"]:hover,
a[class*="from-gold"][class*="to-gold"]:visited,
a.lwf-btn-primary:hover,
a.lwf-btn-primary:visited {
	color: #fffdf9 !important;
}

a.text-cream,
a[class*="text-cream"] {
	color: #fffdf9 !important;
}

a[class*="bg-anthracite"][class*="text-cream"] {
	color: #fffdf9 !important;
}

footer a.lwf-footer-link,
footer .lwf-footer-links a {
	color: rgba(45, 45, 45, 0.8);
	text-decoration: none;
}

footer a.lwf-footer-link:hover,
footer .lwf-footer-links a:hover {
	color: var(--lwf-anthracite, #2d2d2d);
}

footer a.lwf-footer-link:visited,
footer .lwf-footer-links a:visited {
	color: rgba(45, 45, 45, 0.8);
}

/* Nav links: gold hover like flyer accents */
#site-header nav .menu-item > a {
	transition: color 0.2s ease, box-shadow 0.2s ease;
}
#site-header nav .menu-item > a:hover {
	color: var(--lwf-gold-dark);
	box-shadow: 0 1px 0 0 rgba(184, 149, 106, 0.65);
}

/* Reviews marquee (auto-scroll) */
.lwf-marquee {
	position: relative;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.lwf-marquee__track {
	display: flex;
	gap: 0.9rem;
	width: max-content;
	animation: lwf-marquee 42s linear infinite;
}
.lwf-marquee:hover .lwf-marquee__track,
.lwf-marquee:focus-within .lwf-marquee__track {
	animation-play-state: paused;
}
.lwf-marquee__item {
	width: min(520px, 86vw);
}
@keyframes lwf-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.lwf-marquee__track { animation: none; }
	.lwf-marquee { mask-image: none; -webkit-mask-image: none; }
}

/* Servizi — galleria Collezioni (solo immagini da admin, scorrimento lento) */
.lwf-collezioni-marquee {
	position: relative;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.lwf-collezioni-marquee__track {
	display: flex;
	gap: 1rem;
	width: max-content;
	animation: lwf-collezioni-marquee var(--lwf-collezioni-duration, 100s) linear infinite;
}
.lwf-collezioni-marquee:hover .lwf-collezioni-marquee__track,
.lwf-collezioni-marquee:focus-within .lwf-collezioni-marquee__track {
	animation-play-state: paused;
}
.lwf-collezioni-marquee__item {
	flex: 0 0 auto;
	width: min(300px, 76vw);
}
.lwf-collezioni-marquee__figure {
	margin: 0;
	border-radius: 1.25rem;
	overflow: hidden;
	border: 1px solid rgba(184, 149, 106, 0.28);
	box-shadow:
		0 14px 36px rgba(25, 22, 18, 0.07),
		inset 0 1px 0 rgba(255, 255, 255, 0.45);
	background: var(--lwf-cream-card);
}
.lwf-collezioni-marquee__figure img {
	display: block;
	width: 100%;
	height: min(360px, 52vh);
	object-fit: cover;
}
@keyframes lwf-collezioni-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
@media (prefers-reduced-motion: reduce) {
	.lwf-collezioni-marquee__track {
		animation: none;
	}
	.lwf-collezioni-marquee {
		mask-image: none;
		-webkit-mask-image: none;
	}
}

/*
 * Trustindex Google widget (classi reali: .ti-widget.ti-goog, .ti-inner, …)
 * Allineato a crema / oro del tema.
 */
.lwf-trustindex-wrap {
	color: #2d2d2d;
}

.lwf-trustindex-wrap .ti-widget.ti-goog {
	font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	background: transparent;
}

.lwf-trustindex-wrap .ti-widget-container {
	padding-top: 0.25rem;
}

/* Card singola recensione */
.lwf-trustindex-wrap .ti-widget.ti-goog .ti-inner {
	border-radius: 1.25rem;
	border: 1px solid rgba(184, 149, 106, 0.28);
	background: linear-gradient(
		165deg,
		rgba(255, 253, 249, 0.98) 0%,
		rgba(245, 239, 228, 0.92) 55%,
		rgba(235, 227, 214, 0.55) 100%
	);
	box-shadow:
		0 14px 36px rgba(25, 22, 18, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.65);
	padding: 1.15rem 1.25rem 1.25rem;
}

.lwf-trustindex-wrap .ti-widget.ti-goog .ti-review-header {
	border-bottom: 1px solid rgba(184, 149, 106, 0.15);
	padding-bottom: 0.65rem;
	margin-bottom: 0.65rem;
}

.lwf-trustindex-wrap .ti-widget.ti-goog .ti-profile-details,
.lwf-trustindex-wrap .ti-widget.ti-goog .ti-profile-details .ti-name,
.lwf-trustindex-wrap .ti-widget.ti-goog .ti-name {
	color: #8f6b47;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.68rem;
}

.lwf-trustindex-wrap .ti-widget.ti-goog .ti-stars,
.lwf-trustindex-wrap .ti-widget.ti-goog .ti-stars .ti-star.f,
.lwf-trustindex-wrap .ti-widget.ti-goog .ti-star.f {
	color: #b8956a;
}

.lwf-trustindex-wrap .ti-widget.ti-goog .ti-review-text-container.ti-review-content,
.lwf-trustindex-wrap .ti-widget.ti-goog .ti-review-content {
	color: rgba(45, 45, 45, 0.88);
	font-size: 0.9rem;
	line-height: 1.55;
}

.lwf-trustindex-wrap .ti-widget.ti-goog .ti-read-more {
	color: #8f6b47 !important;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.62rem;
	text-decoration: none;
	border-bottom: 1px solid rgba(143, 107, 71, 0.35);
	padding-bottom: 1px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.lwf-trustindex-wrap .ti-widget.ti-goog .ti-read-more:hover {
	color: #6b4e32 !important;
	border-bottom-color: rgba(107, 78, 50, 0.55);
}

/* Slider: frecce e spaziatura */
.lwf-trustindex-wrap .ti-widget.ti-goog .ti-review-item {
	filter: drop-shadow(0 2px 8px rgba(184, 149, 106, 0.08));
}

.lwf-trustindex-wrap .ti-widget.ti-goog .ti-controls .ti-next,
.lwf-trustindex-wrap .ti-widget.ti-goog .ti-controls .ti-prev,
.lwf-trustindex-wrap .ti-widget.ti-goog .ti-next,
.lwf-trustindex-wrap .ti-widget.ti-goog .ti-prev {
	color: #8f6b47;
	opacity: 0.9;
}

.lwf-trustindex-wrap .ti-widget.ti-goog .ti-controls .ti-next:hover,
.lwf-trustindex-wrap .ti-widget.ti-goog .ti-controls .ti-prev:hover,
.lwf-trustindex-wrap .ti-widget.ti-goog .ti-next:hover,
.lwf-trustindex-wrap .ti-widget.ti-goog .ti-prev:hover {
	color: #6b4e32;
	opacity: 1;
}

.lwf-trustindex-wrap iframe {
	border-radius: 1rem;
	max-width: 100%;
}

/* Gold divider — three stars, flyer-style */
.lwf-divider-gold {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	width: 100%;
	max-width: 14rem;
}
.lwf-divider-gold__line {
	flex: 1;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(184, 149, 106, 0.25) 12%,
		rgba(184, 149, 106, 0.85) 50%,
		rgba(184, 149, 106, 0.25) 88%,
		transparent
	);
}
.lwf-divider-gold__mid {
	flex-shrink: 0;
	color: var(--lwf-gold);
	font-size: 0.45rem;
	letter-spacing: 0.4em;
	line-height: 1;
	opacity: 0.95;
}

.lwf-divider-gold--light .lwf-divider-gold__line {
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 253, 249, 0.15) 10%,
		rgba(212, 184, 150, 0.75) 50%,
		rgba(255, 253, 249, 0.15) 90%,
		transparent
	);
}
.lwf-divider-gold--light .lwf-divider-gold__mid {
	color: rgba(232, 210, 180, 0.95);
}

/* Auth modal (login / registrazione) */
body.lwf-auth-modal-open {
	overflow: hidden;
}
.lwf-auth-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	padding-top: max(1rem, env(safe-area-inset-top, 0px));
	padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}
.lwf-auth-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.lwf-auth-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(45, 45, 45, 0.42);
	backdrop-filter: blur(4px);
}
.lwf-auth-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 26rem;
	max-height: min(92vh, 40rem);
	overflow-y: auto;
	border-radius: 1.5rem;
	border: 1px solid rgba(184, 149, 106, 0.35);
	background: rgba(252, 250, 245, 0.98);
	padding: 1.75rem 1.5rem 1.5rem;
	box-shadow: 0 24px 48px rgba(45, 45, 45, 0.12);
}
.lwf-auth-modal__close {
	position: absolute;
	top: 0.75rem;
	right: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border: none;
	border-radius: 9999px;
	background: transparent;
	color: rgba(45, 45, 45, 0.55);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: color 0.15s ease, background 0.15s ease;
}
.lwf-auth-modal__close:hover {
	color: var(--lwf-gold-dark, #8f6b47);
	background: rgba(235, 227, 214, 0.65);
}
.lwf-auth-tab {
	color: rgba(45, 45, 45, 0.55);
	background: transparent;
	border: none;
	cursor: pointer;
	transition: color 0.15s ease, background 0.15s ease;
}
.lwf-auth-tab.is-active {
	color: var(--lwf-anthracite, #2d2d2d);
	background: rgba(255, 253, 249, 0.95);
	box-shadow: 0 1px 4px rgba(45, 45, 45, 0.06);
}

/* Account team (hub stile Amazon) */
.lwf-account-hub {
	display: grid;
	gap: 2rem;
}
@media (min-width: 900px) {
	.lwf-account-hub {
		grid-template-columns: minmax(220px, 280px) 1fr;
		align-items: start;
	}
}
.lwf-account-card {
	min-height: 11rem;
}

/* Wedding Awards — matrimonio.com */
.lwf-wedding-awards__viewport {
	position: relative;
	width: 100%;
	max-width: 100%;
}

.lwf-wedding-awards__track {
	display: flex;
	gap: 1.25rem;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 2.75rem;
	padding: 0.25rem 2.75rem 1rem;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
}

.lwf-wedding-awards__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	height: 2.5rem;
	width: 2.5rem;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(184, 149, 106, 0.45);
	border-radius: 9999px;
	background: rgba(255, 253, 249, 0.96);
	color: var(--lwf-anthracite, #2d2d2d);
	box-shadow: 0 4px 14px rgba(143, 107, 71, 0.12);
	cursor: pointer;
	transform: translateY(-50%);
	transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.lwf-wedding-awards__nav:hover:not(:disabled) {
	border-color: var(--lwf-gold, #b8956a);
	background: #fff;
}

.lwf-wedding-awards__nav:disabled {
	cursor: not-allowed;
	opacity: 0.35;
}

.lwf-wedding-awards__nav:focus-visible {
	outline: 2px solid var(--lwf-gold, #b8956a);
	outline-offset: 2px;
}

.lwf-wedding-awards__nav--prev {
	left: 0;
}

.lwf-wedding-awards__nav--next {
	right: 0;
}

@media (min-width: 640px) {
	.lwf-wedding-awards__track {
		scroll-padding-inline: 3.25rem;
		padding-inline: 3.25rem;
	}

	.lwf-wedding-awards__nav {
		height: 2.75rem;
		width: 2.75rem;
	}
}

.lwf-wedding-awards__track::-webkit-scrollbar {
	display: none;
}

.lwf-wedding-awards__badge {
	flex: 0 0 min(11.5rem, 78vw);
	scroll-snap-align: center;
}

@media (min-width: 640px) {
	.lwf-wedding-awards__badge {
		flex-basis: min(12.5rem, 42vw);
	}
}

@media (min-width: 1024px) {
	.lwf-wedding-awards__badge {
		flex-basis: calc((100% - 2.5rem) / 3);
		max-width: 14rem;
	}
}

.lwf-wedding-awards__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	aspect-ratio: 1;
	padding: 1.35rem 1rem 1.15rem;
	border: 1px solid rgba(184, 149, 106, 0.55);
	border-radius: 0.35rem;
	background: rgba(255, 253, 249, 0.92);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lwf-wedding-awards__link:hover {
	border-color: var(--lwf-gold, #b8956a);
	box-shadow: 0 8px 24px rgba(143, 107, 71, 0.12);
	transform: translateY(-2px);
}

.lwf-wedding-awards__label {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.1rem;
	font-family: Montserrat, ui-sans-serif, system-ui, sans-serif;
	font-size: 0.62rem;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--lwf-anthracite, #2d2d2d);
}

.lwf-wedding-awards__year {
	margin: auto 0;
	font-family: "Playfair Display", ui-serif, Georgia, serif;
	font-size: clamp(2.75rem, 8vw, 3.75rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.02em;
	color: var(--lwf-gold, #b8956a);
}

.lwf-wedding-awards__brand {
	font-family: "Playfair Display", ui-serif, Georgia, serif;
	font-size: 0.95rem;
	font-style: italic;
	font-weight: 500;
	color: var(--lwf-anthracite, #2d2d2d);
}

.lwf-wedding-awards__dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.45rem;
	margin-top: 1.25rem;
}

.lwf-wedding-awards__dot {
	width: 0.45rem;
	height: 0.45rem;
	padding: 0;
	border: none;
	border-radius: 9999px;
	background: rgba(45, 45, 45, 0.2);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.lwf-wedding-awards__dot.is-active {
	background: var(--lwf-anthracite, #2d2d2d);
	transform: scale(1.15);
}

.lwf-wedding-awards__dot:focus-visible {
	outline: 2px solid var(--lwf-gold, #b8956a);
	outline-offset: 3px;
}

/* Footer — Social (colori brand) */
.lwf-footer-social__link {
	background: rgba(255, 253, 249, 0.95);
}

.lwf-footer-social__link--instagram {
	color: #e4405f;
	border-color: rgba(228, 64, 95, 0.45);
}
.lwf-footer-social__link--instagram:hover {
	border-color: #e4405f;
	background: rgba(228, 64, 95, 0.1);
}
.lwf-footer-social__link--instagram:focus-visible {
	outline-color: #e4405f;
}

.lwf-footer-social__link--facebook {
	color: #1877f2;
	border-color: rgba(24, 119, 242, 0.45);
}
.lwf-footer-social__link--facebook:hover {
	border-color: #1877f2;
	background: rgba(24, 119, 242, 0.1);
}
.lwf-footer-social__link--facebook:focus-visible {
	outline-color: #1877f2;
}

.lwf-footer-social__link--whatsapp {
	color: #25d366;
	border-color: rgba(37, 211, 102, 0.45);
}
.lwf-footer-social__link--whatsapp:hover {
	border-color: #25d366;
	background: rgba(37, 211, 102, 0.1);
}
.lwf-footer-social__link--whatsapp:focus-visible {
	outline-color: #25d366;
}

/* Footer — Pagamenti (colori brand) */
.lwf-footer-pay__badge {
	background: rgba(255, 253, 249, 0.95);
}

.lwf-footer-pay__badge--visa {
	color: #1a1f71;
	border-color: rgba(26, 31, 113, 0.35);
}

.lwf-footer-pay__badge--mastercard {
	border-color: rgba(45, 45, 45, 0.12);
}

.lwf-footer-pay__badge--amex {
	color: #006fcf;
	border-color: rgba(0, 111, 207, 0.35);
}

.lwf-footer-pay__badge--maestro {
	border-color: rgba(0, 153, 223, 0.3);
}

.lwf-footer-pay__badge--maestro span {
	background: linear-gradient(90deg, #cc0000 0%, #cc0000 40%, #0099df 40%, #0099df 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

