/**
 * Popup informativo "SCEGLI IL TUO SETTORE".
 * Modal leggero e autonomo (nessuna dipendenza da Bootstrap modal).
 */

/* Contenitore: nascosto finche' non viene aperto (attributo [hidden] + .is-open) */
.settori-popup {
	display: none;
}

.settori-popup.is-open {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100000;
}

/* Sfondo scuro cliccabile per chiudere */
.settori-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
}

/* Box centrale */
.settori-popup-dialog {
	position: relative;
	max-width: 560px;
	width: calc(100% - 32px);
	max-height: calc(100vh - 64px);
	overflow-y: auto;
	margin: 32px auto;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	padding: 28px 28px 32px;
}

/* Tasto di chiusura */
.settori-popup-close {
	position: absolute;
	top: 8px;
	right: 12px;
	border: 0;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	color: #8c99a1;
	cursor: pointer;
	padding: 4px 8px;
}

.settori-popup-close:hover,
.settori-popup-close:focus {
	color: #f21d2f;
}

/* Titolo e intro */
.settori-popup-title {
	margin: 0 30px 8px 0;
	font-size: 22px;
	text-transform: uppercase;
}

.settori-popup-intro {
	margin: 0 0 18px;
	color: #6b7780;
	font-size: 14px;
}

/* Lista settori */
.settori-popup-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.settori-popup-list li {
	margin: 0 0 8px;
}

.settori-popup-list a {
	display: block;
	padding: 12px 16px;
	background: #f1f3f4;
	border: 1px solid #e0e4e6;
	border-radius: 4px;
	color: #2d3a42;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.settori-popup-list a:hover,
.settori-popup-list a:focus {
	background: #8c99a1;
	color: #fff;
	outline: none;
}

/* Blocco scroll della pagina mentre il popup e' aperto */
body.settori-popup-open {
	overflow: hidden;
}

@media (max-width: 480px) {
	.settori-popup-dialog {
		padding: 24px 18px 26px;
	}

	.settori-popup-title {
		font-size: 19px;
	}
}
