/* ============================
	FONT
   ============================ */

   
@charset "utf-8";
/* CSS Document */

/* Refreshahh Light 300 */
@font-face {
	font-display: swap;
	font-family: 'Refreshahh';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/Refreshahh-Light.otf') format('opentype');
}
/* Refreshahh Light Italic 300 */
@font-face {
	font-display: swap;
	font-family: 'Refreshahh';
	font-style: italic;
	font-weight: 300;
	src: url('../fonts/Refreshahh-LightItalic.otf') format('opentype');
}
/* Refreshahh Regular 400 */
@font-face {
	font-display: swap;
	font-family: 'Refreshahh';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/Refreshahh-Regular.otf') format('opentype'),
	     url('../fonts/Refreshahh-Regular.ttf') format('truetype');
}
/* Refreshahh Regular Italic 400 */
@font-face {
	font-display: swap;
	font-family: 'Refreshahh';
	font-style: italic;
	font-weight: 400;
	src: url('../fonts/Refreshahh-RegularItalic.otf') format('opentype'),
	     url('../fonts/Refreshahh-RegularItalic.ttf') format('truetype');
}
/* Refreshahh Bold 700 */
@font-face {
	font-display: swap;
	font-family: 'Refreshahh';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/Refreshahh-Bold.otf') format('opentype'),
	     url('../fonts/Refreshahh-Bold.ttf') format('truetype');
}
/* Refreshahh Bold Italic 700 */
@font-face {
	font-display: swap;
	font-family: 'Refreshahh';
	font-style: italic;
	font-weight: 700;
	src: url('../fonts/Refreshahh-BoldItalic.otf') format('opentype'),
	     url('../fonts/Refreshahh-BoldItalic.ttf') format('truetype');
}


/* ============================
	PALETTE COLORI — SCOTTEX / SCOTTONELLE
   ============================ */

:root {
	--color-pink:         #f193b0;   /* rosa magenta — background body */
	--color-blue-dark:    #222d54;   /* blu navy — testi principali, titoli */
	--color-lime:         #f3f2c1;   /* giallo-lime — area "1 Euro = 1 Punto" */
	--color-blue-medium:  #579ac2;   /* blu medio — packaging Scottonelle */
	--color-gold:         #C9A020;   /* oro — dettagli packaging Scottonelle */
	--color-red:          #E01F1C;   /* rosso — logo Ariete / CTA */
	--color-white:        #FFFFFF;
}


/* ============================
	GENERALI
   ============================ */

body {
	font-family: 'Refreshahh', sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	color: var(--color-blue-dark);
	background-color: var(--color-pink);
	background-image: url('../img/bg.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
}
.row {
	margin-left:0px;
	margin-right:0px;
}

h1, h2 {
	color: var(--color-blue-dark);
}

a {
	text-decoration: none;
}

.text-red {
	color: var(--color-red);
}
/* ============================
	MENU
   ============================ */

.skip-to-main-content-link {
	position: absolute;
	left: -9999px;
	z-index: 999;
	padding: 1em;
	background-color: black;
	color: white;
	opacity: 0;
}
.skip-to-main-content-link:focus {
	left: 50%;
	transform: translateX(-50%);
	opacity: 1;
}

#menu {
	background-color: var(--color-white);
	border-bottom: 3px solid var(--color-pink);
	box-shadow: 0 2px 20px rgba(26, 43, 112, 0.08);
	position: sticky;
	top: 0;
	z-index: 1050;
	--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23222d54' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#logo {
	max-height: 55px;
	width: auto;
}

#menu_list {
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 0.2rem;
}

#menu_list li {
	list-style-type: none;
}

#menu_list li a {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--color-blue-dark);
	padding: 0.45rem 0.9rem;
	border-radius: 6px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

#menu_list li a:hover,
#menu_list li a.active {
	background-color: var(--color-pink);
	color: var(--color-white) !important;
	text-decoration: none !important;
}

@media (max-width: 991px) {
	#menu .navbar-collapse {
		border-top: 1px solid rgba(26, 43, 112, 0.07);
		padding: 0.5rem 0 1rem;
	}

	#menu_list {
		flex-direction: column;
		width: 100%;
	}

	#menu_list li a {
		text-align: right;
		padding: 0.75rem 1.5rem;
		border-radius: 0;
		font-size: 0.85rem;
		border-bottom: 1px solid rgba(26, 43, 112, 0.05);
	}
}

/* Icona toggle hamburger / X */
.menu-icon-x {
	display: none;
	font-size: 2rem;
	font-weight: 300;
	line-height: 1;
	color: var(--color-blue-dark);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	display: none;
}

.navbar-toggler[aria-expanded="true"] .menu-icon-x {
	display: inline-block;
}

/* ============================
	FORM
   ============================ */

   .sfondo {
   	background-color: rgba(255,255,255,.8);
   	border-radius: 20px;
   	box-shadow: 0px 6px 8px rgba(0, 0, 0, .4);
   }
#errore {
	color: var(--color-red);
	font-weight: bold;
	text-align: center;
	font-size: 24px;
}
   .form-control, .form-select {
   	height: 45px;
   	border-radius: 5px;
   	border: 1px solid #ffff;
   	color: #000000;
   }

   .form-group {
   	margin-bottom: 15px;
   }

label[for=reg], label[for=tratt_dati]  {
	display: block;
}

   label a {
   	color: inherit;
   	text-decoration: underline;
   }

   small.small {
   	font-size: 10px;
   	line-height: 9px;
   }

   
.button {
	background: linear-gradient(to bottom, var(--color-red) 0%, var(--color-red) 20%, #ad1613 100%);
	color: var(--color-white);
	border-radius:65px;
	border: 0px solid transparent;
	font-weight: bold;
	font-size: 2.2rem;
	padding: .25rem 2rem;
	width: max-content;
	max-width: 300px;
	-webkit-box-shadow: 2px 4px 8px 1px #000000;
	box-shadow: 2px 4px 8px 1px #000;
	text-decoration: none;
}
.button:hover {
	color: #ad1613;
	background: var(--color-white);
}


@media (max-width:375px) {
	.button {
		font-size: 1rem;
	}
}


#ocr {
	font-size: 1.2rem !important;
}

   @media (max-width: 575px) {
   	label {
   		font-size: .80rem;
   	}
   }

/* ============================
	MODALI
   ============================ */

.modal-content {
	border: none;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(34,45,84,.22);
}

.modal-header {
	background: var(--color-lime);
	border-bottom: none;
	padding: 1.5rem 1.75rem 1rem;
	align-items: flex-start;
}

.modal-title {
	font-size: 1.05rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--color-blue-dark);
	margin-bottom: 0;
}

.modal-body {
	background: #fff;
	padding: 1.5rem 1.75rem;
	color: var(--color-blue-dark);
	font-size: .95rem;
	line-height: 1.65;
}

.modal-footer {
	background: #fff;
	border-top: 1px solid rgba(34,45,84,.06);
	padding: 1rem 1.75rem 1.5rem;
	gap: .75rem;
}


/* ============================
	FOOTER
   ============================ */
   footer {
   	font-family: 'Refreshahh';
   	font-size: 0.8rem;
   	background-color: #F3F3F3;
   }

   footer p {
   	color:#333333;
   	font-family: 'Refreshahh';
   	font-weight: normal;
   	font-style: normal;
   	font-size: 0.8rem;
   	text-align: center;	
   }

   footer p a {
   	color:#333333;
   	text-decoration:underline;
   	font-weight: 700;
   }


/* =========================
	COOKIE BAR
	======================= */

	.cc-window {
		font-size: .85rem !important;
		line-height: 1.2em !important;
	}

	@media (max-width:767px) {
		.cc-window {
			font-size: .75rem !important;
			line-height: 1.1em !important;
		}
	}


/* ============================
	HOME — RACCOLTA PUNTI
   ============================ */

/* ── Scroll reveal ── */
.reveal {
	opacity: 0;
	transition: opacity .65s ease, transform .65s ease;
}
.reveal--up    { transform: translateY(30px); }
.reveal--left  { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px); }
.reveal.visible {
	opacity: 1;
	transform: none;
}

/* ── HERO ── */

.raccolta-title {
	color: var(--color-blue-dark);
	font-size: clamp(3.4rem, 9.5vw, 6.2rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .01em;
	line-height: .9;
	margin-bottom: .4rem;
	text-shadow: #fff 5px 5px;
}

.hero-dates {
	color: var(--color-blue-dark);
	font-size: clamp(1.05rem, 2.6vw, 1.5rem);
	font-weight: 700;
	margin-bottom: .3rem;
}

.hero-desc {
	color: var(--color-blue-dark);
	font-size: clamp(.95rem, 2vw, 1.15rem);
	margin-bottom: 0;
}

/* Hero CTA buttons */
.hero-btn {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue-medium) 100%);
	color: #fff;
	font-weight: 700;
	font-size: clamp(.9rem, 1.6vw, 1.05rem);
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: .7rem 1.8rem;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(34,45,84,.28);
	transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.hero-btn:hover {
	background: linear-gradient(135deg, var(--color-blue-medium) 0%, var(--color-blue-dark) 100%);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(224,31,28,.35);
}

.hero-btn-outline {
	display: inline-flex;
	align-items: center;
	background: transparent;
	color: var(--color-blue-dark);
	font-weight: 700;
	font-size: clamp(.9rem, 1.6vw, 1.05rem);
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: .65rem 1.8rem;
	border-radius: 50px;
	text-decoration: none;
	border: 2px solid var(--color-blue-dark);
	transition: background .2s ease, color .2s ease, transform .2s ease;
}
.hero-btn-outline:hover {
	background: var(--color-blue-dark);
	color: #fff;
	transform: translateY(-2px);
}

/* Etichetta PNG sovrimposta sull'ovale */
.euro-overlay {
	position: absolute;
	top: 30%;
	left: -20%;
	z-index: 2;
	width: 280px;
	height: auto;
	transform: rotate(-11deg);
	transition: transform .35s ease;
}
.euro-overlay:hover {
	transform: rotate(-5deg) scale(1.08);
}

/* Ovale bianco prodotti */
.products-oval-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5rem 2.5rem;
}
.products-oval-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	background: #fff;
	border-radius: 50%;
	z-index: 0;
	box-shadow: 0 10px 40px rgba(34,45,84,.12);
}
.products-oval-wrap img:not(.euro-overlay) {
	position: relative;
	z-index: 1;
	max-height: 380px;
	width: auto;
	filter: drop-shadow(0 6px 16px rgba(0,0,0,.18));
}

@media (max-width: 575px) {
	.euro-overlay { width: 200px; top:100%; left: 50%; transform: translate(-50%,-50%);}
	.products-oval-wrap { padding: 2.5rem 2rem; }
	.products-oval-wrap img:not(.euro-overlay) { max-height: 240px; }
}

/* ── Titoli sezione (h2) — stessa DNA dell'hero, ridotta ── */
.section-title {
	color: var(--color-blue-dark);
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
	line-height: .95;
	margin-bottom: 0;
	text-shadow: #fff 5px 5px;
}
.section-title::after {
	content: '';
	display: block;
	width: 3.5rem;
	height: 4px;
	background: var(--color-blue-dark);
	border-radius: 2px;
	margin: .65rem auto 0;
}

.section-subtitle {
	color: var(--color-blue-dark);
	font-size: clamp(.9rem, 1.8vw, 1rem);
	opacity: .72;
	margin-bottom: 0;
}

/* ── Sezione premi ── */
.prizes-bg {
	background: var(--color-lime);
	border-radius: 2rem;
	box-shadow: inset 0 2px 20px rgba(34,45,84,.04);
}

.prize-card {
	background: #fff;
	border-radius: 1.25rem;
	box-shadow: 0 4px 18px rgba(34,45,84,.10);
	transition: transform .28s ease, box-shadow .28s ease;
}
.prize-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 10px 28px rgba(34,45,84,.18);
}

.pts-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 50%;
	background: var(--color-blue-dark);
	color: #fff;
	font-weight: 700;
	font-size: 1.15rem;
	box-shadow: 0 2px 8px rgba(0,0,0,.22);
	transition: transform .2s ease;
}
.prize-card:hover .pts-badge { transform: scale(1.12); }

.prize-name {
	font-weight: 700;
	font-size: 1.5rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--color-blue-dark);
	margin: .5rem 0 0;
}
.prize-pts {
	font-size: .75rem;
	color: var(--color-blue-dark);
	opacity: .65;
	margin: 0;
}

.brand-logo  { max-height: 56px; width: auto; }
.ariete-logo { max-height: 36px; width: auto; }

/* ── Step cards ── */
.step-card {
	background: #fff;
	border-radius: 1.5rem;
	padding: 2.4rem 1.5rem 1.8rem;
	text-align: center;
	box-shadow: 0 4px 22px rgba(34,45,84,.09);
	transition: transform .28s ease, box-shadow .28s ease;
	position: relative;
}
.step-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 12px 32px rgba(34,45,84,.15);
}

.step-num {
	position: absolute;
	top: -1.1rem;
	left: 10%;
	transform: translateX(-50%);
	width: 4.5rem;
	height: 4.5rem;
	background: var(--color-blue-medium);
	color: #fff;
	border-radius: 50%;
	font-size: 4rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 3px 10px rgba(224,31,28,.35);
}

.step-icon {
	font-size: 3rem;
	color: var(--color-blue-dark);
	line-height: 1;
	margin-bottom: 1rem;
}
.step-icon--wa { color: #25D366; }

.step-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-blue-dark);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: .75rem;
}

.step-text {
	font-size: 1.1rem;
	color: var(--color-blue-dark);
	line-height: 1.55;
	margin-bottom: 0;
}
.step-hl {
	color: var(--color-red);
	font-weight: 700;
}

/* ── WhatsApp CTA ── */
.wa-btn {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	background: #25D366;
	color: #fff !important;
	font-weight: 700;
	font-size: 1.3rem;
	border-radius: 50px;
	padding: .7rem 2rem;
	text-decoration: none !important;
	box-shadow: 0 4px 14px rgba(37,211,102,.40);
	transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
	letter-spacing: .02em;
}
.wa-btn:hover {
	background: #128C7E;
	transform: scale(1.04);
	box-shadow: 0 6px 20px rgba(18,140,126,.45);
}

/* ── CTA PARTECIPA ── */
.cta-partecipa {
	display: inline-block;
	background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue-medium) 100%);
	color: #fff;
	font-weight: 700;
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	text-transform: uppercase;
	letter-spacing: .1em;
	padding: .75rem 3.5rem;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 6px 24px rgba(224,31,28,.38);
	transition: transform .25s ease, box-shadow .25s ease;
}
.cta-partecipa:hover {
	color: #fff;
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 10px 32px rgba(224,31,28,.50);
}

/* ── Pulsante premio (variante ridotta di cta-partecipa) ── */
.btn-premio {
	display: inline-block;
	background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue-medium) 100%);
	color: #fff;
	font-weight: 700;
	font-size: clamp(.85rem, 1.5vw, .95rem);
	text-transform: uppercase;
	letter-spacing: .08em;
	padding: .55rem 1.8rem;
	border-radius: 50px;
	border: none;
	box-shadow: 0 4px 14px rgba(224,31,28,.28);
	transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
	cursor: pointer;
}
.btn-premio:hover:not(:disabled) {
	color: #fff;
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 6px 20px rgba(224,31,28,.38);
}
.btn-premio:disabled {
	opacity: .38;
	cursor: not-allowed;
	pointer-events: none;
}

/* ── Fine print legale ── */
.fine-print {
	font-size: .72rem;
	line-height: 1.45;
	color: rgba(34,45,84,.60);
}

/* ── Animate.css delays (hero, above-fold) ── */
.delay-1 { animation-delay: .15s; animation-fill-mode: both; }
.delay-2 { animation-delay: .30s; animation-fill-mode: both; }
.delay-3 { animation-delay: .45s; animation-fill-mode: both; }
.delay-4 { animation-delay: .60s; animation-fill-mode: both; }


/* ============================
	DASHBOARD
   ============================ */

/* ── Welcome banner ── */
.dash-welcome {
	background: var(--color-lime);
	border-radius: 2rem;
	padding: 2.5rem 2rem;
}

.dash-greeting {
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
	line-height: .95;
	color: var(--color-blue-dark);
	text-shadow: #fff 5px 5px;
	margin-bottom: .3rem;
}

.dash-greeting-sub {
	font-size: clamp(.9rem, 1.8vw, 1.1rem);
	color: var(--color-blue-dark);
	opacity: .75;
	margin-bottom: 0;
}

/* Cerchio punti */
.dash-ring-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.dash-ring {
	position: relative;
	width: 148px;
	height: 148px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: conic-gradient(
		var(--color-blue-medium) calc(var(--pct, 0) * 1%),
		rgba(34,45,84,.12) 0
	);
}
.dash-ring::after {
	content: '';
	position: absolute;
	inset: 14px;
	background: var(--color-lime);
	border-radius: 50%;
}
.dash-ring-inner {
	position: relative;
	z-index: 1;
	text-align: center;
}
.dash-ring-num {
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-blue-dark);
	line-height: 1;
	display: block;
}
.dash-ring-label {
	font-size: .65rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--color-blue-dark);
	opacity: .65;
}

.dash-ring--prizes {
	background: conic-gradient(
		var(--color-red) calc(var(--pct, 0) * 1%),
		rgba(34,45,84,.12) 0
	);
}
.dash-ring-num--prizes {
	color: var(--color-red);
}

.dash-next-prize {
	font-size: .8rem;
	font-weight: 700;
	color: var(--color-blue-dark);
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-bottom: .4rem;
}

.pts-progress {
	height: 8px;
	border-radius: 50px;
	background: rgba(34,45,84,.12);
	overflow: hidden;
}
.pts-progress-bar {
	height: 100%;
	border-radius: 50px;
	background: linear-gradient(90deg, var(--color-blue-medium), #7ab8d9);
	transition: width 1s ease .3s;
}

/* ── Stat cards ── */
.dash-stat {
	background: #fff;
	border-radius: 1.25rem;
	padding: 1.5rem 1.25rem;
	box-shadow: 0 4px 18px rgba(34,45,84,.09);
	text-align: center;
	transition: transform .25s ease, box-shadow .25s ease;
}
.dash-stat:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 28px rgba(34,45,84,.16);
}
.dash-stat-icon {
	font-size: 2.2rem;
	color: var(--color-blue-dark);
	line-height: 1;
	margin-bottom: .5rem;
}
.dash-stat-icon--red   { color: var(--color-blue-medium); }
.dash-stat-icon--green { color: #25D366; }
.dash-stat-num {
	font-size: clamp(2rem, 4vw, 2.6rem);
	font-weight: 700;
	color: var(--color-blue-dark);
	line-height: 1;
	margin: 0;
}
.dash-stat-label {
	font-size: .7rem;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--color-blue-dark);
	opacity: .6;
	margin: .35rem 0 0;
}

/* ── Content cards ── */
.dash-card {
	background: #fff;
	border-radius: 1.5rem;
	box-shadow: 0 4px 22px rgba(34,45,84,.08);
	padding: 2rem;
	height: 100%;
}

.dash-card-title {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--color-blue-dark);
	text-shadow: #fff 3px 3px;
	margin-bottom: 1.5rem;
	padding-bottom: .75rem;
	border-bottom: 3px solid var(--color-lime);
}

/* Dati personali grid */
.dash-data-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 1.5rem;
}
@media (max-width: 575px) {
	.dash-data-grid { grid-template-columns: 1fr; }
}

.dash-data-label {
	font-size: .68rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--color-blue-dark);
	opacity: .5;
	margin-bottom: .1rem;
}
.dash-data-value {
	font-size: .95rem;
	font-weight: 700;
	color: var(--color-blue-dark);
	margin-bottom: 0;
	word-break: break-word;
}

/* Prossimo premio mini-card */
.next-prize-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: var(--color-lime);
	border-radius: 1rem;
	padding: 1rem 1.25rem;
	margin-bottom: .75rem;
	transition: transform .2s ease;
	cursor: default;
}
.next-prize-card.prize-unlocked { cursor: pointer; }
.next-prize-card.prize-unlocked:hover { transform: translateX(4px); }
.next-prize-card.prize-locked:hover  { transform: none; cursor: not-allowed; }
.next-prize-card.prize-selected {
	outline: 2px solid var(--color-blue-medium);
	background: rgba(87,154,194,.12);
}
.next-prize-card.prize-selected .prize-radio-icon {
	color: var(--color-blue-medium);
	opacity: 1;
}
.prize-radio-icon {
	font-size: 1.3rem;
	color: var(--color-blue-dark);
	opacity: .35;
	flex-shrink: 0;
	transition: color .2s ease, opacity .2s ease;
}

.next-prize-thumb {
	width: 60px;
	height: 60px;
	object-fit: contain;
	flex-shrink: 0;
}
.next-prize-info { flex: 1; min-width: 0; }
.next-prize-name {
	font-weight: 700;
	font-size: .85rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--color-blue-dark);
	margin-bottom: .15rem;
}
.next-prize-pts {
	font-size: .75rem;
	color: var(--color-blue-dark);
	opacity: .65;
	margin: 0;
}
.next-prize-pts strong { color: var(--color-red); opacity: 1; }

/* ── Tabelle storico ── */
.dash-table-wrap {
	overflow-x: auto;
	border-radius: 1rem;
}
.dash-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	min-width: 560px;
}
.dash-table thead th {
	font-size: .68rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--color-blue-dark);
	opacity: .55;
	padding: .6rem 1rem;
	border-bottom: 2px solid rgba(34,45,84,.07);
	font-weight: 700;
	white-space: nowrap;
}
.dash-table tbody tr {
	transition: background .15s ease;
}
.dash-table tbody tr:hover { background: rgba(243,242,193,.45); }
.dash-table tbody td {
	padding: .8rem 1rem;
	font-size: .875rem;
	color: var(--color-blue-dark);
	border-bottom: 1px solid rgba(34,45,84,.05);
	vertical-align: middle;
}
.dash-table tbody tr:last-child td { border-bottom: none; }

/* Stato pill */
.status-pill {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	padding: .22rem .75rem;
	border-radius: 50px;
	white-space: nowrap;
}
.status-pill--ok   { background: rgba(37,211,102,.15); color: #0d7a4e; }
.status-pill--wait { background: rgba(87,154,194,.15);  color: var(--color-blue-medium); }
.status-pill--proc { background: rgba(201,160,32,.18);  color: #8a6c00; }
.status-pill--err  { background: rgba(224,31,28,.12);   color: var(--color-red); }

/* Empty state */
.dash-empty {
	text-align: center;
	padding: 2.5rem 1rem;
	color: var(--color-blue-dark);
	opacity: .45;
	font-size: .9rem;
}
.dash-empty i { font-size: 2.5rem; display: block; margin-bottom: .5rem; }
