:root {
	--sst-blue: #052b4f;
	--sst-blue-soft: #0d5c83;
	--sst-turquoise: #0097a9;
	--sst-sand: #f4ead7;
	--sst-white: #ffffff;
	--sst-green: #4f7f61;
	--sst-anthracite: #25323a;
	--sst-muted: #66727a;
	--sst-border: rgba(37, 50, 58, 0.12);
	--sst-shadow: 0 18px 45px rgba(5, 43, 79, 0.13);
	--sst-radius: 22px;
	--sst-container: min(1180px, calc(100vw - 40px));
	--sst-header-bg: #ffffff;
	--sst-header-text: #25323a;
	--sst-header-accent: #0097a9;
	--sst-header-padding-y: 16px;
	--sst-logo-width: 230px;
	--sst-footer-bg: #052b4f;
	--sst-footer-text: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--sst-anthracite);
	background: var(--sst-white);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
a:hover { color: var(--sst-turquoise); }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid rgba(0, 151, 169, 0.45); outline-offset: 4px; }

.sst-container { width: var(--sst-container); margin-inline: auto; }
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	clip: auto !important;
	clip-path: none;
	display: block;
	height: auto;
	left: 14px;
	top: 14px;
	width: auto;
	z-index: 100000;
	padding: 12px 16px;
	background: #fff;
	color: #000;
	border-radius: 10px;
	box-shadow: var(--sst-shadow);
}

.site-header {
	position: relative;
	z-index: 50;
	width: 100%;
	background: color-mix(in srgb, var(--sst-header-bg) 96%, transparent);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(5, 43, 79, 0.08);
	transition: background-color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}
.site-header.is-sticky { position: sticky; top: 0; }
.admin-bar .site-header.is-sticky { top: 32px; }
.home .site-header.is-transparent-on-top:not(.has-scrolled) {
	position: fixed;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.38), rgba(0,0,0,0));
	backdrop-filter: none;
	border-bottom-color: transparent;
}
.admin-bar.home .site-header.is-transparent-on-top:not(.has-scrolled) { top: 32px; }
.home .site-header.is-transparent-on-top:not(.has-scrolled) .menu > li > a,
.home .site-header.is-transparent-on-top:not(.has-scrolled) .sst-menu-toggle { color: #fff; }
.site-header.has-scrolled { box-shadow: 0 10px 30px rgba(5, 43, 79, 0.10); }
.sst-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: var(--sst-header-padding-y);
}
.site-branding { flex: 0 0 auto; line-height: 0; }
.site-branding .custom-logo-link { display: inline-flex; align-items: center; }
.site-branding img.custom-logo {
	width: var(--sst-logo-width);
	max-width: 48vw;
	height: auto;
	object-fit: contain;
}
.main-navigation { display: flex; align-items: center; justify-content: flex-end; }
.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}
.menu li { position: relative; margin: 0; }
.menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.96rem;
	color: var(--sst-header-text);
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}
.menu > li > a:hover,
.menu > li.current-menu-item > a,
.menu > li.current-menu-ancestor > a {
	color: var(--sst-header-accent);
	background: rgba(0, 151, 169, 0.08);
}
.menu-item-has-children > a::after {
	content: "";
	width: 0.45em;
	height: 0.45em;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	margin-left: 2px;
}
.sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 240px;
	list-style: none;
	margin: 0;
	padding: 10px;
	background: #fff;
	border: 1px solid var(--sst-border);
	box-shadow: var(--sst-shadow);
	border-radius: 18px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.menu li:hover > .sub-menu,
.menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.sub-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 650;
	color: var(--sst-anthracite);
}
.sub-menu a:hover { background: rgba(0, 151, 169, 0.08); color: var(--sst-turquoise); }

.sst-menu-toggle {
	display: none;
	border: 0;
	background: transparent;
	color: var(--sst-header-text);
	padding: 10px;
	border-radius: 14px;
	cursor: pointer;
}
.sst-menu-toggle-line {
	display: block;
	width: 28px;
	height: 2px;
	margin: 6px 0;
	background: currentColor;
	border-radius: 999px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.site-main { min-height: 62vh; }
.sst-page-wrap { padding: 80px 0; }
.sst-page-content .entry-header { padding: 72px 0 24px; }
.entry-title { margin: 0; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.05; color: var(--sst-blue); }
.entry-content > *:first-child { margin-top: 0; }

.site-footer {
	background: var(--sst-footer-bg);
	color: var(--sst-footer-text);
	padding: 34px 0;
}
.sst-footer-inner {
	display: grid;
	grid-template-columns: minmax(160px, 300px) 1fr;
	align-items: center;
	gap: 32px;
}
.sst-footer-logo img { width: min(230px, 62vw); filter: drop-shadow(0 8px 22px rgba(0,0,0,0.16)); }
.sst-footer-copy { text-align: right; font-size: 0.95rem; }
.sst-footer-copy p { margin: 4px 0; }
.sst-footer-copy a { color: currentColor; text-decoration: none; opacity: 0.9; }
.sst-footer-copy a:hover { opacity: 1; color: #84e9f1; }

.wpcf7 form .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 12px 16px;
	border-radius: 12px;
}

@media (max-width: 782px) {
	.admin-bar .site-header.is-sticky,
	.admin-bar.home .site-header.is-transparent-on-top:not(.has-scrolled) { top: 46px; }
}

@media (max-width: 900px) {
	:root { --sst-container: min(100vw - 28px, 720px); --sst-logo-width: 188px; }
	.sst-menu-toggle { display: inline-block; }
	.main-navigation { flex-direction: row-reverse; }
	.main-navigation .menu {
		position: absolute;
		left: 14px;
		right: 14px;
		top: calc(100% + 10px);
		display: block;
		padding: 12px;
		background: #fff;
		border-radius: 22px;
		box-shadow: var(--sst-shadow);
		border: 1px solid var(--sst-border);
		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	}
	.main-navigation.toggled .menu { opacity: 1; visibility: visible; transform: translateY(0); }
	.main-navigation.toggled .sst-menu-toggle-line:nth-child(2) { transform: translateY(8px) rotate(45deg); }
	.main-navigation.toggled .sst-menu-toggle-line:nth-child(3) { opacity: 0; }
	.main-navigation.toggled .sst-menu-toggle-line:nth-child(4) { transform: translateY(-8px) rotate(-45deg); }
	.menu > li > a { width: 100%; justify-content: space-between; padding: 12px 14px; color: var(--sst-anthracite) !important; }
	.sub-menu {
		position: static;
		visibility: visible;
		opacity: 1;
		transform: none;
		box-shadow: none;
		border: 0;
		background: rgba(0, 151, 169, 0.06);
		margin: 4px 0 8px 12px;
		min-width: auto;
	}
	.sst-footer-inner { grid-template-columns: 1fr; text-align: center; }
	.sst-footer-copy { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* --------------------------------------------------------------------------
 * Hotfix tema 1.3.0
 * Correzioni per palette, header, dropdown Luoghi e compatibilità con cache/Elementor.
 * -------------------------------------------------------------------------- */
.site-header {
	z-index: 9999;
	isolation: isolate;
	background: var(--sst-header-bg, #ffffff);
	background: color-mix(in srgb, var(--sst-header-bg, #ffffff) 96%, transparent);
}
.site-header .sst-header-inner,
.site-header .main-navigation,
.site-header .site-branding {
	position: relative;
	z-index: 10000;
}
.site-header .menu,
.site-header .sub-menu {
	list-style: none;
}
.site-header .menu a {
	text-decoration: none;
}
.site-header .menu > li > a {
	color: var(--sst-header-text, #25323a);
}
.home .site-header.is-transparent-on-top:not(.has-scrolled) .menu > li > a,
.home .site-header.is-transparent-on-top:not(.has-scrolled) .sst-menu-toggle {
	text-shadow: 0 1px 12px rgba(0,0,0,.28);
}
.home .site-header.is-transparent-on-top:not(.has-scrolled) .sub-menu,
.home .site-header.is-transparent-on-top:not(.has-scrolled) .sub-menu a {
	text-shadow: none;
}
.site-header .menu > li.menu-item-has-children > .sub-menu {
	top: 100%;
	z-index: 10001;
	pointer-events: none;
	will-change: opacity, transform;
}
.site-header .menu > li.menu-item-has-children > .sub-menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -12px;
	height: 12px;
}
.site-header .menu li:hover > .sub-menu,
.site-header .menu li:focus-within > .sub-menu,
.site-header .menu li.is-submenu-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}
.site-header .sub-menu a {
	color: var(--sst-anthracite, #25323a) !important;
}
.site-header .sub-menu a:hover,
.site-header .sub-menu a:focus-visible {
	color: var(--sst-header-accent, #0097a9) !important;
}
.site-main {
	background: #ffffff;
}
body,
button,
input,
textarea,
select {
	color: var(--sst-anthracite, #25323a);
}
.site-footer {
	background: var(--sst-footer-bg, #052b4f);
	color: var(--sst-footer-text, #ffffff);
}
@supports not (background: color-mix(in srgb, #fff 96%, transparent)) {
	.site-header {
		background: rgba(255,255,255,.96);
	}
	.home .site-header.is-transparent-on-top:not(.has-scrolled) {
		background: linear-gradient(180deg, rgba(0,0,0,0.38), rgba(0,0,0,0));
	}
}
@media (min-width: 901px) {
	.site-header .menu > li.menu-item-has-children {
		padding-bottom: 8px;
		margin-bottom: -8px;
	}
}
@media (max-width: 900px) {
	.site-header .main-navigation .menu {
		z-index: 10002;
		max-height: min(78vh, 620px);
		overflow-y: auto;
	}
	.site-header .sub-menu {
		pointer-events: auto !important;
	}
	.site-header .menu > li.menu-item-has-children > .sub-menu::before {
		display: none;
	}
}

/* --------------------------------------------------------------------------
 * Serrara Smart Tour v1.6.0 - riparazione grafica Elementor/layout.
 * Obiettivo: evitare pagine "rotte" anche quando Elementor/hosting servono CSS
 * parziale o in ritardo. Queste regole sono conservative e non bloccano i
 * controlli Elementor, perché Elementor genera selettori più specifici per i
 * singoli widget.
 * -------------------------------------------------------------------------- */
:root {
	--sst-blue: #052b4f;
	--sst-blue-soft: #0d5c83;
	--sst-turquoise: #0097a9;
	--sst-sand: #f4ead7;
	--sst-white: #ffffff;
	--sst-green: #4f7f61;
	--sst-anthracite: #25323a;
	--sst-muted: #66727a;
	--sst-border: rgba(37, 50, 58, 0.12);
	--sst-shadow: 0 18px 45px rgba(5, 43, 79, 0.13);
	--sst-radius: 22px;
	--sst-container: min(1180px, calc(100vw - 40px));
	--sstw-blue: #052b4f;
	--sstw-blue-soft: #0d5c83;
	--sstw-turquoise: #0097a9;
	--sstw-sand: #f4ead7;
	--sstw-green: #4f7f61;
	--sstw-text: #25323a;
	--sstw-muted: #66727a;
	--sstw-white: #ffffff;
	--sstw-shadow: 0 18px 45px rgba(5, 43, 79, 0.13);
	--sstw-radius: 24px;
}

body.serrara-smart-tour-theme,
body[class*="serrara"] {
	background: #ffffff;
	color: var(--sst-anthracite);
}

/* Fallback Elementor: se il CSS generato da Elementor non è rigenerato, le
   sezioni restano comunque ordinate e responsive. */
.entry-content > .elementor,
.elementor,
.elementor-section,
.elementor-section-wrap,
.elementor-widget-wrap,
.elementor-widget {
	box-sizing: border-box;
}
.elementor-section {
	position: relative;
	clear: both;
	width: 100%;
}
.elementor-section .elementor-container {
	position: relative;
	display: flex;
	margin-left: auto;
	margin-right: auto;
	max-width: min(1180px, calc(100vw - 40px));
	width: 100%;
}
.elementor-section.elementor-section-full_width > .elementor-container,
.elementor-section.elementor-section-stretched > .elementor-container {
	max-width: 100%;
}
.elementor-column {
	position: relative;
	min-height: 1px;
	display: flex;
}
.elementor-column.elementor-col-100 { width: 100%; }
.elementor-column.elementor-col-50 { width: 50%; }
.elementor-column.elementor-col-33 { width: 33.333%; }
.elementor-column.elementor-col-25 { width: 25%; }
.elementor-widget-wrap {
	position: relative;
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	align-content: flex-start;
}
.elementor-widget {
	position: relative;
	width: 100%;
}
.elementor-widget:not(:last-child) {
	margin-bottom: 0;
}
.elementor-page .entry-content,
.entry-content > .elementor {
	margin: 0;
	padding: 0;
	max-width: none;
}

/* Spaziatura verticale coerente tra widget importati. */
.elementor-widget-serrara_quote_box,
.elementor-widget-serrara_two_columns_content,
.elementor-widget-serrara_google_map_embed,
.elementor-widget-serrara_nearby_places,
.elementor-widget-serrara_info_box,
.elementor-widget-serrara_contact_info,
.elementor-widget-serrara_contact_form_7_wrapper,
.elementor-widget-serrara_policy_content {
	padding-block: clamp(22px, 4vw, 44px);
}
.elementor-widget-serrara_hero_fullscreen {
	padding-block: 0;
}

/* Evita overflow nelle colonne Elementor: prima la mappa ereditava una width
   globale da 1180px e poteva uscire dalla colonna sinistra. */
.elementor-column .sst-map,
.elementor-widget-wrap .sst-map {
	width: 100%;
	max-width: 100%;
	margin: 0;
}
.elementor-column .sst-info-box,
.elementor-widget-wrap .sst-info-box,
.elementor-column .sst-contact-info,
.elementor-widget-wrap .sst-contact-info,
.elementor-column .sst-cf7-wrapper,
.elementor-widget-wrap .sst-cf7-wrapper {
	width: 100%;
	max-width: 100%;
	margin: 0;
}
.elementor-column .sst-map iframe,
.elementor-widget-wrap .sst-map iframe {
	max-width: 100%;
}

/* Mantiene i colori mediterranei corretti. L'hotfix precedente forzava alcune
   card a bianco e rendeva quote/info box visivamente sbagliati. */
.elementor .sst-quote { background: var(--sstw-sand, #f4ead7); }
.elementor .sst-info-box { background: var(--sstw-sand, #f4ead7); }
.elementor .sst-contact-info,
.elementor .sst-cf7-wrapper,
.elementor .sst-policy,
.elementor .sst-nearby-card { background: #ffffff; }
.elementor .sst-hero__title,
.elementor .sst-hero__description { color: #ffffff; }
.elementor .sst-hero__pretitle { color: var(--sstw-sand, #f4ead7); }
.elementor .sst-two-columns__title,
.elementor .sst-nearby__title,
.elementor .sst-policy h1,
.elementor .sst-policy h2,
.elementor .sst-contact-info__title,
.elementor .sst-cf7-wrapper__title,
.elementor .sst-info-box__title,
.elementor .sst-quote__text {
	color: var(--sstw-blue, #052b4f);
}
.elementor .sst-two-columns__eyebrow,
.elementor .sst-contact-info__icon,
.elementor .sst-quote__icon {
	color: var(--sstw-turquoise, #0097a9);
}
.elementor .sst-two-columns__description,
.elementor .sst-nearby__description,
.elementor .sst-nearby-card__description,
.elementor .sst-policy,
.elementor .sst-contact-info__intro,
.elementor .sst-info-box__description {
	color: var(--sstw-text, #25323a);
}
.elementor .sst-button,
.elementor .sst-hero__button,
.elementor .sst-nearby-card__button,
.elementor .sst-cf7-wrapper input[type="submit"],
.elementor .sst-cf7-wrapper button[type="submit"] {
	background: var(--sstw-turquoise, #0097a9);
	color: #ffffff !important;
}
.elementor .sst-nearby-card__button--ghost {
	background: rgba(0,151,169,.10);
	color: var(--sstw-blue, #052b4f) !important;
}

/* Layout più istituzionale e pulito sulle pagine interne. */
.sst-info-box,
.sst-contact-info,
.sst-cf7-wrapper,
.sst-nearby-card,
.sst-quote,
.sst-map,
.sst-two-columns__image img {
	border: 1px solid rgba(37,50,58,.10);
}
.sst-two-columns-wrap {
	padding-block: clamp(52px, 8vw, 100px);
}
.sst-two-columns-wrap + .sst-two-columns-wrap {
	padding-top: clamp(22px, 4vw, 48px);
}
.sst-two-columns {
	min-height: 0;
}
.sst-two-columns__content,
.sst-two-columns__media {
	min-width: 0;
}
.sst-map {
	min-height: 260px;
}
.sst-map iframe,
.sst-map-placeholder {
	width: 100%;
	min-height: 260px;
}

/* Header/dropdown ulteriormente stabilizzato sopra Elementor. */
.site-header {
	z-index: 99999;
}
.site-header .sub-menu {
	z-index: 100000;
}
.site-header .menu > li > a[href="#"] {
	cursor: pointer;
}

/* Mobile: niente overflow, card e pulsanti comodi. */
@media (max-width: 900px) {
	:root { --sst-container: min(100vw - 28px, 720px); }
	.elementor-section .elementor-container {
		flex-direction: column;
		max-width: min(100vw - 28px, 720px);
	}
	.elementor-column,
	.elementor-column.elementor-col-50,
	.elementor-column.elementor-col-33,
	.elementor-column.elementor-col-25,
	.elementor-column.elementor-col-100 {
		width: 100% !important;
	}
	.elementor-widget-serrara_quote_box,
	.elementor-widget-serrara_two_columns_content,
	.elementor-widget-serrara_google_map_embed,
	.elementor-widget-serrara_nearby_places,
	.elementor-widget-serrara_info_box,
	.elementor-widget-serrara_contact_info,
	.elementor-widget-serrara_contact_form_7_wrapper,
	.elementor-widget-serrara_policy_content {
		padding-block: 18px;
	}
	.sst-hero {
		min-height: 72vh;
	}
	.sst-hero__inner,
	.sst-two-columns,
	.sst-map,
	.sst-nearby {
		width: min(100vw - 28px, 720px);
	}
	.sst-hero__title {
		font-size: clamp(2.2rem, 13vw, 4.2rem);
		line-height: .98;
	}
	.sst-hero__description {
		font-size: 1.08rem;
	}
	.sst-two-columns-wrap {
		padding-block: 42px;
	}
	.sst-info-box,
	.sst-contact-info,
	.sst-cf7-wrapper,
	.sst-quote {
		border-radius: 22px;
	}
	.sst-nearby__grid {
		grid-template-columns: 1fr;
	}
}

/* --------------------------------------------------------------------------
 * Serrara Smart Tour v1.9.2 - frontend/emergency CSS hardening.
 * Il frontend pubblico deve essere leggibile anche quando Elementor non riesce
 * a caricare i CSS generati in uploads/elementor/css/post-*.css.
 * -------------------------------------------------------------------------- */
body.serrara-smart-tour-theme .site-main,
body.serrara-smart-tour-theme .entry-content,
body.serrara-smart-tour-theme .entry-content > .elementor {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	overflow-x: clip;
}
body.serrara-smart-tour-theme .elementor-section-wrap,
body.serrara-smart-tour-theme .elementor-section,
body.serrara-smart-tour-theme .elementor-container,
body.serrara-smart-tour-theme .elementor-column,
body.serrara-smart-tour-theme .elementor-widget-wrap,
body.serrara-smart-tour-theme .elementor-widget,
body.serrara-smart-tour-theme .elementor-widget-container {
	box-sizing: border-box;
}
body.serrara-smart-tour-theme .elementor-section {
	position: relative;
	width: 100%;
	clear: both;
}
body.serrara-smart-tour-theme .elementor-section > .elementor-container {
	display: flex;
	width: min(1180px, calc(100vw - 40px));
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
}
body.serrara-smart-tour-theme .elementor-section-full_width > .elementor-container,
body.serrara-smart-tour-theme .elementor-section-stretched > .elementor-container {
	width: 100%;
}
body.serrara-smart-tour-theme .elementor-column {
	display: flex;
	min-height: 1px;
	position: relative;
}
body.serrara-smart-tour-theme .elementor-col-100 { width: 100%; }
body.serrara-smart-tour-theme .elementor-col-50 { width: 50%; }
body.serrara-smart-tour-theme .elementor-col-33 { width: 33.3333%; }
body.serrara-smart-tour-theme .elementor-col-25 { width: 25%; }
body.serrara-smart-tour-theme .elementor-widget-wrap {
	display: flex;
	position: relative;
	width: 100%;
	flex-wrap: wrap;
	align-content: flex-start;
}
body.serrara-smart-tour-theme .elementor-widget,
body.serrara-smart-tour-theme .elementor-widget-container {
	width: 100%;
}
body.serrara-smart-tour-theme .sst-hero {
	min-height: 92vh;
}
body.serrara-smart-tour-theme .elementor-column .sst-map,
body.serrara-smart-tour-theme .elementor-widget-wrap .sst-map {
	width: 100%;
	max-width: 100%;
	margin: 0;
}
body.serrara-smart-tour-theme .sst-map iframe,
body.serrara-smart-tour-theme .sst-map-placeholder {
	height: 450px;
	min-height: 260px;
}
@media (max-width: 900px) {
	body.serrara-smart-tour-theme .elementor-section > .elementor-container {
		width: min(100vw - 28px, 720px);
		flex-direction: column;
	}
	body.serrara-smart-tour-theme .elementor-column,
	body.serrara-smart-tour-theme .elementor-col-100,
	body.serrara-smart-tour-theme .elementor-col-50,
	body.serrara-smart-tour-theme .elementor-col-33,
	body.serrara-smart-tour-theme .elementor-col-25 {
		width: 100% !important;
	}
	body.serrara-smart-tour-theme .sst-hero {
		min-height: 72vh;
	}
}

/* --------------------------------------------------------------------------
 * Serrara Smart Tour v1.9.2 - frontend/editor parity fix.
 * Supporta sia il vecchio DOM Elementor section/column sia il nuovo DOM
 * container/flexbox (.e-con), così il frontend pubblico non collassa quando
 * Elementor non carica correttamente i CSS documento.
 * -------------------------------------------------------------------------- */
.sst-elementor-standard-render,
.sst-elementor-standard-render > .elementor,
.entry-content > .elementor,
.entry-content > .sst-elementor-standard-render {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}
.elementor .e-con,
.elementor .e-con > .e-con-inner,
.elementor .elementor-section,
.elementor .elementor-container {
	box-sizing: border-box;
}
.elementor .e-con {
	position: relative;
	width: 100%;
	max-width: 100%;
}
.elementor .e-con.e-con-boxed > .e-con-inner {
	width: min(1180px, calc(100vw - 40px));
	max-width: 100%;
	margin-inline: auto;
}
.elementor .e-con.e-con-full,
.elementor .e-con.e-con-full > .e-con-inner {
	width: 100%;
	max-width: 100%;
}
.elementor .e-con > .e-con-inner,
.elementor .e-con.e-con-full {
	display: flex;
	gap: var(--gap, 0px);
}
.elementor .e-con.e-flex,
.elementor .e-con.e-flex > .e-con-inner {
	display: flex;
}
.elementor .e-child,
.elementor .e-con > .elementor-widget,
.elementor .e-con-inner > .elementor-widget {
	min-width: 0;
	max-width: 100%;
}
.elementor .elementor-widget-container {
	width: 100%;
}
.elementor .sst-hero,
.elementor .sst-two-columns-wrap,
.elementor .sst-quote,
.elementor .sst-map,
.elementor .sst-nearby,
.elementor .sst-info-box,
.elementor .sst-contact-info,
.elementor .sst-cf7-wrapper,
.elementor .sst-policy {
	visibility: visible !important;
}
.elementor .sst-hero {
	min-height: 72vh;
}
.elementor .sst-two-columns,
.elementor .sst-nearby__grid {
	min-width: 0;
}
@media (max-width: 900px) {
	.elementor .e-con > .e-con-inner,
	.elementor .e-con.e-con-full,
	.elementor .elementor-container {
		flex-direction: column;
	}
	.elementor .e-con.e-con-boxed > .e-con-inner {
		width: min(100vw - 28px, 720px);
	}
	.elementor .e-child,
	.elementor .elementor-column,
	.elementor .elementor-col-50,
	.elementor .elementor-col-33,
	.elementor .elementor-col-25,
	.elementor .elementor-col-100 {
		width: 100% !important;
		max-width: 100% !important;
	}
}

/* --------------------------------------------------------------------------
 * Serrara Smart Tour v1.9.2 - header sempre bianco + responsive mobile.
 * -------------------------------------------------------------------------- */
body.serrara-smart-tour-theme { overflow-x: hidden; }
body.serrara-smart-tour-theme .site-header,
body.serrara-smart-tour-theme.home .site-header,
body.serrara-smart-tour-theme.home .site-header.is-transparent-on-top,
body.serrara-smart-tour-theme.home .site-header.is-transparent-on-top:not(.has-scrolled) {
	position: sticky !important;
	top: 0;
	left: auto !important;
	right: auto !important;
	background: #ffffff !important;
	background-image: none !important;
	color: var(--sst-header-text, #25323a) !important;
	border-bottom: 1px solid rgba(5, 43, 79, 0.10) !important;
	box-shadow: 0 8px 28px rgba(5, 43, 79, 0.08);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}
.admin-bar.serrara-smart-tour-theme .site-header,
.admin-bar.serrara-smart-tour-theme.home .site-header.is-transparent-on-top:not(.has-scrolled) { top: 32px; }
body.serrara-smart-tour-theme.home .site-header.is-transparent-on-top:not(.has-scrolled) .menu > li > a,
body.serrara-smart-tour-theme.home .site-header.is-transparent-on-top:not(.has-scrolled) .sst-menu-toggle,
body.serrara-smart-tour-theme .site-header .menu > li > a {
	color: var(--sst-header-text, #25323a) !important;
	text-shadow: none !important;
}
body.serrara-smart-tour-theme .site-header .menu > li > a:hover,
body.serrara-smart-tour-theme .site-header .menu > li.current-menu-item > a,
body.serrara-smart-tour-theme .site-header .menu > li.current-menu-ancestor > a {
	color: var(--sst-header-accent, #0097a9) !important;
	background: rgba(0, 151, 169, 0.09);
}
body.serrara-smart-tour-theme .site-branding img.custom-logo {
	max-height: 74px;
	object-fit: contain;
}
body.serrara-smart-tour-theme .main-navigation .menu { z-index: 100000; }
body.serrara-smart-tour-theme .main-navigation.toggled .menu,
body.serrara-smart-tour-theme .main-navigation.is-open .menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
body.serrara-smart-tour-theme .menu li.is-submenu-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

@media (min-width: 901px) and (max-width: 1180px) {
	:root { --sst-container: min(100vw - 48px, 1040px); }
	.sst-header-inner { gap: 18px; }
	.site-branding img.custom-logo { width: min(var(--sst-logo-width), 210px); }
	.menu > li > a { padding-inline: 11px; font-size: .94rem; }
	.sst-two-columns { gap: 44px !important; }
	.sst-nearby__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 900px) {
	:root {
		--sst-container: min(100vw - 28px, 720px);
		--sst-logo-width: 168px;
		--sst-header-padding-y: 9px;
	}
	html, body { max-width: 100%; overflow-x: hidden; }
	.admin-bar.serrara-smart-tour-theme .site-header,
	.admin-bar.serrara-smart-tour-theme.home .site-header.is-transparent-on-top:not(.has-scrolled) { top: 46px; }
	body.serrara-smart-tour-theme .sst-header-inner {
		min-height: 68px;
		padding-block: 8px;
		gap: 12px;
	}
	body.serrara-smart-tour-theme .site-branding img.custom-logo {
		width: clamp(138px, 45vw, 178px) !important;
		max-width: 52vw;
		max-height: 58px;
	}
	body.serrara-smart-tour-theme .sst-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		width: 48px;
		height: 48px;
		padding: 0;
		gap: 5px;
		background: var(--sst-blue, #052b4f) !important;
		color: #ffffff !important;
		border-radius: 16px;
		box-shadow: 0 10px 22px rgba(5, 43, 79, 0.16);
	}
	body.serrara-smart-tour-theme .sst-menu-toggle-line {
		width: 24px;
		height: 2px;
		margin: 0;
		background: currentColor;
	}
	body.serrara-smart-tour-theme .main-navigation .menu {
		position: absolute;
		left: 14px;
		right: 14px;
		top: calc(100% + 8px);
		display: block;
		max-height: calc(100svh - 104px);
		overflow-y: auto;
		overscroll-behavior: contain;
		padding: 12px;
		background: #ffffff !important;
		border: 1px solid rgba(5, 43, 79, 0.10);
		border-radius: 22px;
		box-shadow: 0 24px 54px rgba(5, 43, 79, 0.18);
		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);
	}
	body.serrara-smart-tour-theme .main-navigation.toggled .menu,
	body.serrara-smart-tour-theme .main-navigation.is-open .menu {
		opacity: 1 !important;
		visibility: visible !important;
		transform: translateY(0) !important;
	}
	body.serrara-smart-tour-theme .site-header .menu > li > a {
		width: 100%;
		min-height: 50px;
		justify-content: space-between;
		padding: 12px 14px;
		border-radius: 16px;
		font-size: 1rem;
	}
	body.serrara-smart-tour-theme .site-header .sub-menu {
		position: static !important;
		display: block;
		min-width: 0;
		margin: 4px 0 8px 0;
		padding: 8px;
		background: rgba(0, 151, 169, 0.07) !important;
		border: 0;
		box-shadow: none;
		border-radius: 16px;
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
		pointer-events: auto !important;
	}
	body.serrara-smart-tour-theme .site-header .sub-menu a {
		min-height: 46px;
		padding: 11px 12px;
		border-radius: 13px;
		font-size: .96rem;
	}
	body.serrara-smart-tour-theme .site-main,
	body.serrara-smart-tour-theme .entry-content,
	body.serrara-smart-tour-theme .entry-content > .elementor { overflow-x: hidden; }
	body.serrara-smart-tour-theme .elementor-section > .elementor-container,
	body.serrara-smart-tour-theme .elementor .elementor-container,
	body.serrara-smart-tour-theme .elementor .e-con.e-con-boxed > .e-con-inner {
		width: min(100vw - 28px, 720px) !important;
		max-width: 100% !important;
		flex-direction: column !important;
	}
	body.serrara-smart-tour-theme .elementor-column,
	body.serrara-smart-tour-theme .elementor-col-100,
	body.serrara-smart-tour-theme .elementor-col-50,
	body.serrara-smart-tour-theme .elementor-col-33,
	body.serrara-smart-tour-theme .elementor-col-25,
	body.serrara-smart-tour-theme .elementor .e-child {
		width: 100% !important;
		max-width: 100% !important;
	}
	body.serrara-smart-tour-theme .sst-hero {
		min-height: calc(100svh - 68px) !important;
		max-height: none;
	}
	body.serrara-smart-tour-theme .sst-hero__inner {
		width: min(100vw - 28px, 720px) !important;
		padding: 74px 0 54px !important;
	}
	body.serrara-smart-tour-theme .sst-hero__content { max-width: 100% !important; }
	body.serrara-smart-tour-theme .sst-hero__pretitle {
		font-size: .78rem;
		letter-spacing: .12em;
		margin-bottom: 10px;
	}
	body.serrara-smart-tour-theme .sst-hero__title {
		font-size: clamp(2.15rem, 11vw, 3.8rem) !important;
		line-height: 1.02 !important;
		letter-spacing: -.035em;
	}
	body.serrara-smart-tour-theme .sst-hero__description {
		font-size: 1.02rem !important;
		line-height: 1.58;
		margin-top: 16px;
	}
	body.serrara-smart-tour-theme .sst-quote {
		width: min(100vw - 28px, 720px) !important;
		margin: 28px auto !important;
		padding: 24px 20px !important;
		border-radius: 22px !important;
	}
	body.serrara-smart-tour-theme .sst-quote__icon { font-size: 3.6rem; }
	body.serrara-smart-tour-theme .sst-quote__text { font-size: clamp(1.12rem, 6vw, 1.55rem) !important; }
	body.serrara-smart-tour-theme .sst-two-columns-wrap { padding-block: 38px !important; }
	body.serrara-smart-tour-theme .sst-two-columns {
		width: min(100vw - 28px, 720px) !important;
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 28px !important;
	}
	body.serrara-smart-tour-theme .sst-two-columns--image-right .sst-two-columns__content { order: 1 !important; }
	body.serrara-smart-tour-theme .sst-two-columns--image-right .sst-two-columns__media { order: 2 !important; }
	body.serrara-smart-tour-theme .sst-two-columns--image-left .sst-two-columns__media { order: 1 !important; }
	body.serrara-smart-tour-theme .sst-two-columns--image-left .sst-two-columns__content { order: 2 !important; }
	body.serrara-smart-tour-theme .sst-two-columns__title,
	body.serrara-smart-tour-theme .sst-nearby__title,
	body.serrara-smart-tour-theme .sst-policy h1 {
		font-size: clamp(1.85rem, 8.5vw, 2.65rem) !important;
		line-height: 1.08 !important;
	}
	body.serrara-smart-tour-theme .sst-two-columns__description,
	body.serrara-smart-tour-theme .sst-nearby__description,
	body.serrara-smart-tour-theme .sst-info-box__description {
		font-size: 1rem !important;
		line-height: 1.72;
	}
	body.serrara-smart-tour-theme .sst-two-columns__image img {
		aspect-ratio: 16 / 11 !important;
		border-radius: 20px !important;
	}
	body.serrara-smart-tour-theme .sst-button,
	body.serrara-smart-tour-theme .sst-hero__button,
	body.serrara-smart-tour-theme .sst-nearby-card__button,
	body.serrara-smart-tour-theme .sst-cf7-wrapper input[type="submit"],
	body.serrara-smart-tour-theme .sst-cf7-wrapper button[type="submit"] {
		width: 100%;
		min-height: 52px;
		padding: 13px 18px;
		border-radius: 16px;
	}
	body.serrara-smart-tour-theme .sst-map,
	body.serrara-smart-tour-theme .sst-nearby {
		width: min(100vw - 28px, 720px) !important;
		margin: 34px auto !important;
	}
	body.serrara-smart-tour-theme .sst-map { border-radius: 20px !important; }
	body.serrara-smart-tour-theme .sst-map iframe,
	body.serrara-smart-tour-theme .sst-map-placeholder {
		height: min(360px, 58svh) !important;
		min-height: 280px;
	}
	body.serrara-smart-tour-theme .sst-nearby__filters {
		gap: 8px;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 4px;
	}
	body.serrara-smart-tour-theme .sst-nearby-filter {
		flex: 0 0 auto;
		min-height: 42px;
	}
	body.serrara-smart-tour-theme .sst-nearby__grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 18px !important;
	}
	body.serrara-smart-tour-theme .sst-nearby-card {
		border-radius: 22px !important;
		box-shadow: 0 12px 30px rgba(5, 43, 79, 0.10);
	}
	body.serrara-smart-tour-theme .sst-nearby-card__image img { height: 220px !important; }
	body.serrara-smart-tour-theme .sst-nearby-card__body { padding: 18px !important; }
	body.serrara-smart-tour-theme .sst-nearby-card__actions {
		grid-template-columns: 1fr !important;
		gap: 10px;
	}
	body.serrara-smart-tour-theme .sst-info-box,
	body.serrara-smart-tour-theme .sst-contact-info,
	body.serrara-smart-tour-theme .sst-cf7-wrapper {
		width: min(100vw - 28px, 720px) !important;
		margin: 28px auto !important;
		padding: 24px 20px !important;
		border-radius: 22px !important;
	}
	body.serrara-smart-tour-theme .sst-contact-info__list li {
		grid-template-columns: 28px 1fr;
		gap: 10px;
	}
	body.serrara-smart-tour-theme .sst-cf7-wrapper input:not([type="submit"]),
	body.serrara-smart-tour-theme .sst-cf7-wrapper textarea,
	body.serrara-smart-tour-theme .sst-cf7-wrapper select {
		min-height: 52px;
		font-size: 16px;
	}
	body.serrara-smart-tour-theme .sst-policy {
		width: min(100vw - 28px, 720px) !important;
		padding: 46px 0 !important;
	}
	body.serrara-smart-tour-theme .sst-policy h2 {
		font-size: clamp(1.45rem, 7vw, 2.1rem) !important;
		margin-top: 34px;
	}
	body.serrara-smart-tour-theme .site-footer { padding: 30px 0; }
	body.serrara-smart-tour-theme .sst-footer-inner {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: 16px;
	}
	body.serrara-smart-tour-theme .sst-footer-copy {
		text-align: center;
		font-size: .92rem;
	}
}

@media (max-width: 480px) {
	body.serrara-smart-tour-theme .sst-header-inner { min-height: 64px; }
	body.serrara-smart-tour-theme .site-branding img.custom-logo { width: clamp(126px, 42vw, 158px) !important; }
	body.serrara-smart-tour-theme .sst-menu-toggle { width: 44px; height: 44px; border-radius: 14px; }
	body.serrara-smart-tour-theme .sst-hero { min-height: calc(92svh - 64px) !important; }
	body.serrara-smart-tour-theme .sst-hero__inner { padding: 60px 0 44px !important; }
	body.serrara-smart-tour-theme .sst-hero__title { font-size: clamp(2rem, 12vw, 3.25rem) !important; }
	body.serrara-smart-tour-theme .sst-nearby-card__image img { height: 200px !important; }
	body.serrara-smart-tour-theme .sst-map iframe,
	body.serrara-smart-tour-theme .sst-map-placeholder { height: 320px !important; }
}


/* --------------------------------------------------------------------------
 * Serrara Smart Tour v1.9.3 - menu mobile sticky/drawer + pagina Spiaggia.
 * -------------------------------------------------------------------------- */
@media (max-width: 900px) {
	body.serrara-smart-tour-theme .site-header,
	body.serrara-smart-tour-theme .site-header.is-sticky,
	body.serrara-smart-tour-theme.home .site-header,
	body.serrara-smart-tour-theme.home .site-header.is-transparent-on-top,
	body.serrara-smart-tour-theme.home .site-header.is-transparent-on-top:not(.has-scrolled) {
		position: sticky !important;
		top: 0 !important;
		z-index: 100010 !important;
		background: rgba(255,255,255,.98) !important;
		background-image: none !important;
		box-shadow: 0 10px 30px rgba(5,43,79,.10) !important;
		border-bottom: 1px solid rgba(5,43,79,.10) !important;
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
	}
	.admin-bar.serrara-smart-tour-theme .site-header,
	.admin-bar.serrara-smart-tour-theme .site-header.is-sticky { top: 46px !important; }
	body.serrara-smart-tour-theme .sst-header-inner {
		width: min(100vw - 28px, 720px) !important;
		min-height: 68px !important;
		padding-block: 8px !important;
		gap: 12px !important;
	}
	body.serrara-smart-tour-theme .site-branding img.custom-logo {
		width: clamp(128px, 42vw, 166px) !important;
		max-width: 54vw !important;
		max-height: 56px !important;
	}
	body.serrara-smart-tour-theme.sst-mobile-menu-open { overflow: hidden; }
	body.serrara-smart-tour-theme.sst-mobile-menu-open::before {
		content: "";
		position: fixed;
		inset: 0;
		z-index: 99990;
		background: rgba(5, 43, 79, .30);
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
	}
	body.serrara-smart-tour-theme .sst-menu-toggle {
		display: inline-flex !important;
		position: relative;
		z-index: 100020;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		width: 48px !important;
		height: 48px !important;
		padding: 0 !important;
		gap: 5px;
		border: 0;
		border-radius: 16px !important;
		background: linear-gradient(135deg, #052b4f 0%, #0d5c83 100%) !important;
		color: #ffffff !important;
		box-shadow: 0 12px 24px rgba(5,43,79,.22) !important;
		transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
	}
	body.serrara-smart-tour-theme .sst-menu-toggle:hover,
	body.serrara-smart-tour-theme .sst-menu-toggle:focus-visible {
		transform: translateY(-1px);
		box-shadow: 0 14px 28px rgba(5,43,79,.26) !important;
	}
	body.serrara-smart-tour-theme .sst-menu-toggle-line {
		width: 24px !important;
		height: 2px !important;
		margin: 0 !important;
		background: currentColor !important;
		border-radius: 999px;
		transition: transform 180ms ease, opacity 180ms ease;
	}
	body.serrara-smart-tour-theme .main-navigation.toggled .sst-menu-toggle-line:nth-child(2),
	body.serrara-smart-tour-theme .main-navigation.is-open .sst-menu-toggle-line:nth-child(2) { transform: translateY(7px) rotate(45deg); }
	body.serrara-smart-tour-theme .main-navigation.toggled .sst-menu-toggle-line:nth-child(3),
	body.serrara-smart-tour-theme .main-navigation.is-open .sst-menu-toggle-line:nth-child(3) { opacity: 0; }
	body.serrara-smart-tour-theme .main-navigation.toggled .sst-menu-toggle-line:nth-child(4),
	body.serrara-smart-tour-theme .main-navigation.is-open .sst-menu-toggle-line:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
	body.serrara-smart-tour-theme .main-navigation .menu {
		position: fixed !important;
		top: var(--sst-mobile-menu-top, 82px) !important;
		left: 14px !important;
		right: 14px !important;
		z-index: 100015 !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 7px !important;
		width: auto !important;
		max-height: calc(100dvh - var(--sst-mobile-menu-top, 82px) - 16px) !important;
		overflow-y: auto !important;
		overscroll-behavior: contain;
		padding: 14px !important;
		background: rgba(255,255,255,.985) !important;
		border: 1px solid rgba(5,43,79,.10) !important;
		border-radius: 26px !important;
		box-shadow: 0 28px 70px rgba(5,43,79,.24) !important;
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
		transform: translateY(-10px) scale(.985) !important;
		transform-origin: top right;
		transition: opacity 190ms ease, transform 190ms ease, visibility 190ms ease !important;
	}
	body.serrara-smart-tour-theme .main-navigation.toggled .menu,
	body.serrara-smart-tour-theme .main-navigation.is-open .menu {
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		transform: translateY(0) scale(1) !important;
	}
	body.serrara-smart-tour-theme .site-header .menu > li > a {
		width: 100% !important;
		min-height: 54px !important;
		justify-content: space-between !important;
		padding: 14px 16px !important;
		border-radius: 18px !important;
		font-size: 1.02rem !important;
		font-weight: 850 !important;
		color: #052b4f !important;
		background: #f7fbfc !important;
		border: 1px solid rgba(5,43,79,.07);
		box-shadow: none !important;
	}
	body.serrara-smart-tour-theme .site-header .menu > li > a:hover,
	body.serrara-smart-tour-theme .site-header .menu > li > a:focus-visible,
	body.serrara-smart-tour-theme .site-header .menu > li.current-menu-item > a,
	body.serrara-smart-tour-theme .site-header .menu > li.current-menu-ancestor > a {
		background: #eef9fa !important;
		color: #0097a9 !important;
	}
	body.serrara-smart-tour-theme .site-header .sub-menu {
		position: static !important;
		display: block !important;
		min-width: 0 !important;
		max-height: 0 !important;
		overflow: hidden !important;
		margin: 0 !important;
		padding: 0 8px !important;
		background: rgba(0,151,169,.075) !important;
		border: 0 !important;
		box-shadow: none !important;
		border-radius: 18px !important;
		opacity: 0 !important;
		visibility: hidden !important;
		transform: none !important;
		pointer-events: none !important;
		transition: max-height 220ms ease, opacity 180ms ease, margin 180ms ease, padding 180ms ease !important;
	}
	body.serrara-smart-tour-theme .site-header .menu li.is-submenu-open > .sub-menu {
		max-height: 280px !important;
		margin: 8px 0 2px !important;
		padding: 8px !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
	}
	body.serrara-smart-tour-theme .site-header .sub-menu a {
		min-height: 46px !important;
		padding: 11px 13px !important;
		border-radius: 14px !important;
		font-size: .96rem !important;
		font-weight: 800 !important;
		color: #052b4f !important;
		background: #ffffff !important;
	}
}

body.sst-page-spiaggia .site-main {
	background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 360px, #ffffff 100%);
}
body.sst-page-spiaggia .sst-beach-where-section,
body.sst-page-spiaggia .elementor-element-0c6cd63 {
	position: relative;
	padding: clamp(48px, 7vw, 88px) 0;
	background:
		radial-gradient(circle at top left, rgba(0,151,169,.10), transparent 34%),
		linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}
body.sst-page-spiaggia .sst-beach-where-section::before,
body.sst-page-spiaggia .elementor-element-0c6cd63::before {
	content: "";
	position: absolute;
	inset: 20px auto auto 4vw;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background: rgba(244,234,215,.65);
	filter: blur(4px);
	pointer-events: none;
}
body.sst-page-spiaggia .sst-beach-where-section > .elementor-container,
body.sst-page-spiaggia .elementor-element-0c6cd63 > .elementor-container {
	position: relative;
	display: grid !important;
	grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr) !important;
	gap: clamp(24px, 4vw, 46px) !important;
	align-items: stretch !important;
}
body.sst-page-spiaggia .sst-beach-where-section .elementor-column,
body.sst-page-spiaggia .elementor-element-0c6cd63 .elementor-column {
	width: auto !important;
	max-width: 100% !important;
}
body.sst-page-spiaggia .sst-beach-where-section .sst-info-box,
body.sst-page-spiaggia .elementor-element-0c6cd63 .sst-info-box,
body.sst-page-spiaggia .sst-beach-where-section .sst-map,
body.sst-page-spiaggia .elementor-element-0c6cd63 .sst-map {
	width: 100% !important;
	margin: 0 !important;
	border-radius: 28px !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box {
	background: linear-gradient(135deg, #052b4f 0%, #0d5c83 100%) !important;
	color: #ffffff !important;
	box-shadow: 0 18px 44px rgba(5,43,79,.18) !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__title,
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__description { color: #ffffff !important; }
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__icon { color: #84e9f1 !important; }
body.sst-page-spiaggia .elementor-element-0842438 { margin-top: 18px; }
body.sst-page-spiaggia .elementor-element-0842438 .sst-map {
	border: 8px solid #ffffff !important;
	box-shadow: 0 22px 55px rgba(5,43,79,.16) !important;
}
body.sst-page-spiaggia .elementor-element-0842438 .sst-map iframe,
body.sst-page-spiaggia .elementor-element-0842438 .sst-map-placeholder {
	height: clamp(340px, 38vw, 452px) !important;
}
body.sst-page-spiaggia .elementor-element-c419b06 .sst-info-box {
	min-height: 100%;
	background: rgba(255,255,255,.96) !important;
	border: 1px solid rgba(5,43,79,.10) !important;
	box-shadow: 0 22px 55px rgba(5,43,79,.11) !important;
}
body.sst-page-spiaggia .elementor-element-c419b06 .sst-info-box__title {
	font-size: clamp(2rem, 3.6vw, 3.35rem) !important;
	line-height: 1.04 !important;
	letter-spacing: -.035em;
}
body.sst-page-spiaggia .elementor-element-c419b06 .sst-info-box__description {
	font-size: 1.04rem;
	line-height: 1.82;
}
body.sst-page-spiaggia .sst-beach-info-section,
body.sst-page-spiaggia .elementor-element-e2282b5 {
	padding: clamp(42px, 6vw, 76px) 0 clamp(70px, 8vw, 104px);
	background: #ffffff;
}
body.sst-page-spiaggia .sst-beach-info-section .sst-info-box,
body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box {
	position: relative;
	background: linear-gradient(135deg, #f4ead7 0%, #fff8eb 100%) !important;
	border: 1px solid rgba(79,127,97,.18) !important;
	box-shadow: 0 20px 50px rgba(5,43,79,.10) !important;
}
body.sst-page-spiaggia .sst-beach-info-section .sst-info-box::after,
body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box::after {
	content: "";
	position: absolute;
	top: 24px;
	right: 24px;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(79,127,97,.12);
}
@media (max-width: 900px) {
	body.sst-page-spiaggia .sst-beach-where-section,
	body.sst-page-spiaggia .elementor-element-0c6cd63 {
		padding: 38px 0 24px;
	}
	body.sst-page-spiaggia .sst-beach-where-section > .elementor-container,
	body.sst-page-spiaggia .elementor-element-0c6cd63 > .elementor-container {
		display: grid !important;
		grid-template-columns: 1fr !important;
		width: min(100vw - 28px, 720px) !important;
		gap: 22px !important;
	}
	body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box,
	body.sst-page-spiaggia .elementor-element-c419b06 .sst-info-box,
	body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box {
		padding: 24px 20px !important;
		border-radius: 24px !important;
	}
	body.sst-page-spiaggia .elementor-element-c419b06 .sst-info-box__title {
		font-size: clamp(1.85rem, 8vw, 2.55rem) !important;
	}
	body.sst-page-spiaggia .elementor-element-0842438 .sst-map {
		border-width: 6px !important;
	}
}

/* --------------------------------------------------------------------------
 * Serrara Smart Tour v1.9.7 - fix icone, footer e pagina Contatti.
 * -------------------------------------------------------------------------- */
body.serrara-smart-tour-theme .sst-info-box__icon,
body.serrara-smart-tour-theme .sst-contact-info__icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex: 0 0 auto !important;
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	max-width: 44px !important;
	max-height: 44px !important;
	font-size: 1.35rem !important;
	line-height: 1 !important;
	border-radius: 14px !important;
	background: rgba(0, 151, 169, 0.12) !important;
	overflow: hidden !important;
}
body.serrara-smart-tour-theme .sst-info-box__icon svg,
body.serrara-smart-tour-theme .sst-contact-info__icon svg,
body.serrara-smart-tour-theme .sst-info-box__icon i,
body.serrara-smart-tour-theme .sst-contact-info__icon i {
	display: block !important;
	width: 1.15em !important;
	height: 1.15em !important;
	max-width: 26px !important;
	max-height: 26px !important;
	font-size: inherit !important;
	line-height: 1 !important;
}
body.serrara-smart-tour-theme .sst-info-box__icon .e-font-icon-svg,
body.serrara-smart-tour-theme .sst-contact-info__icon .e-font-icon-svg {
	width: 1.15em !important;
	height: 1.15em !important;
}
body.sst-page-spiaggia .sst-info-box__icon {
	width: 48px !important;
	height: 48px !important;
	min-width: 48px !important;
	max-width: 48px !important;
	max-height: 48px !important;
	font-size: 1.45rem !important;
	margin-bottom: 18px !important;
}
body.sst-page-spiaggia .sst-info-box__icon svg,
body.sst-page-spiaggia .sst-info-box__icon i {
	width: 24px !important;
	height: 24px !important;
	max-width: 24px !important;
	max-height: 24px !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__icon {
	background: rgba(255,255,255,.14) !important;
}
body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box__icon {
	background: rgba(79,127,97,.12) !important;
}

body.serrara-smart-tour-theme .sst-footer-inner {
	display: grid;
	grid-template-columns: minmax(190px, 360px) 1fr;
	align-items: center;
	gap: 32px;
}
body.serrara-smart-tour-theme .sst-footer-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	text-decoration: none;
}
body.serrara-smart-tour-theme .sst-footer-logo-img,
body.serrara-smart-tour-theme .sst-footer-logo img {
	width: min(340px, 76vw) !important;
	max-width: 100% !important;
	height: auto !important;
	object-fit: contain !important;
	filter: drop-shadow(0 10px 22px rgba(0,0,0,0.20));
}
body.serrara-smart-tour-theme .sst-footer-copy a {
	font-weight: 850;
	text-decoration: none;
	color: #ffffff;
}
body.serrara-smart-tour-theme .sst-footer-credit a,
body.serrara-smart-tour-theme .sst-footer-policy a {
	border-bottom: 1px solid rgba(132,233,241,.45);
}
body.serrara-smart-tour-theme .sst-footer-credit a:hover,
body.serrara-smart-tour-theme .sst-footer-policy a:hover {
	color: #84e9f1;
	border-bottom-color: currentColor;
}

body.sst-page-contattaci .site-main {
	background:
		radial-gradient(circle at top left, rgba(0,151,169,.10), transparent 34%),
		linear-gradient(180deg, #f8fbfc 0%, #ffffff 520px, #ffffff 100%);
}
body.sst-page-contattaci .sst-contact-hero-section .sst-hero,
body.sst-page-contattaci .elementor-element-4592bc3 .sst-hero {
	min-height: clamp(360px, 50vh, 560px) !important;
}
body.sst-page-contattaci .sst-contact-hero-section .sst-hero__title,
body.sst-page-contattaci .elementor-element-4592bc3 .sst-hero__title {
	font-size: clamp(2.8rem, 7vw, 5.8rem) !important;
}
body.sst-page-contattaci .sst-contact-content-section,
body.sst-page-contattaci .elementor-element-bfedca6 {
	position: relative;
	padding: clamp(46px, 7vw, 92px) 0 clamp(70px, 8vw, 112px);
	background:
		radial-gradient(circle at 92% 8%, rgba(244,234,215,.85), transparent 26%),
		linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
	overflow: hidden;
}
body.sst-page-contattaci .sst-contact-content-section::before,
body.sst-page-contattaci .elementor-element-bfedca6::before {
	content: "";
	position: absolute;
	left: max(-80px, -6vw);
	bottom: 36px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: rgba(0,151,169,.08);
	pointer-events: none;
}
body.sst-page-contattaci .sst-contact-content-section > .elementor-container,
body.sst-page-contattaci .elementor-element-bfedca6 > .elementor-container {
	position: relative;
	display: grid !important;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr) !important;
	gap: clamp(24px, 4vw, 46px) !important;
	align-items: stretch !important;
}
body.sst-page-contattaci .sst-contact-content-section .elementor-column,
body.sst-page-contattaci .elementor-element-bfedca6 .elementor-column {
	width: auto !important;
	max-width: 100% !important;
}
body.sst-page-contattaci .sst-contact-info,
body.sst-page-contattaci .sst-cf7-wrapper {
	width: 100% !important;
	height: 100%;
	margin: 0 !important;
	border-radius: 30px !important;
}
body.sst-page-contattaci .sst-contact-info {
	position: relative;
	background:
		radial-gradient(circle at 88% 0%, rgba(132,233,241,.18), transparent 28%),
		linear-gradient(135deg, #052b4f 0%, #0d5c83 100%) !important;
	border: 1px solid rgba(255,255,255,.14) !important;
	box-shadow: 0 24px 64px rgba(5,43,79,.20) !important;
	color: #ffffff !important;
}
body.sst-page-contattaci .sst-contact-info::after {
	content: "";
	position: absolute;
	right: 24px;
	bottom: 24px;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	pointer-events: none;
}
body.sst-page-contattaci .sst-contact-info__title,
body.sst-page-contattaci .sst-contact-info__intro,
body.sst-page-contattaci .sst-contact-info__list,
body.sst-page-contattaci .sst-contact-info__list a,
body.sst-page-contattaci .sst-contact-info__list span {
	color: #ffffff !important;
}
body.sst-page-contattaci .sst-contact-info__intro {
	font-size: 1.04rem;
	line-height: 1.7;
	opacity: .88;
}
body.sst-page-contattaci .sst-contact-info__list {
	gap: 16px;
}
body.sst-page-contattaci .sst-contact-info__list li {
	grid-template-columns: 48px minmax(0,1fr) !important;
	align-items: center;
	padding: 12px;
	border-radius: 18px;
	background: rgba(255,255,255,.08);
}
body.sst-page-contattaci .sst-contact-info__icon {
	background: rgba(255,255,255,.14) !important;
	color: #84e9f1 !important;
}
body.sst-page-contattaci .sst-contact-info a:hover {
	color: #84e9f1 !important;
}
body.sst-page-contattaci .sst-cf7-wrapper {
	background: rgba(255,255,255,.98) !important;
	border: 1px solid rgba(5,43,79,.10) !important;
	box-shadow: 0 24px 64px rgba(5,43,79,.13) !important;
}
body.sst-page-contattaci .sst-cf7-wrapper__title {
	font-size: clamp(2rem, 3.6vw, 3.25rem) !important;
	letter-spacing: -.035em;
}
body.sst-page-contattaci .sst-cf7-wrapper__description {
	font-size: 1.03rem;
	line-height: 1.7;
}
body.sst-page-contattaci .sst-cf7-wrapper input:not([type="submit"]),
body.sst-page-contattaci .sst-cf7-wrapper textarea,
body.sst-page-contattaci .sst-cf7-wrapper select {
	min-height: 52px;
	border: 1px solid rgba(5,43,79,.12) !important;
	background: #f8fbfc !important;
	border-radius: 16px !important;
	transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
body.sst-page-contattaci .sst-cf7-wrapper input:not([type="submit"]):focus,
body.sst-page-contattaci .sst-cf7-wrapper textarea:focus,
body.sst-page-contattaci .sst-cf7-wrapper select:focus {
	outline: none;
	border-color: rgba(0,151,169,.70) !important;
	box-shadow: 0 0 0 4px rgba(0,151,169,.12);
	background: #ffffff !important;
}
body.sst-page-contattaci .sst-cf7-wrapper textarea {
	min-height: 160px;
}
body.sst-page-contattaci .sst-cf7-wrapper input[type="submit"],
body.sst-page-contattaci .sst-cf7-wrapper button[type="submit"] {
	width: 100%;
	min-height: 54px;
	box-shadow: 0 16px 32px rgba(0,151,169,.23);
}

@media (max-width: 900px) {
	body.serrara-smart-tour-theme .sst-footer-inner {
		display: flex !important;
		flex-direction: column !important;
		text-align: center !important;
		gap: 20px !important;
	}
	body.serrara-smart-tour-theme .sst-footer-logo-img,
	body.serrara-smart-tour-theme .sst-footer-logo img {
		width: min(310px, 86vw) !important;
	}
	body.serrara-smart-tour-theme .sst-footer-copy {
		text-align: center !important;
	}
	body.sst-page-contattaci .sst-contact-content-section,
	body.sst-page-contattaci .elementor-element-bfedca6 {
		padding: 34px 0 70px;
	}
	body.sst-page-contattaci .sst-contact-content-section > .elementor-container,
	body.sst-page-contattaci .elementor-element-bfedca6 > .elementor-container {
		display: grid !important;
		grid-template-columns: 1fr !important;
		width: min(100vw - 28px, 720px) !important;
		gap: 22px !important;
	}
	body.sst-page-contattaci .sst-contact-info,
	body.sst-page-contattaci .sst-cf7-wrapper {
		padding: 26px 20px !important;
		border-radius: 24px !important;
		height: auto !important;
	}
	body.sst-page-contattaci .sst-contact-info__list li {
		grid-template-columns: 46px minmax(0,1fr) !important;
		padding: 10px !important;
	}
	body.sst-page-contattaci .sst-cf7-wrapper__title {
		font-size: clamp(1.75rem, 8vw, 2.45rem) !important;
	}
}


/* --------------------------------------------------------------------------
 * Serrara Smart Tour v1.9.7 - rifiniture Spiaggia di Sant'Angelo e screenshot tema.
 * -------------------------------------------------------------------------- */
body.sst-page-spiaggia .sst-beach-where-section > .elementor-container,
body.sst-page-spiaggia .elementor-element-0c6cd63 > .elementor-container {
	width: min(1180px, calc(100vw - 64px)) !important;
	max-width: calc(100vw - 64px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
body.sst-page-spiaggia .sst-beach-where-section .elementor-widget-wrap,
body.sst-page-spiaggia .elementor-element-0c6cd63 .elementor-widget-wrap {
	gap: 0 !important;
}
body.sst-page-spiaggia .elementor-element-6920626 {
	margin: 0 0 10px !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box {
	display: inline-flex !important;
	align-items: center !important;
	gap: 12px !important;
	width: auto !important;
	max-width: 100% !important;
	margin: 0 0 8px !important;
	padding: 0 4px 8px !important;
	background: transparent !important;
	background-image: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: #052b4f !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__description {
	display: none !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__title {
	margin: 0 !important;
	color: #052b4f !important;
	font-size: clamp(1.35rem, 2.1vw, 1.8rem) !important;
	line-height: 1.08 !important;
	letter-spacing: -.025em !important;
	font-weight: 850 !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__icon {
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	max-width: 42px !important;
	max-height: 42px !important;
	margin: 0 !important;
	color: #0097a9 !important;
	background: rgba(0,151,169,.12) !important;
	border: 1px solid rgba(0,151,169,.18) !important;
	box-shadow: 0 10px 24px rgba(0,151,169,.14) !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__icon svg,
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__icon i {
	width: 20px !important;
	height: 20px !important;
	max-width: 20px !important;
	max-height: 20px !important;
}
body.sst-page-spiaggia .elementor-element-0842438 {
	margin-top: 0 !important;
}
body.sst-page-spiaggia .elementor-element-0842438 .sst-map {
	border-radius: 30px !important;
}
body.sst-page-spiaggia .sst-beach-info-section > .elementor-container,
body.sst-page-spiaggia .elementor-element-e2282b5 > .elementor-container {
	width: min(980px, calc(100vw - 64px)) !important;
	max-width: calc(100vw - 64px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
body.sst-page-spiaggia .sst-beach-info-section .sst-info-box,
body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box {
	overflow: hidden !important;
	padding: clamp(30px, 4vw, 48px) !important;
	background:
		radial-gradient(circle at 94% 10%, rgba(0,151,169,.12), transparent 28%),
		linear-gradient(135deg, #fff8eb 0%, #ffffff 62%, #eef8f9 100%) !important;
	border: 1px solid rgba(5,43,79,.10) !important;
	border-left: 7px solid #4f7f61 !important;
	box-shadow: 0 24px 65px rgba(5,43,79,.12) !important;
}
body.sst-page-spiaggia .sst-beach-info-section .sst-info-box::before,
body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 7px;
	background: linear-gradient(180deg, #4f7f61, #0097a9);
}
body.sst-page-spiaggia .sst-beach-info-section .sst-info-box::after,
body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box::after {
	width: 88px !important;
	height: 88px !important;
	top: -22px !important;
	right: -18px !important;
	background: rgba(79,127,97,.12) !important;
}
body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box__icon {
	background: rgba(79,127,97,.13) !important;
	border: 1px solid rgba(79,127,97,.18) !important;
	color: #4f7f61 !important;
	margin-bottom: 16px !important;
}
body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box__title {
	margin-bottom: 12px !important;
	font-size: clamp(2rem, 3.2vw, 3rem) !important;
	line-height: 1.04 !important;
	letter-spacing: -.035em !important;
	color: #052b4f !important;
}
body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box__description {
	max-width: 860px !important;
	font-size: clamp(1rem, 1.4vw, 1.12rem) !important;
	line-height: 1.78 !important;
	color: #25323a !important;
}
body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box__description p {
	margin: 0 !important;
}
@media (max-width: 900px) {
	body.sst-page-spiaggia .sst-beach-where-section > .elementor-container,
	body.sst-page-spiaggia .elementor-element-0c6cd63 > .elementor-container,
	body.sst-page-spiaggia .sst-beach-info-section > .elementor-container,
	body.sst-page-spiaggia .elementor-element-e2282b5 > .elementor-container {
		width: min(100vw - 40px, 720px) !important;
		max-width: calc(100vw - 40px) !important;
	}
	body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box {
		margin-bottom: 10px !important;
		padding: 0 2px 6px !important;
	}
	body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__title {
		font-size: clamp(1.28rem, 6vw, 1.65rem) !important;
	}
	body.sst-page-spiaggia .elementor-element-0842438 .sst-map iframe,
	body.sst-page-spiaggia .elementor-element-0842438 .sst-map-placeholder {
		height: min(430px, 68vh) !important;
	}
	body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box,
	body.sst-page-spiaggia .sst-beach-info-section .sst-info-box {
		padding: 28px 22px !important;
		border-radius: 24px !important;
		border-left-width: 5px !important;
	}
}
@media (max-width: 480px) {
	body.sst-page-spiaggia .sst-beach-where-section > .elementor-container,
	body.sst-page-spiaggia .elementor-element-0c6cd63 > .elementor-container,
	body.sst-page-spiaggia .sst-beach-info-section > .elementor-container,
	body.sst-page-spiaggia .elementor-element-e2282b5 > .elementor-container {
		width: min(100vw - 32px, 420px) !important;
		max-width: calc(100vw - 32px) !important;
	}
	body.sst-page-spiaggia .elementor-element-0842438 .sst-map {
		border-width: 5px !important;
		border-radius: 22px !important;
	}
}

/* --------------------------------------------------------------------------
 * Serrara Smart Tour v1.9.7 - mappa Spiaggia, carousel Nei dintorni, Info Utili.
 * -------------------------------------------------------------------------- */
body.sst-page-spiaggia .elementor-element-6920626,
body.sst-page-spiaggia .sst-beach-where-section .elementor-element-6920626 {
	margin: 0 0 10px !important;
	padding: 0 !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .elementor-widget-container {
	margin: 0 !important;
	padding: 0 !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	justify-content: flex-start !important;
	gap: 4px !important;
	width: auto !important;
	max-width: 100% !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	background-image: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: #052b4f !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box::before,
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box::after {
	display: none !important;
	content: none !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__description {
	display: none !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__icon {
	display: inline-flex !important;
	width: 30px !important;
	height: 30px !important;
	min-width: 30px !important;
	max-width: 30px !important;
	max-height: 30px !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #0097a9 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	font-size: 1.65rem !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__icon svg,
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__icon i,
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__icon .e-font-icon-svg {
	width: 26px !important;
	height: 26px !important;
	max-width: 26px !important;
	max-height: 26px !important;
}
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__title {
	margin: 0 !important;
	padding: 0 !important;
	color: #052b4f !important;
	font-size: clamp(1.45rem, 2.2vw, 1.95rem) !important;
	line-height: 1.05 !important;
	letter-spacing: -.025em !important;
	font-weight: 850 !important;
}
body.sst-page-spiaggia .elementor-element-0842438,
body.sst-page-spiaggia .sst-beach-where-section .elementor-element-0842438 {
	margin-top: 10px !important;
}
body.sst-page-spiaggia .elementor-element-0842438 .sst-map {
	border-radius: 30px !important;
}

body.sst-page-spiaggia .sst-nearby--carousel,
body.sst-page-spiaggia .sst-beach-nearby-section .sst-nearby {
	margin-top: clamp(58px, 7vw, 92px) !important;
	margin-bottom: clamp(58px, 7vw, 92px) !important;
}
.sst-nearby--carousel .sst-nearby__carousel {
	position: relative;
	margin-top: 24px;
	padding-inline: 40px;
}
.sst-nearby--carousel .sst-nearby__viewport {
	overflow: hidden;
	width: 100%;
	padding: 4px 2px 12px;
}
.sst-nearby--carousel .sst-nearby__grid {
	display: flex !important;
	grid-template-columns: none !important;
	gap: 24px !important;
	align-items: stretch !important;
	width: 100% !important;
	margin: 0 !important;
	transition: transform 280ms ease !important;
	will-change: transform;
}
.sst-nearby--carousel .sst-nearby-card {
	flex: 0 0 calc((100% - 48px) / 3) !important;
	max-width: calc((100% - 48px) / 3) !important;
	min-width: 0 !important;
	height: auto !important;
}
.sst-nearby--carousel .sst-nearby-card.is-hidden {
	display: none !important;
}
.sst-nearby-arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(5,43,79,.10);
	border-radius: 999px;
	background: #ffffff;
	color: #052b4f;
	box-shadow: 0 14px 34px rgba(5,43,79,.16);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease, color 180ms ease;
}
.sst-nearby-arrow:hover,
.sst-nearby-arrow:focus-visible {
	background: #0097a9;
	color: #ffffff;
	transform: translateY(-50%) scale(1.05);
	outline: none;
}
.sst-nearby-arrow--prev { left: 0; }
.sst-nearby-arrow--next { right: 0; }
.sst-nearby-arrow[disabled],
.sst-nearby-arrow[aria-disabled="true"] {
	opacity: .38;
	cursor: not-allowed;
	pointer-events: none;
}
.sst-nearby-filter.is-active,
.sst-nearby-filter[aria-pressed="true"] {
	color: #ffffff !important;
	background: #0097a9 !important;
	border-color: #0097a9 !important;
	box-shadow: 0 12px 26px rgba(0,151,169,.20);
}
body.sst-page-spiaggia .sst-beach-info-section .sst-info-box,
body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box {
	position: relative !important;
	isolation: isolate;
	padding: clamp(32px, 4.2vw, 52px) !important;
	background:
		radial-gradient(circle at 96% 4%, rgba(0,151,169,.14), transparent 27%),
		radial-gradient(circle at 4% 100%, rgba(79,127,97,.10), transparent 28%),
		linear-gradient(135deg, #fff8eb 0%, #ffffff 58%, #eef8f9 100%) !important;
	border: 1px solid rgba(5,43,79,.10) !important;
	border-left: 7px solid #4f7f61 !important;
	box-shadow: 0 28px 72px rgba(5,43,79,.13) !important;
}
body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box__icon {
	background: rgba(79,127,97,.13) !important;
	border: 1px solid rgba(79,127,97,.20) !important;
	color: #4f7f61 !important;
	box-shadow: 0 12px 26px rgba(79,127,97,.14) !important;
}
body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box__title {
	margin-bottom: 14px !important;
}
body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box__description {
	max-width: 900px !important;
}

@media (max-width: 980px) {
	.sst-nearby--carousel .sst-nearby__carousel {
		padding-inline: 34px;
	}
	.sst-nearby--carousel .sst-nearby__grid {
		gap: 22px !important;
	}
	.sst-nearby--carousel .sst-nearby-card {
		flex-basis: calc((100% - 22px) / 2) !important;
		max-width: calc((100% - 22px) / 2) !important;
	}
}
@media (max-width: 640px) {
	body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__title {
		font-size: clamp(1.35rem, 7vw, 1.75rem) !important;
	}
	body.sst-page-spiaggia .elementor-element-0842438,
	body.sst-page-spiaggia .sst-beach-where-section .elementor-element-0842438 {
		margin-top: 10px !important;
	}
	.sst-nearby--carousel .sst-nearby__carousel {
		padding-inline: 0;
		padding-bottom: 62px;
	}
	.sst-nearby--carousel .sst-nearby__viewport {
		padding-inline: 2px;
	}
	.sst-nearby--carousel .sst-nearby__grid {
		gap: 18px !important;
	}
	.sst-nearby--carousel .sst-nearby-card {
		flex-basis: 100% !important;
		max-width: 100% !important;
	}
	.sst-nearby-arrow {
		top: auto;
		bottom: 0;
		width: 46px;
		height: 46px;
		font-size: 1.85rem;
		transform: none;
	}
	.sst-nearby-arrow:hover,
	.sst-nearby-arrow:focus-visible {
		transform: scale(1.04);
	}
	.sst-nearby-arrow--prev { left: calc(50% - 56px); }
	.sst-nearby-arrow--next { right: calc(50% - 56px); }
	body.sst-page-spiaggia .sst-beach-info-section .sst-info-box,
	body.sst-page-spiaggia .elementor-element-e2282b5 .sst-info-box {
		padding: 30px 22px !important;
		border-left-width: 5px !important;
	}
}
@media (prefers-reduced-motion: reduce) {
	.sst-nearby--carousel .sst-nearby__grid,
	.sst-nearby-arrow {
		transition: none !important;
	}
}

/* --------------------------------------------------------------------------
 * Serrara Smart Tour v1.9.7 - fix Ti trovi qui e carousel configurabile.
 * -------------------------------------------------------------------------- */
body.sst-page-spiaggia .sst-info-box--where,
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box,
body.sst-page-spiaggia .sst-beach-where-section .elementor-element-6920626 .sst-info-box {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	justify-content: flex-start !important;
	gap: 2px !important;
	width: auto !important;
	max-width: 100% !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	outline: 0 !important;
	color: #052b4f !important;
}
body.sst-page-spiaggia .sst-info-box--where::before,
body.sst-page-spiaggia .sst-info-box--where::after,
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box::before,
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box::after {
	display: none !important;
	content: none !important;
}
body.sst-page-spiaggia .elementor-element-6920626,
body.sst-page-spiaggia .elementor-element-6920626 .elementor-widget-container,
body.sst-page-spiaggia .sst-beach-where-section .elementor-element-6920626,
body.sst-page-spiaggia .sst-beach-where-section .elementor-element-6920626 .elementor-widget-container {
	margin: 0 0 10px !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}
body.sst-page-spiaggia .sst-info-box--where .sst-info-box__description,
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__description {
	display: none !important;
}
body.sst-page-spiaggia .sst-info-box--where .sst-info-box__icon,
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 31px !important;
	height: 31px !important;
	min-width: 31px !important;
	max-width: 31px !important;
	min-height: 31px !important;
	max-height: 31px !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: #008fa1 !important;
	font-size: 1.55rem !important;
	line-height: 1 !important;
}
body.sst-page-spiaggia .sst-info-box--where .sst-info-box__icon svg,
body.sst-page-spiaggia .sst-info-box--where .sst-info-box__icon i,
body.sst-page-spiaggia .sst-info-box--where .sst-info-box__icon .e-font-icon-svg,
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__icon svg,
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__icon i,
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__icon .e-font-icon-svg {
	width: 30px !important;
	height: 30px !important;
	max-width: 30px !important;
	max-height: 30px !important;
	line-height: 1 !important;
}
body.sst-page-spiaggia .sst-info-box--where .sst-info-box__title,
body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__title {
	margin: 3px 0 0 !important;
	padding: 0 !important;
	color: #052b4f !important;
	font-size: clamp(1.55rem, 2.45vw, 2.15rem) !important;
	font-weight: 850 !important;
	letter-spacing: -.03em !important;
	line-height: 1.02 !important;
}
body.sst-page-spiaggia .elementor-element-0842438,
body.sst-page-spiaggia .sst-beach-where-section .elementor-widget-serrara_google_map_embed,
body.sst-page-spiaggia .sst-beach-where-section .elementor-element-0842438 {
	margin-top: 10px !important;
	padding-top: 0 !important;
}
body.sst-page-spiaggia .elementor-element-0842438 .elementor-widget-container,
body.sst-page-spiaggia .sst-beach-where-section .elementor-widget-serrara_google_map_embed .elementor-widget-container {
	margin: 0 !important;
	padding: 0 !important;
}
body.sst-page-spiaggia .elementor-element-0842438 .sst-map,
body.sst-page-spiaggia .sst-beach-where-section .elementor-widget-serrara_google_map_embed .sst-map {
	margin-top: 0 !important;
	border-radius: 28px !important;
}

.sst-nearby--carousel .sst-nearby-card {
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
}
.sst-nearby-arrow {
	width: 58px !important;
	height: 58px !important;
	border: 3px solid #ffffff !important;
	background: #052b4f !important;
	color: #ffffff !important;
	box-shadow: 0 18px 42px rgba(5,43,79,.26), 0 0 0 1px rgba(5,43,79,.08) !important;
	font-size: 0 !important;
	line-height: 1 !important;
}
.sst-nearby-arrow span {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: 100% !important;
	font-size: 42px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	transform: translateY(-2px) !important;
}
.sst-nearby-arrow:hover,
.sst-nearby-arrow:focus-visible {
	background: #0097a9 !important;
	color: #ffffff !important;
	border-color: #ffffff !important;
}
.sst-nearby-arrow[disabled],
.sst-nearby-arrow[aria-disabled="true"] {
	opacity: .42 !important;
	filter: grayscale(.12) !important;
}
@media (max-width: 640px) {
	body.sst-page-spiaggia .sst-info-box--where .sst-info-box__title,
	body.sst-page-spiaggia .elementor-element-6920626 .sst-info-box__title {
		font-size: clamp(1.45rem, 7vw, 1.95rem) !important;
	}
	body.sst-page-spiaggia .elementor-element-0842438,
	body.sst-page-spiaggia .sst-beach-where-section .elementor-widget-serrara_google_map_embed,
	body.sst-page-spiaggia .sst-beach-where-section .elementor-element-0842438 {
		margin-top: 10px !important;
	}
	.sst-nearby-arrow {
		width: 52px !important;
		height: 52px !important;
	}
	.sst-nearby-arrow span {
		font-size: 38px !important;
	}
}
