.slider-section-inner {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.slider-section-content {
	/* Contenuto della sezione (testi e bottone) */
	background: transparent;
}
/* Stili personalizzati per lo slider */
.slider-section-content {
	border-radius: 0;
	box-shadow: 0 4px 32px 0 rgba(0,0,0,0.07);
	padding: 40px 30px;
	width: 100%;
	min-height: 400px;
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	height: 700px;
}

.section-slider-wrapper {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.slider-section-content::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--e-global-color-primary, rgba(0,0,0,0.4));
	opacity: 0.5;
	z-index: 1;
	pointer-events: none;
}
.slider-section-inner, .slider-section-heading, .slider-section-text, .slider-section-btn-wrap {
	position: relative;
	z-index: 2;
}
.slider-section-title {
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;
	font-size: var(--e-global-typography-primary-font-size);
	font-weight: var(--e-global-typography-primary-font-weight);
	text-transform: var(--e-global-typography-primary-text-transform);
	color: var(--e-global-color-aa5884c);
	margin-bottom: 20px;
	text-align: center;
}
.slider-section-text p {
    font-family: var( --e-global-typography-secondary-font-family ), Sans-serif;
    font-size: var( --e-global-typography-secondary-font-size );
    font-weight: var( --e-global-typography-secondary-font-weight );
    color: var(--e-global-color-aa5884c);
    text-align: center;
	display: block;
}

.slider-section-text {
margin-bottom: 20px;
}

.slider-section-btn-wrap {
	text-align: center;
}
.custom-slider-btn {
background-color: #F89C3A00;
font-family: "Le Jour Serif", Sans-serif;
font-size: 20px;
font-weight: 700;
fill: var(--e-global-color-aa5884c);
color: var(--e-global-color-aa5884c) !important;
transition-duration: 0.5s;
border-style: solid;
border-width: 2px 2px 2px 2px;
border-radius: 1px 1px 1px 1px;
padding: 12px 24px;
transition: transform 0.5s ease !important;
text-decoration: none !important;
display: inline-block;
}

.custom-slider-btn:hover {
transform: scale(1.1) !important;
}


.section-slider-wrapper {
	position: relative;
	overflow: hidden;
	min-height: 200px;
	display: block;
}
.section-slider-wrapper {
	/* Imposta l'altezza dinamica in base alla sezione attiva */
	transition: height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.section-slider-wrapper .section-slider-section.active {
	position: relative;
}
.section-slider-section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease;
	pointer-events: none;
	z-index: 1;
	height: 700px;
}
.section-slider-section.active {
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}

.section-slider-wrapper > .section-slider-arrow {
		position: absolute !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
		z-index: 3 !important;
		background: transparent !important;
		border: none !important;
		border-radius: 0 !important;
		width: 50px !important;
		height: 50px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		color: var(--e-global-color-aa5884c) !important;
		cursor: pointer !important;
		transition: all 0.3s ease !important;
		font-family: inherit !important;
		font-size: inherit !important;
		font-weight: inherit !important;
		backdrop-filter: none !important;
}
.section-slider-wrapper > .section-slider-prev {
		left: 10px !important;
}
.section-slider-wrapper > .section-slider-next {
		right: 10px !important;
}

/* Dots di navigazione (bianchi) per lo slider di sezione */
.section-slider-wrapper .em-slider-dots {
	position: absolute !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 20px !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 8px !important;
	z-index: 4 !important; /* sopra overlay (1), contenuti (2) e frecce (3) */
	pointer-events: auto !important;
}

.section-slider-wrapper .em-slider-dot {
	width: 10px !important;
	height: 10px !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.6) !important; /* puntini bianchi semi-trasparenti */
	transition: all 0.3s ease !important;
	cursor: pointer !important;
	border: none !important;
	display: block !important;
	flex-shrink: 0 !important;
}

.section-slider-wrapper .em-slider-dot.active {
	background: #ffffff !important; /* dot attivo bianco pieno */
	width: 28px !important;
	border-radius: 5px !important;
}

