/*
Theme Name: Psy
Theme URI: https://example.com
Author: Andrea Maccioni
Description: Tema classico WordPress per Michela Rossi — PHP + CSS + ACF. One-page vetrina psicologa.
Version: 2.0.73
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: psy
*/

/* IT: Font caricati via wp_enqueue in functions.php — Outfit (display) + Inter (body). */
:root {
	--psy-font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
	--psy-font-display: "Outfit", "Inter", ui-sans-serif, system-ui, sans-serif;
	--psy-header-height: 5.25rem;
	--psy-scroll-offset: var(--psy-header-height);
	/* IT: Altezza fascia copyright/privacy — FAB WhatsApp resta sopra quella linea. */
	--psy-footer-bar-clearance: calc(3.75rem + env(safe-area-inset-bottom, 0px));
}

body.admin-bar {
	--psy-scroll-offset: calc(var(--psy-header-height) + var(--wp-admin--admin-bar--height, 46px));
}

@media screen and (min-width: 783px) {
	body.admin-bar {
		--psy-scroll-offset: calc(var(--psy-header-height) + var(--wp-admin--admin-bar--height, 32px));
	}
}

/* IT: Reset minimo per allineare il canvas FSE al layout originale (min-h-screen bg-white). */
html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--psy-scroll-offset);
}

.psy-section-head[id],
.psy-chi-grid[id],
.psy-hero-cover[id] {
	scroll-margin-top: var(--psy-scroll-offset);
}

body {
	margin: 0;
	background-color: #ffffff;
	color: #0f172a;
	font-family: var(--psy-font-body);
	-webkit-font-smoothing: antialiased;
}

::selection {
	background-color: rgba(168, 85, 126, 0.2);
}

/* IT: Contenitore max-w-7xl (1280px) + px-6 — usato su header/footer/sezioni. */
.psy-shell,
.wp-block-group.psy-shell.is-layout-constrained,
.psy-shell.wp-block-group {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	box-sizing: border-box;
}

/* IT: Header fisso — in cima si fonde col mesh hero; dopo scroll diventa solido. */
.psy-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background-color: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border-bottom: 1px solid transparent;
	box-shadow: none;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	box-sizing: border-box;
	transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

/* IT: Con admin bar WP: navbar sotto la barra nera (anche mobile, 46px). */
body.admin-bar .psy-header {
	top: var(--wp-admin--admin-bar--height, 46px);
}

@media screen and (min-width: 783px) {
	body.admin-bar .psy-header {
		top: var(--wp-admin--admin-bar--height, 32px);
	}
}

.psy-header.is-scrolled,
.psy-header.is-nav-open {
	background-color: #ffffff;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border-bottom-color: rgb(15 23 42 / 0.1);
	box-shadow: none;
}

.psy-header.is-scrolled {
	background-color: rgb(255 255 255 / 0.96);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 1px 0 rgb(255 255 255 / 0.9) inset;
}

.psy-header .psy-shell {
	padding-left: 0;
	padding-right: 0;
}

.psy-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 5.25rem;
	gap: 1.25rem;
	flex-wrap: nowrap;
}

/* IT: Brand — firma (nome + ruolo). */
.psy-site-title,
.psy-site-title.wp-block-site-title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 0.15rem;
	font-family: var(--psy-font-display);
	color: #0f172a;
	text-decoration: none;
	white-space: nowrap;
	max-width: 100%;
	transition: color 0.15s ease;
}

.psy-site-title-name {
	display: block;
	font-family: var(--psy-font-display);
	font-size: 1.25rem;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.03em;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.psy-site-title-role {
	display: block;
	font-family: var(--psy-font-body);
	font-size: 0.6875rem;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #a8557e;
}

.psy-site-title:hover .psy-site-title-name,
.psy-site-title.wp-block-site-title:hover .psy-site-title-name {
	color: #a8557e;
}

@media (min-width: 1024px) {
	.psy-site-title-name {
		font-size: 1.375rem;
	}
}

.psy-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex: 1 1 auto;
	min-width: 0;
	max-width: calc(100% - 3.5rem);
}

.psy-brand .custom-logo-link,
.psy-brand .custom-logo {
	display: block;
	height: 48px;
	width: auto;
}

.psy-brand .custom-logo-link {
	line-height: 0;
}

/* IT: Nav — wp_nav_menu (.psy-menu). */
.psy-header-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	min-width: 0;
}

.psy-header-nav .psy-menu,
.psy-header-nav.psy-menu-fallback-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	flex-wrap: nowrap;
	gap: 0.85rem;
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.psy-header-nav .psy-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.psy-header-nav .psy-menu a,
.psy-header-nav a {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	white-space: nowrap;
	font-family: var(--psy-font-body);
	font-size: 0.9375rem;
	line-height: 1.35;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: #0f172a !important;
	text-decoration: none;
	padding: 0.35rem 0.15rem;
	transition: color 0.15s ease;
}

.psy-header-nav .psy-menu a:hover,
.psy-header-nav a:hover {
	color: #a8557e !important;
	box-shadow: none;
}

.psy-header-nav .psy-menu li.psy-nav-cta > a,
.psy-header-nav a.psy-nav-cta,
.psy-header-nav .psy-menu a.psy-nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background-color: #a8557e;
	color: #ffffff !important;
	padding: 0.65rem 1.2rem;
	margin-left: 0.5rem;
	border-radius: 0.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	box-shadow: none;
	transition: background-color 0.15s ease;
}

.psy-header-nav .psy-menu li.psy-nav-cta > a:hover,
.psy-header-nav a.psy-nav-cta:hover,
.psy-header-nav .psy-menu a.psy-nav-cta:hover {
	background-color: #934870;
	color: #ffffff !important;
	box-shadow: none;
	transform: none;
}

.psy-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
}

.psy-nav-toggle span {
	display: block;
	width: 1.35rem;
	height: 1.5px;
	background-color: #0f172a;
	border-radius: 1px;
	transform-origin: center;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.psy-nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}

.psy-nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.psy-nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

/* IT: Menu a tendina sotto lg (1024px) — pannello bianco a filo header (niente mesh rosa in mezzo). */
@media (max-width: 1023px) {
	.psy-nav-toggle {
		display: inline-flex;
	}

	.psy-header {
		min-height: var(--psy-header-height);
	}

	.psy-header-nav {
		display: none;
		position: fixed;
		top: var(--psy-header-height);
		left: 0;
		right: 0;
		flex: none;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		background: #ffffff;
		border-bottom: 1px solid rgb(15 23 42 / 0.1);
		padding: 0.5rem 1.5rem 1.75rem;
		box-shadow: 0 18px 32px -20px rgb(15 23 42 / 0.28);
		z-index: 40;
		min-height: calc(100dvh - var(--psy-header-height));
		box-sizing: border-box;
	}

	.psy-header-nav.is-open {
		display: flex;
	}

	.psy-header-nav .psy-menu {
		display: flex;
		position: static;
		flex: none;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		width: 100%;
		min-height: 0;
		height: auto;
		gap: 0;
		margin: 0;
		padding: 0;
		background: transparent;
		border: none;
		box-shadow: none;
	}

	.psy-header-nav .psy-menu a,
	.psy-header-nav a {
		padding: 1rem 0;
		font-size: 1.125rem;
		font-weight: 600;
		letter-spacing: -0.01em;
		white-space: normal;
		box-shadow: none;
		border-bottom: 1px solid #f1f5f9;
	}

	.psy-header-nav .psy-menu a:hover,
	.psy-header-nav a:hover {
		color: #a8557e !important;
		box-shadow: none;
	}

	.psy-header-nav .psy-menu li.psy-nav-cta > a,
	.psy-header-nav a.psy-nav-cta {
		margin-top: 1.15rem;
		margin-left: 0;
		justify-content: center;
		text-align: center;
		border-bottom: none;
		padding: 0.9rem 1.25rem;
		font-size: 1rem;
	}

	body.admin-bar .psy-header-nav {
		top: calc(var(--psy-header-height) + var(--wp-admin--admin-bar--height, 46px));
		min-height: calc(100dvh - var(--psy-header-height) - var(--wp-admin--admin-bar--height, 46px));
	}
}

@media screen and (min-width: 783px) and (max-width: 1023px) {
	body.admin-bar .psy-header-nav {
		top: calc(var(--psy-header-height) + var(--wp-admin--admin-bar--height, 32px));
		min-height: calc(100dvh - var(--psy-header-height) - var(--wp-admin--admin-bar--height, 32px));
	}
}

@media (min-width: 1024px) {
	.psy-nav-toggle {
		display: none !important;
	}

	.psy-header-nav {
		display: flex !important;
		position: static;
		flex-direction: column;
		background: transparent;
		border: none;
		padding: 0;
		box-shadow: none;
		align-items: flex-end;
	}

	.psy-header-nav .psy-menu {
		display: flex !important;
		flex-direction: row;
		position: static;
		background: transparent;
		border: none;
		padding: 0;
		box-shadow: none;
	}
}

/* IT: Legacy wp:navigation — ignorato in tema classico. */

/* IT: Sfondo hero bg-mesh — gradienti opachi, senza velatura bianca. */
.psy-bg-mesh {
	background-color: #fdf8fb;
	background-image: radial-gradient(at 0% 0%, hsl(330, 80%, 94%) 0, hsl(330, 60%, 97%) 50%),
		radial-gradient(at 50% 0%, hsl(225, 45%, 88%) 0, hsl(225, 35%, 95%) 50%),
		radial-gradient(at 100% 0%, hsl(339, 55%, 93%) 0, hsl(339, 40%, 97%) 50%),
		radial-gradient(at 0% 50%, hsl(225, 40%, 90%) 0, hsl(225, 30%, 96%) 50%),
		radial-gradient(at 100% 50%, hsl(330, 70%, 95%) 0, hsl(330, 50%, 98%) 50%),
		radial-gradient(at 0% 100%, hsl(225, 38%, 91%) 0, hsl(225, 28%, 96%) 50%),
		radial-gradient(at 50% 100%, hsl(330, 75%, 96%) 0, hsl(330, 55%, 98%) 50%),
		radial-gradient(at 100% 100%, hsl(225, 40%, 92%) 0, hsl(225, 30%, 97%) 50%);
	position: relative;
	overflow: hidden;
}

/* IT: Onde SVG sopra il mesh — absolute sul cover (holder nel pattern). */
.psy-hero-waves-holder {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

.psy-hero-waves {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	opacity: 0.2;
	pointer-events: none;
}

.psy-hero-waves svg {
	position: absolute;
	top: -10%;
	right: -10%;
	width: 120%;
	height: 120%;
}

/* IT: Hero section (ex wp:cover). */
.psy-hero-cover {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.psy-hero-cover.is-style-psy-hero-spacing {
	padding-top: calc(var(--psy-header-height) + 2rem);
	padding-bottom: 5rem;
}

@media (min-width: 768px) {
	.psy-hero-cover.is-style-psy-hero-spacing {
		padding-top: calc(var(--psy-header-height) + 2.5rem);
		padding-bottom: 8rem;
	}
}

/* IT: Spaziatura hero — pt-10 pb-20 md:pb-32 (stesso top su mobile e desktop). */

.psy-hero-cover .psy-shell {
	position: relative;
	z-index: 2;
}

.psy-hero-text {
	width: 100%;
	max-width: 36rem;
}

@media (min-width: 768px) {
	.psy-hero-text {
		max-width: 52rem;
	}
}

@media (min-width: 1024px) {
	.psy-hero-text {
		max-width: 64rem;
	}
}

/* IT: Eyebrow a metà tra lead e CTA (stesso spazio sopra/sotto). */
.psy-hero-eyebrow {
	display: block;
	font-size: 0.8125rem;
	line-height: 1.25rem;
	font-weight: 700;
	color: #a8557e;
	letter-spacing: 0.12em;
	margin: 1.5rem 0;
	text-transform: uppercase;
}

@media (min-width: 640px) {
	.psy-hero-eyebrow {
		font-size: 0.875rem;
		line-height: 1.35rem;
	}
}

@media (min-width: 768px) {
	.psy-hero-eyebrow {
		margin: 1.75rem 0;
	}
}

/* IT: Titolo hero — text-5xl md:text-8xl font-display font-bold leading-[1.1] tracking-tight mb-8. */
.psy-hero-title {
	font-family: var(--psy-font-display);
	font-size: 3rem;
	line-height: 1.1;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.025em;
	margin: 0 0 2rem;
}

@media (min-width: 768px) {
	.psy-hero-title {
		font-size: 6rem;
	}
}

.psy-hero-title .psy-italic-pink {
	color: #a8557e;
	font-style: italic;
	font-weight: 400;
	display: inline-block;
}

/* IT: Paragrafo hero — text-lg md:text-2xl text-slate-600 leading-relaxed. */
.psy-hero-lead {
	font-size: 1.125rem;
	line-height: 1.625;
	color: #475569;
	margin: 0;
	max-width: 42rem;
}

@media (min-width: 768px) {
	.psy-hero-lead {
		font-size: 1.5rem;
		line-height: 1.625;
	}
}

.psy-hero-cta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

/* IT: Pulsante hero — px-8 py-5 rounded-full text-xl font-bold shadow-xl. */
.psy-btn-primary-lg,
.psy-btn-primary-lg .wp-block-button__link {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	border-radius: 9999px;
	padding: 1.25rem 2rem;
	background-color: #a8557e;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 20px 25px -5px rgba(168, 85, 126, 0.3), 0 8px 10px -6px rgba(168, 85, 126, 0.3);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	transition: background-color 0.15s ease, transform 0.15s ease;
	border: none;
	cursor: pointer;
}

.psy-btn-primary-lg .wp-block-button__link:hover {
	background-color: rgba(168, 85, 126, 0.9);
	color: #ffffff;
}

/* IT: Sezione generica — py-12 md:py-16 (dimezzato rispetto al layout React py-24 md:py-32). */
.psy-section {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

@media (min-width: 768px) {
	.psy-section {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
}

.psy-section-muted {
	background-color: #f8fafc;
}

.psy-section-tint {
	background-color: #fdf2f7;
}

/* IT: Intestazione sezione — text-center mb-16 px-4. */
.psy-section-head {
	text-align: center;
	margin-bottom: 4rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

.psy-badge {
	display: inline-block;
	padding: 0.375rem 1rem;
	border-radius: 9999px;
	background-color: #fdf2f7;
	color: #a8557e;
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1.5rem;
}

.psy-section-title {
	font-family: var(--psy-font-display);
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 1.5rem;
	letter-spacing: -0.025em;
}

@media (min-width: 768px) {
	.psy-section-title {
		font-size: 3rem;
		line-height: 1;
	}
}

.psy-section-title .text-primary {
	color: #a8557e;
}

.psy-section-sub {
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.125rem;
	line-height: 1.625;
	color: #475569;
}

@media (min-width: 768px) {
	.psy-section-sub {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
}

/* IT: Card — bg-white p-8 rounded-[32px] border border-slate-100 shadow-sm. */
.psy-card {
	background-color: #ffffff;
	padding: 2rem;
	border-radius: 32px;
	border: 1px solid #f1f5f9;
	box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

/* IT: Reveal allo scroll (attivo solo con html.psy-js). */
@media (prefers-reduced-motion: no-preference) {
	html.psy-js .psy-grid-areas .psy-card,
	html.psy-js .psy-grid-services .psy-card {
		opacity: 0;
		transform: translateY(1.25rem);
		transition:
			opacity 0.55s ease var(--psy-reveal-delay, 0ms),
			transform 0.55s ease var(--psy-reveal-delay, 0ms);
	}

	html.psy-js .psy-grid-areas .psy-card.is-visible,
	html.psy-js .psy-grid-services .psy-card.is-visible {
		opacity: 1;
		transform: none;
	}
}

.psy-card-icon-wrap {
	width: 3.5rem;
	height: 3.5rem;
	background-color: #fdf2f7;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a8557e;
	margin-bottom: 1.5rem;
	flex-shrink: 0;
}

.psy-card-icon-wrap svg {
	width: 28px;
	height: 28px;
}

.psy-card h3 {
	font-family: var(--psy-font-display);
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 1rem;
}

.psy-card p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.625;
	color: #475569;
	flex: 1 1 auto;
}

a.psy-card--link {
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

a.psy-card--link:hover {
	border-color: #f0d5e3;
	box-shadow: 0 12px 24px -16px rgb(168 85 126 / 0.35);
	transform: translateY(-2px);
}

a.psy-card--link:hover h3 {
	color: #a8557e;
}

a.psy-card--link:focus-visible {
	outline: 2px solid #a8557e;
	outline-offset: 3px;
}

.psy-card-more {
	display: inline-block;
	margin-top: 1.25rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #a8557e;
	letter-spacing: 0.01em;
}

/* IT: Griglia aree — replica Tailwind grid md:2 lg:4 gap-6 (niente wp:columns: è una card grid). */
.psy-grid-areas {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

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

@media (min-width: 1024px) {
	.psy-grid-areas {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* IT: Griglia servizi/metodo — md:2 lg:3 gap-8. */
.psy-grid-services {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

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

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

/* IT: Chi sono — grid md:2 gap-16 md:gap-24 items-center. */
.psy-chi-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

@media (min-width: 768px) {
	.psy-chi-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 6rem;
	}
}

.psy-chi-photo-wrap {
	position: relative;
	aspect-ratio: 1 / 1;
}

.psy-chi-photo-bg {
	position: absolute;
	inset: 0;
	background-color: #fdf2f7;
	border-radius: 40px;
	transform: rotate(3deg);
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

@media (min-width: 768px) {
	.psy-chi-photo-bg {
		border-radius: 80px;
	}
}

.psy-slideshow,
.psy-slideshow-viewport {
	position: absolute;
	inset: 0;
}

.psy-slideshow-slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	pointer-events: none;
}

.psy-slideshow-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.psy-chi-photo-bg img,
.psy-slideshow-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: rotate(-3deg) scale(1.12);
	transition: transform 0.7s ease;
	display: block;
}

.psy-chi-photo-bg:hover img,
.psy-chi-photo-wrap:hover .psy-slideshow-slide.is-active img {
	transform: rotate(-3deg) scale(1.18);
}

.psy-slideshow-dots {
	position: absolute;
	left: 50%;
	bottom: 1rem;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.35rem;
	max-width: calc(100% - 1.5rem);
	transform: translateX(-50%);
	padding: 0.35rem 0.55rem;
	border-radius: 9999px;
	background-color: rgb(15 23 42 / 0.35);
	backdrop-filter: blur(4px);
}

.psy-slideshow-dot {
	width: 0.55rem;
	height: 0.55rem;
	padding: 0;
	border: 0;
	border-radius: 9999px;
	background-color: rgb(255 255 255 / 0.55);
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.psy-slideshow-dot:hover {
	background-color: rgb(255 255 255 / 0.85);
}

.psy-slideshow-dot.is-active {
	background-color: #fff;
	transform: scale(1.2);
}

.psy-slideshow-dot:focus-visible {
	outline: 2px solid #a8557e;
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.psy-slideshow-slide {
		transition: none;
	}

	.psy-chi-photo-bg img,
	.psy-slideshow-slide img {
		transition: none;
	}
}

.psy-chi-copy h2 {
	font-family: var(--psy-font-display);
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 2.5rem;
	line-height: 1.25;
}

@media (min-width: 768px) {
	.psy-chi-copy h2 {
		font-size: 3.75rem;
		line-height: 1;
	}
}

.psy-chi-copy .psy-prose-stack p {
	font-size: 1.25rem;
	line-height: 1.625;
	color: #475569;
	margin: 0 0 1.5rem;
}

.psy-chi-tags {
	margin-top: 3rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.psy-chi-tag {
	background-color: #ffffff;
	padding: 1rem 1.5rem;
	border-radius: 1rem;
	border: 1px solid #f1f5f9;
	box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

.psy-chi-tag svg {
	width: 20px;
	height: 20px;
	color: #a8557e;
	flex-shrink: 0;
}

.psy-chi-tag span {
	font-weight: 700;
	color: #1e293b;
}

/* IT: CTA servizi — mt-20 text-center. */
.psy-servizi-cta {
	margin-top: 5rem;
	text-align: center;
}

.psy-servizi-cta p {
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #475569;
	margin: 0 0 2rem;
}

.psy-btn-primary-xl .wp-block-button__link {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	border-radius: 9999px;
	padding: 1.25rem 2.5rem;
	background-color: #a8557e;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 20px 25px -5px rgba(168, 85, 126, 0.3), 0 8px 10px -6px rgba(168, 85, 126, 0.3);
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

/* IT: Quote box metodo. */
.psy-metodo-grid-mb {
	margin-bottom: 5rem;
}

.psy-quote-box .wp-block-quote {
	border: none;
	padding: 0;
	margin: 0;
}

.psy-quote-box {
	background-color: #ffffff;
	padding: 3rem;
	border-radius: 40px;
	text-align: center;
	border: 1px solid #f1f5f9;
	box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	position: relative;
	overflow: hidden;
	margin-top: 0;
}

@media (min-width: 768px) {
	.psy-quote-box {
		padding: 5rem;
		border-radius: 60px;
	}
}

.psy-quote-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0.5rem;
	background-color: #a8557e;
}

.psy-quote-box blockquote {
	margin: 0 auto 2.5rem;
	padding: 0;
	border: none;
	font-size: 1.5rem;
	line-height: 1.625;
	font-style: italic;
	color: #1e293b;
	max-width: 56rem;
}

@media (min-width: 768px) {
	.psy-quote-box blockquote {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}
}

.psy-quote-cite,
.psy-quote-box cite {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	color: #0f172a;
	font-style: normal;
}

/* IT: Contatti — grid lg:2 gap-16 md:gap-32 items-start. */
.psy-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: start;
}

@media (min-width: 768px) {
	.psy-contact-grid {
		gap: 8rem;
	}
}

@media (min-width: 1024px) {
	.psy-contact-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.psy-contact-info h3 {
	font-family: var(--psy-font-display);
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 2rem;
}

.psy-contact-rows {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.psy-contact-row {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

.psy-contact-icon {
	width: 3.5rem;
	height: 3.5rem;
	background-color: #fdf2f7;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a8557e;
	flex-shrink: 0;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.psy-contact-row:hover .psy-contact-icon {
	background-color: #a8557e;
	color: #ffffff;
}

.psy-contact-row-static:hover .psy-contact-icon {
	background-color: #fdf2f7;
	color: #a8557e;
}

.psy-contact-label {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.25rem;
}

.psy-contact-row a,
.psy-contact-row p {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 500;
	color: #1e293b;
	text-decoration: none;
	margin: 0;
}

.psy-contact-row a:hover {
	color: #a8557e;
}

.psy-prima-box {
	background-color: #fdf2f7;
	padding: 2rem;
	border-radius: 32px;
	margin-top: 3rem;
}

@media (min-width: 768px) {
	.psy-prima-box {
		padding: 2.5rem;
	}
}

.psy-prima-box h4 {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 1rem;
}

.psy-prima-box p {
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #475569;
	margin: 0;
}

/* IT: Form card — bg-white p-8 md:p-12 rounded-[40px] border shadow-xl. */
.psy-form-card {
	background-color: #ffffff;
	padding: 2rem;
	border-radius: 40px;
	border: 1px solid #f1f5f9;
	box-shadow: 0 20px 25px -5px rgba(226, 232, 240, 0.5), 0 8px 10px -6px rgba(226, 232, 240, 0.5);
}

@media (min-width: 768px) {
	.psy-form-card {
		padding: 3rem;
	}
}

.psy-form-card h3 {
	font-family: var(--psy-font-display);
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 2.5rem;
}

.psy-form-card label {
	display: block;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
	color: #334155;
	margin-bottom: 0.75rem;
	margin-left: 0.25rem;
}

.psy-form-card input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="hidden"]),
.psy-form-card textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 1rem 1.5rem;
	border-radius: 1rem;
	border: 1px solid #e2e8f0;
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-family: inherit;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.psy-form-card input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="hidden"]):focus,
.psy-form-card textarea:focus {
	border-color: #a8557e;
	box-shadow: 0 0 0 4px rgba(168, 85, 126, 0.1);
}

.psy-form-card .field {
	margin-bottom: 1.5rem;
}

.psy-form-note {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #94a3b8;
	margin: 0 0 2rem;
}

.psy-form-submit {
	width: 100%;
	background-color: #a8557e;
	color: #ffffff;
	padding: 1.5rem;
	border-radius: 1rem;
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	box-shadow: 0 20px 25px -5px rgba(168, 85, 126, 0.3), 0 8px 10px -6px rgba(168, 85, 126, 0.3);
	transition: background-color 0.15s ease;
}

.psy-form-submit:hover {
	background-color: rgba(168, 85, 126, 0.9);
}

/* IT: Contact Form 7 — allinea markup CF7 allo stile .psy-form-card. */
.psy-form-card .wpcf7 {
	margin: 0;
}

.psy-form-card .wpcf7-form > p {
	margin: 0 0 1.5rem;
}

.psy-form-card .wpcf7-form > p:last-of-type {
	margin-bottom: 0;
}

.psy-form-card .wpcf7-form label {
	display: block;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
	color: #334155;
	margin: 0 0 1.5rem;
}

.psy-form-card .wpcf7-form .wpcf7-form-control-wrap {
	display: block;
	margin-top: 0.75rem;
}

.psy-form-card .wpcf7-form input.wpcf7-form-control:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.psy-form-card .wpcf7-form textarea.wpcf7-form-control,
.psy-form-card .wpcf7-form select.wpcf7-form-control {
	width: 100%;
	box-sizing: border-box;
	padding: 1rem 1.5rem;
	border-radius: 1rem;
	border: 1px solid #e2e8f0;
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-family: inherit;
	color: #0f172a;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	background-color: #fff;
	-webkit-appearance: none;
	appearance: none;
}

.psy-form-card .wpcf7-form select.wpcf7-form-control {
	padding-right: 2.75rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.1rem center;
	background-size: 1.15rem;
	cursor: pointer;
}

.psy-form-card .wpcf7-form input.wpcf7-form-control::placeholder,
.psy-form-card .wpcf7-form textarea.wpcf7-form-control::placeholder {
	color: #94a3b8;
}

.psy-form-card .wpcf7-form input.wpcf7-form-control:focus,
.psy-form-card .wpcf7-form textarea.wpcf7-form-control:focus,
.psy-form-card .wpcf7-form select.wpcf7-form-control:focus {
	border-color: #a8557e;
	box-shadow: 0 0 0 4px rgba(168, 85, 126, 0.1);
}

.psy-form-card .wpcf7-form .psy-form-note,
.psy-form-card .wpcf7-form p.psy-form-note {
	font-size: 0.875rem;
	line-height: 1.45;
	color: #94a3b8;
	margin: 0 0 1rem;
	font-weight: 400;
	text-align: left;
}

/* IT: Checkbox privacy — allineata a sinistra come i campi, testo a fianco. */
.psy-form-card .wpcf7-form p:has(.wpcf7-acceptance),
.psy-form-card .wpcf7-form p:has([data-name="privacy"]) {
	margin: 0 0 1.5rem;
	text-align: left;
}

.psy-form-card .wpcf7-form .wpcf7-form-control-wrap[data-name="privacy"],
.psy-form-card .wpcf7-form .wpcf7-acceptance {
	display: block;
	margin: 0;
	text-align: left;
}

.psy-form-card .wpcf7-form .wpcf7-acceptance .wpcf7-list-item,
.psy-form-card .wpcf7-form [data-name="privacy"] .wpcf7-list-item {
	display: block;
	margin: 0;
	width: 100%;
}

.psy-form-card .wpcf7-form .wpcf7-acceptance label,
.psy-form-card .wpcf7-form [data-name="privacy"] label,
.psy-form-card .wpcf7-form p:has([data-name="privacy"]) label {
	display: grid !important;
	grid-template-columns: 1.15rem minmax(0, 1fr);
	column-gap: 0.65rem;
	align-items: start;
	margin: 0 !important;
	margin-left: 0 !important;
	font-size: 0.875rem !important;
	line-height: 1.45 !important;
	font-weight: 400 !important;
	color: #64748b !important;
	text-align: left !important;
}

.psy-form-card .wpcf7-form .wpcf7-acceptance input[type="checkbox"],
.psy-form-card .wpcf7-form [data-name="privacy"] input[type="checkbox"],
.psy-form-card .wpcf7-form p:has([data-name="privacy"]) input[type="checkbox"] {
	grid-column: 1;
	grid-row: 1;
	width: 1.05rem !important;
	height: 1.05rem !important;
	min-width: 1.05rem;
	max-width: 1.05rem;
	margin: 0.2rem 0 0 !important;
	padding: 0 !important;
	border: 1px solid #cbd5e1 !important;
	border-radius: 0.2rem !important;
	box-shadow: none !important;
	background: #fff !important;
	accent-color: #a8557e;
	-webkit-appearance: checkbox !important;
	appearance: auto !important;
}

.psy-form-card .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label,
.psy-form-card .wpcf7-form [data-name="privacy"] .wpcf7-list-item-label {
	grid-column: 2;
	grid-row: 1;
	display: block;
	text-align: left;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
}

.psy-form-card .wpcf7-form .wpcf7-acceptance a,
.psy-form-card .wpcf7-form [data-name="privacy"] a {
	color: #a8557e;
	text-decoration: underline;
	text-underline-offset: 2px;
	font-weight: 500;
}

/* Turnstile: stesso ritmo dei campi, niente “scatola” staccata. */
.psy-form-card .wpcf7-form .wpcf7-form-control-wrap[data-name="turnstile"],
.psy-form-card .wpcf7-form .cf-turnstile,
.psy-form-card .wpcf7-form iframe[src*="challenges.cloudflare.com"] {
	max-width: 100%;
}

.psy-form-card .wpcf7-form .wpcf7-form-control-wrap:has(.cf-turnstile),
.psy-form-card .wpcf7-form p:has(.cf-turnstile),
.psy-form-card .wpcf7-form p:has(iframe[src*="challenges.cloudflare.com"]) {
	margin: 0.25rem 0 2rem;
	padding: 0.85rem 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	background-color: #f8fafc;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 4rem;
	box-sizing: border-box;
}

.psy-form-card .wpcf7-form .cf-turnstile {
	margin: 0;
}

.psy-form-card .wpcf7-form p:has(input.wpcf7-submit) {
	margin: 0.5rem 0 0;
}

.psy-form-card .wpcf7-form input.wpcf7-submit,
.psy-form-card .wpcf7-form input[type="submit"].wpcf7-submit {
	width: 100%;
	box-sizing: border-box;
	background-color: #a8557e !important;
	background-image: none !important;
	color: #ffffff !important;
	padding: 1.35rem 1.5rem;
	border-radius: 1rem;
	font-size: 1.125rem;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: 0.01em;
	border: none !important;
	cursor: pointer;
	box-shadow: 0 16px 28px -10px rgba(168, 85, 126, 0.45);
	transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
	font-family: inherit;
	margin-top: 0.75rem;
	-webkit-appearance: none;
	appearance: none;
}

.psy-form-card .wpcf7-form input.wpcf7-submit:hover,
.psy-form-card .wpcf7-form input[type="submit"].wpcf7-submit:hover {
	background-color: #934870 !important;
	color: #ffffff !important;
	box-shadow: 0 18px 32px -10px rgba(168, 85, 126, 0.5);
	transform: translateY(-1px);
}

.psy-form-card .wpcf7-form input.wpcf7-submit:focus-visible,
.psy-form-card .wpcf7-form input[type="submit"].wpcf7-submit:focus-visible {
	outline: 2px solid #a8557e;
	outline-offset: 3px;
}

.psy-form-card .wpcf7-form input.wpcf7-submit:disabled,
.psy-form-card .wpcf7-form input[type="submit"].wpcf7-submit:disabled {
	opacity: 0.65;
	cursor: wait;
	transform: none;
}

.psy-form-card .wpcf7-spinner {
	margin: 0.75rem 0 0;
}

.psy-form-card .wpcf7-not-valid-tip {
	font-size: 0.8125rem;
	margin-top: 0.35rem;
	color: #be123c;
	font-weight: 500;
}

.psy-form-card .wpcf7-not-valid {
	border-color: #fda4af !important;
}

.psy-form-card .wpcf7-response-output {
	margin: 1.25rem 0 0;
	padding: 1rem 1.15rem;
	border-radius: 1rem;
	font-size: 0.9375rem;
	line-height: 1.45;
	border-width: 1px;
	border-style: solid;
	font-family: var(--psy-font-body);
}

.psy-form-card .wpcf7 form.sent .wpcf7-response-output {
	background-color: #f0fdf4;
	border-color: #bbf7d0;
	color: #166534;
}

.psy-form-card .wpcf7 form.failed .wpcf7-response-output,
.psy-form-card .wpcf7 form.aborted .wpcf7-response-output,
.psy-form-card .wpcf7 form.spam .wpcf7-response-output,
.psy-form-card .wpcf7 form.invalid .wpcf7-response-output {
	background-color: #fff1f2;
	border-color: #fecdd3;
	color: #9f1239;
}

/* IT: Footer — padding basso ridotto (FAB alzati sopra la linea copyright). */
.psy-footer {
	position: relative;
	background-color: #f8fafc;
	border-top: 1px solid #e2e8f0;
	padding-top: 3rem;
	padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	box-sizing: border-box;
}

.psy-footer .psy-shell {
	position: relative;
	padding-left: 0;
	padding-right: 0;
}

/* IT: Freccia torna su — alto a destra del footer. */
.psy-back-to-top {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.75rem;
	border: 1px solid #e2e8f0;
	background-color: #ffffff;
	color: #a8557e;
	text-decoration: none;
	box-shadow: 0 4px 12px -6px rgb(15 23 42 / 0.18);
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.psy-back-to-top:hover {
	background-color: #fdf2f7;
	border-color: #f0d5e3;
	color: #934870;
	transform: translateY(-2px);
}

.psy-back-to-top:focus-visible {
	outline: 2px solid #a8557e;
	outline-offset: 3px;
}

/* IT: Footer grid — md:2 lg:3 con ultima colonna per contatti. */
.psy-footer-grid-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 2.5rem;
	padding-top: 0.25rem;
	padding-right: 3.5rem;
}

@media (min-width: 768px) {
	.psy-footer-grid-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.psy-footer-grid-inner {
		grid-template-columns: 1fr 1fr 2fr;
	}
}

.psy-footer-brand-title {
	font-family: var(--psy-font-display);
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 1.5rem;
	letter-spacing: -0.025em;
}

.psy-footer-brand-title.wp-block-site-title a {
	color: inherit;
	text-decoration: none;
}

.psy-footer-brand p {
	color: #64748b;
	line-height: 1.625;
	margin: 0;
}

.psy-footer h4 {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 1.5rem;
}

.psy-footer ul,
.psy-footer-ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.psy-footer a {
	color: #64748b;
	text-decoration: none;
	transition: color 0.15s ease;
}

.psy-footer a:hover {
	color: #a8557e;
}

.psy-footer li.flex {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.psy-footer-bottom {
	padding-top: 1.5rem;
	border-top: 1px solid #e2e8f0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #94a3b8;
	text-align: center;
}

@media (min-width: 768px) {
	.psy-footer-bottom {
		flex-direction: row;
		align-items: center;
		text-align: left;
		gap: 1rem;
	}
}

.psy-footer-bottom-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.25rem 1.75rem;
}

@media (min-width: 768px) {
	.psy-footer-bottom-links {
		margin-left: auto;
		justify-content: flex-end;
	}
}

.psy-footer-bottom a {
	color: #94a3b8;
}

.psy-footer-bottom a:hover {
	color: #0f172a;
}

/* IT: Hero sotto navbar fissa — mesh continua fino al top (fusione colore). */
.psy-main {
	padding-top: 0;
}

/* IT: Pagine interne (Privacy, Cookie) — spazio sotto header fisso. */
.psy-page-main {
	padding-top: calc(var(--psy-header-height) + 2.5rem);
	padding-bottom: 4rem;
	background-color: #ffffff;
}

.psy-page-header {
	margin-bottom: 2rem;
}

.psy-page-title {
	font-family: var(--psy-font-display);
	font-size: 1.875rem;
	line-height: 1.2;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.03em;
	margin: 0;
}

@media (min-width: 768px) {
	.psy-page-main {
		padding-top: calc(var(--psy-header-height) + 3.5rem);
		padding-bottom: 5rem;
	}

	.psy-page-title {
		font-size: 2.25rem;
	}
}

.psy-page-content {
	max-width: 48rem;
	font-size: 1rem;
	line-height: 1.65;
	color: #334155;
}

.psy-page-content > *:first-child {
	margin-top: 0;
}

.psy-page-content > *:last-child {
	margin-bottom: 0;
}

.psy-page-content a {
	color: #a8557e;
}

.psy-page-content h2,
.psy-page-content h3 {
	font-family: var(--psy-font-display);
	color: #0f172a;
	letter-spacing: -0.02em;
}

.text-primary {
	color: #a8557e;
}

.font-bold {
	font-weight: 700;
}

.text-slate-900 {
	color: #0f172a;
}

/* IT: WhatsApp FAB — unico flottante, solo icona, ombra soft. */
.psy-whatsapp-fab {
	position: fixed;
	z-index: 9990;
	right: 1.25rem;
	bottom: calc(var(--psy-footer-bar-clearance) + 1rem);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	padding: 0;
	border-radius: 9999px;
	background-color: #25d366;
	color: #fff;
	box-shadow: 0 6px 18px -4px rgb(15 23 42 / 0.22), 0 2px 6px -2px rgb(37 211 102 / 0.28);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.psy-whatsapp-fab:hover {
	color: #fff;
	background-color: #20bd5a;
	transform: translateY(-2px);
	box-shadow: 0 10px 22px -4px rgb(15 23 42 / 0.26), 0 4px 10px -2px rgb(37 211 102 / 0.32);
}

.psy-whatsapp-fab:focus-visible {
	outline: 2px solid #a8557e;
	outline-offset: 3px;
}

.psy-whatsapp-fab svg {
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
}

@media (min-width: 768px) {
	.psy-whatsapp-fab {
		right: 1.5rem;
		bottom: calc(var(--psy-footer-bar-clearance) + 1.15rem);
		width: 3.5rem;
		height: 3.5rem;
	}

	.psy-whatsapp-fab svg {
		width: 1.625rem;
		height: 1.625rem;
	}
}

/* IT: Nasconde il FAB preferenze Iubenda (banner + Cookie Policy in footer restano). */
.iubenda-tp-btn,
.iubenda-tp-btn.iubenda-tp-btn--bottom-right,
.iubenda-tp-btn.iubenda-tp-btn--bottom-left,
button.iubenda-tp-btn {
	display: none !important;
}
