/**
 * eBoots — Home (front-page.php)
 * ------------------------------
 * Stile specifico della homepage. Caricato SOLO sulla home (is_front_page()).
 * Dipende dai token (tokens.css) e dalle utility base (base.css) della PR #5.
 * Mobile-first; in fondo una media query desktop.
 */

.eb-home {
	background: var(--bg);
	color: var(--txt);
	font-family: var(--font-ui);
}

/* ========================================================================
   HERO — carosello scroll-snap
   ======================================================================== */
.eb-hero {
	position: relative;
}

/* Track: scroll orizzontale con snap. 1 slide visibile per volta su mobile. */
.eb-hero__track {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
}
.eb-hero__track::-webkit-scrollbar {
	display: none; /* WebKit */
}

.eb-hero__slide {
	position: relative;
	flex: 0 0 100%;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	min-height: 78vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

/* Foto reale della slide (Customizer): copre lo slot, sotto al contenuto.
   Sostituisce il glow .eb-hero__bg quando impostata (vedi front-page.php). */
.eb-hero__photo {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* Scrim sulla foto: stessa sfumatura del glow, stacca il testo dallo sfondo. */
.eb-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 45%, transparent 75%);
}

/* Sfondo placeholder: superficie scura + glow radiale volt.
   Mostrato solo quando la slide non ha una foto impostata. */
.eb-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(120% 80% at 70% 15%, rgba(199, 247, 63, 0.18), transparent 60%),
		radial-gradient(90% 60% at 20% 90%, rgba(43, 230, 163, 0.10), transparent 55%),
		var(--surface);
}
/* Sfumatura in basso per staccare il testo dallo sfondo. */
.eb-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 45%, transparent 75%);
}

.eb-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: var(--space-6) var(--space-5) var(--space-7);
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.eb-hero__kicker {
	margin: 0;
	font-family: var(--font-ui);
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--volt);
}

.eb-hero__title {
	margin: 0;
	font-family: var(--font-d);
	font-weight: 800;
	font-size: 2.875rem; /* ~46px mobile */
	line-height: 0.98;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--txt);
}
.eb-hero__title-line {
	display: block;
}
.eb-hero__title-accent {
	color: var(--volt);
}
/* Slide "BUILT FOR / SPEED": titolo in corsivo.
   NB: della Saira Condensed non è caricato il file italic → corsivo sintetico
   (faux-italic) per ora. Se servirà il vero corsivo, aggiungere il woff2 italic. */
.eb-hero__title--italic {
	font-style: italic;
}

.eb-hero__sub {
	margin: 0;
	max-width: 34ch;
	font-family: var(--font-ui);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.45;
	color: var(--muted);
}

/* CTA pill */
.eb-hero__cta {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: var(--space-2);
	padding: 0.85rem 1.6rem;
	background: var(--volt);
	color: var(--bg);
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: var(--radius-pill);
	transition: transform 0.15s ease, filter 0.15s ease;
}
.eb-hero__cta:hover,
.eb-hero__cta:focus-visible {
	filter: brightness(1.08);
	transform: translateY(-1px);
	color: var(--bg);
}

/* Puntini indicatori */
.eb-hero__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: var(--space-4);
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: var(--space-2);
}
.eb-hero__dot {
	display: inline-block; /* è un <a>: senza display, width/height non si applicano */
	width: 8px;
	height: 8px;
	border-radius: var(--radius-pill);
	background: var(--line-strong);
	transition: width 0.2s ease, background 0.2s ease;
}
.eb-hero__dot.is-active {
	width: 22px;
	background: var(--volt);
}
.eb-hero__dot:focus-visible {
	outline: 2px solid var(--volt);
	outline-offset: 3px;
}

/* ========================================================================
   SOCIAL PROOF
   ======================================================================== */
.eb-socialproof {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--space-3);
	padding: var(--space-5);
	background: var(--surface);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.eb-socialproof__avatars {
	display: flex;
}
.eb-socialproof__avatar {
	width: 28px;
	height: 28px;
	border-radius: var(--radius-pill);
	background: linear-gradient(135deg, var(--surface-2), var(--line-strong));
	border: 2px solid var(--bg);
	margin-left: -8px;
	overflow: hidden; /* la foto (se c'è) resta nel cerchio */
}
.eb-socialproof__avatar-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}
.eb-socialproof__avatar:first-child {
	margin-left: 0;
}
.eb-socialproof__text {
	margin: 0;
	font-family: var(--font-ui);
	font-size: 0.9rem;
	color: var(--muted);
}
.eb-socialproof__text strong {
	color: var(--txt);
	font-weight: 700;
}

/* ========================================================================
   SCEGLI LA TUA LINEA — card linea → archivio attributo
   ======================================================================== */
.eb-lines {
	padding: var(--space-7) var(--space-5);
	background: var(--bg);
}
.eb-lines__title {
	margin: 0 0 var(--space-5);
	font-family: var(--font-d);
	font-weight: 800;
	font-size: 2.25rem;
	line-height: 0.98;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--txt);
}
.eb-lines__title-line {
	display: block;
}
.eb-lines__title-accent {
	color: var(--volt);
}

.eb-lines__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-3);
}

.eb-line-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--space-4);
	min-height: 96px;
	padding: var(--space-4) var(--space-5);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	overflow: hidden;
	text-decoration: none;
	transition: border-color 0.15s ease, transform 0.15s ease;
}
.eb-line-card:hover,
.eb-line-card:focus-visible {
	border-color: var(--line-strong);
	transform: translateY(-2px);
}
.eb-line-card:focus-visible {
	outline: 2px solid var(--volt);
	outline-offset: 3px;
}
/* Glow placeholder (mostrato quando il termine pa_modello non ha immagine). */
.eb-line-card__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: radial-gradient(120% 140% at 100% 0%, rgba(199, 247, 63, 0.14), transparent 55%);
}
/* Foto della linea (immagine del termine pa_modello): copre la card. */
.eb-line-card__img {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* Scrim sulla foto: scurisce da sinistra così nome/tagline restano leggibili. */
.eb-line-card__bg--photo {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.12) 100%);
}
.eb-line-card__body {
	position: relative;
	z-index: 1;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
}
.eb-line-card__name {
	font-family: var(--font-d);
	font-weight: 800;
	font-size: 1.75rem;
	line-height: 1;
	text-transform: uppercase;
	color: var(--txt);
}
.eb-line-card__tagline {
	font-family: var(--font-ui);
	font-style: italic;
	font-size: 0.9rem;
	color: var(--volt);
}
.eb-line-card__arrow {
	position: relative;
	z-index: 1;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--muted);
	transition: color 0.15s ease, transform 0.15s ease;
}
.eb-line-card:hover .eb-line-card__arrow,
.eb-line-card:focus-visible .eb-line-card__arrow {
	color: var(--volt);
	transform: translateX(3px);
}

@media (min-width: 1024px) {
	.eb-lines {
		/* stesso gutter di news/players/offers/faq → bordo sinistro unico (box 1200) */
		max-width: none;
		margin: 0;
		padding: var(--space-8) max(var(--space-8), calc((100% - 1200px) / 2));
	}
	.eb-lines__title {
		font-size: 3.5rem;
		margin-bottom: var(--space-6);
	}
	.eb-lines__grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-4);
	}
	.eb-line-card {
		min-height: 140px;
	}
	.eb-line-card__name {
		font-size: 2.25rem;
	}
}

/* ========================================================================
   NOVITÀ APPENA ARRIVATE — carosello prodotti (riusa .eb-card)
   ======================================================================== */
.eb-news {
	/* gutter orizzontale definito QUI (sezione): head e track lo ereditano e il
	   track — essendo lo scroll container — taglia la 4ª card al bordo (no peek). */
	padding: var(--space-7) var(--space-5);
	background: var(--bg);
}
.eb-news__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--space-4);
	margin-bottom: var(--space-5);
}
.eb-news__title {
	margin: 0;
	font-family: var(--font-d);
	font-weight: 800;
	font-size: 2rem;
	line-height: 0.98;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--txt);
}
.eb-news__title-line {
	display: block;
}
.eb-news__title-accent {
	color: var(--volt);
}
.eb-news__seeall {
	flex: 0 0 auto;
	font-family: var(--font-ui);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--volt);
	text-decoration: none;
	white-space: nowrap;
}
.eb-news__seeall:hover {
	color: var(--txt);
}

.eb-news__track {
	display: flex;
	gap: var(--space-3);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: var(--space-2);
}
.eb-news__track::-webkit-scrollbar {
	display: none;
}
.eb-news__item {
	/* stessa grandezza delle card "I più venduti" (.eb-trend__card):
	   ~2.4 card visibili con peek che invita allo scroll */
	flex: 0 0 42%;
	scroll-snap-align: start;
}
.eb-news__empty {
	margin: 0;
	font-family: var(--font-ui);
	color: var(--muted);
}

/* ========================================================================
   TRENDING QUESTA SETTIMANA — carosello card rank-a-icone (sketch 015)
   ======================================================================== */
.eb-trend {
	padding: var(--space-7) var(--space-5);
	background: var(--bg);
}
.eb-trend__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--space-4);
	margin-bottom: var(--space-5);
}
.eb-trend__title {
	margin: 0;
	font-family: var(--font-d);
	font-weight: 800;
	font-size: 2rem;
	line-height: 0.98;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--txt);
}
.eb-trend__title-line { display: block; }
.eb-trend__title-accent { color: var(--volt); }
.eb-trend__seeall {
	flex: 0 0 auto;
	font-family: var(--font-ui);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--volt);
	text-decoration: none;
	white-space: nowrap;
}
.eb-trend__seeall:hover { color: var(--txt); }

.eb-trend__track {
	display: flex;
	gap: var(--space-3);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: var(--space-2);
}
.eb-trend__track::-webkit-scrollbar { display: none; }

.eb-trend__card {
	position: relative; /* ancora del badge rank (ora sopra la foto) */
	flex: 0 0 42%; /* ~2.4 card visibili: peek che invita allo scroll (mobile-first) */
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden; /* foto full-bleed contenuta nei raggi della card */
	text-decoration: none;
	color: var(--txt);
	transition: border-color 0.15s ease;
}
.eb-trend__card:hover { border-color: var(--line-strong); }

/* Foto full-bleed come la card condivisa (.eb-card__media in base.css): prima
   era contain dentro il padding card e la foto bianca "galleggiava" in una
   cornice nera, diversa dalle card di Novità appena arrivate. */
.eb-trend__media {
	position: relative;
	aspect-ratio: 1 / 0.86;
	background: var(--surface-2);
	margin-bottom: var(--space-3);
}
.eb-trend__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.eb-trend__rank {
	position: absolute;
	top: 8px;
	left: 8px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	z-index: 2;
	/* chip scura: senza più il padding nero sotto, il rank poggia sulla foto chiara */
	background: rgba(0, 0, 0, 0.82);
	border-radius: var(--radius-pill);
	padding: 5px 10px;
}
.eb-trend__rank svg { width: 18px; height: 18px; }
.eb-trend__rank-n {
	font-family: var(--font-d);
	font-weight: 800;
	font-size: 1.05rem;
	line-height: 1;
	color: var(--txt);
}
.eb-trend__rank--1 svg,
.eb-trend__rank--2 svg { color: var(--volt); }
.eb-trend__rank--n svg { color: var(--muted); }

/* Testo come le card di "Novità appena arrivate" (.eb-card__brand/__title in
   base.css): brand eyebrow muted, nome in chiaro troncato a 2 righe. */
.eb-trend__name {
	display: block;
	font-family: var(--font-ui);
	line-height: 1.25;
	margin-bottom: var(--space-2);
	padding-inline: var(--space-3); /* il padding card non c'è più (foto full-bleed) */
}
.eb-trend__brand {
	display: block;
	font-weight: 600;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}
.eb-trend__model {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--txt);
}
.eb-trend__price {
	margin-top: auto;
	padding: 0 var(--space-3) var(--space-3);
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--txt);
}
.eb-trend__price del { color: var(--muted); font-weight: 400; margin-right: 4px; }
.eb-trend__price ins { text-decoration: none; }

.eb-trend__dots {
	display: flex;
	justify-content: center;
	gap: 7px;
	margin-top: var(--space-4);
	min-height: 5px;
}
.eb-trend__dot {
	width: 18px;
	height: 5px;
	border-radius: 99px;
	background: var(--line-strong);
	transition: background 0.2s ease, width 0.2s ease;
}
.eb-trend__dot.is-active { background: var(--volt); width: 26px; }

@media (min-width: 640px) {
	.eb-trend__card,
	.eb-news__item { flex-basis: 30%; } /* tablet: ~3.3 card */
}

@media (min-width: 1024px) {
	.eb-news,
	.eb-trend {
		/* gutter che centra il contenuto entro 1200px senza wrapper */
		padding-block: var(--space-8);
		padding-inline: max(var(--space-8), calc((100% - 1200px) / 2));
	}
	.eb-news__title,
	.eb-trend__title {
		font-size: 3rem;
	}
	.eb-news__track {
		padding: 0 0 var(--space-2);
		gap: var(--space-4);
	}
	.eb-news__item {
		flex-basis: calc((100% - 4 * var(--space-4)) / 5); /* esattamente 5 card, come il trending */
	}
	.eb-trend__track {
		gap: var(--space-4);
	}
	.eb-trend__card {
		flex-basis: calc((100% - 4 * var(--space-4)) / 5); /* esattamente 5 card */
	}
}

/* ========================================================================
   COSA INDOSSANO I PLAYERS — spostato in assets/css/players.css
   (parte condivisa templates/parts/players-section.php, riusata anche sugli
   archivi prodotto). Vedi inc/enqueue.php.
   ======================================================================== */

/* ========================================================================
   TRUST BAR — ticker continuo (marquee CSS)
   I pilastri sono duplicati in PHP; il track scorre di -50% in loop.
   Mai troncamento: gli item si dimensionano sul contenuto e scorrono.
   ======================================================================== */
.eb-trust {
	background: var(--surface);
	border-block: 1px solid var(--line);
	overflow: hidden;
}
.eb-trust__viewport {
	display: flex;
	overflow: hidden;
}
.eb-trust__track {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	padding-block: var(--space-4);
	/* 52s: una metà (2 set) è ~2× più lunga di prima → stessa andatura percepita */
	animation: eb-trust-scroll 52s linear infinite;
}
.eb-trust:hover .eb-trust__track {
	animation-play-state: paused; /* pausa per leggere/cliccare con calma */
}
@keyframes eb-trust-scroll {
	to { transform: translateX(-50%); }
}
/* il blocco duplicato non è un contenitore: i suoi item entrano nel flex del track */
.eb-trust__dup {
	display: contents;
}
.eb-trust__item {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding-inline: var(--space-5);
	white-space: nowrap; /* niente wrap: scorre, non tronca */
}
/* pallino separatore volt prima di ogni pilastro */
.eb-trust__item::before {
	content: "";
	flex: 0 0 auto;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--volt);
	margin-right: var(--space-2);
}
.eb-trust__ico {
	flex: 0 0 auto;
	display: inline-flex;
	color: var(--volt);
}
.eb-trust__title {
	font-family: var(--font-d);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--txt);
}
.eb-trust__sub {
	font-family: var(--font-ui);
	font-size: 0.8rem;
	color: var(--muted);
}

/* ========================================================================
   BANNER OFFERTE — split editoriale (immagine + testo) verso "Sezione Offerte"
   ======================================================================== */
.eb-offers {
	padding: var(--space-6) var(--space-5) var(--space-7);
	background: var(--bg);
}
.eb-offers__banner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr; /* mobile: immagine sopra, testo sotto */
	max-width: 1200px;
	margin: 0 auto;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--surface);
	text-decoration: none;
	transition: border-color 0.15s ease, transform 0.15s ease;
}
.eb-offers__banner:hover,
.eb-offers__banner:focus-visible {
	border-color: var(--line-strong);
	transform: translateY(-2px);
}
.eb-offers__banner:focus-visible {
	outline: 2px solid var(--volt);
	outline-offset: 3px;
}
.eb-offers__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background:
		radial-gradient(110% 110% at 70% 20%, rgba(199, 247, 63, 0.26), transparent 55%),
		radial-gradient(90% 90% at 10% 100%, rgba(43, 230, 163, 0.16), transparent 55%),
		#0c0c0c;
	overflow: hidden;
}
/* foto prodotto: riempie il riquadro, immune all'img{height:auto} di Blocksy */
.eb-offers__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	display: block;
}
.eb-offers__img--placeholder {
	position: absolute;
	inset: 0;
}
.eb-offers__tag {
	position: absolute;
	right: var(--space-3);
	bottom: var(--space-2);
	font-family: var(--font-d);
	font-weight: 800;
	font-size: 0.72rem;
	letter-spacing: 0.3em;
	color: rgba(255, 255, 255, 0.28);
}
.eb-offers__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-3);
	padding: var(--space-6) var(--space-5);
}
.eb-offers__kicker {
	font-family: var(--font-ui);
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--volt);
}
.eb-offers__title {
	display: flex;
	flex-direction: column;
	font-family: var(--font-d);
	font-weight: 800;
	font-size: 2.875rem;
	line-height: 0.92;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--txt);
}
.eb-offers__title-line {
	display: block;
}
.eb-offers__title-accent {
	color: var(--volt);
}
.eb-offers__sub {
	margin: 0;
	max-width: 38ch;
	font-family: var(--font-ui);
	font-size: 1rem;
	line-height: 1.45;
	color: var(--muted);
}
.eb-offers__cta {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	margin-top: var(--space-2);
	padding: 0.85rem 1.6rem;
	background: var(--volt);
	color: var(--bg);
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: var(--radius-pill);
	transition: filter 0.15s ease, transform 0.15s ease;
}
.eb-offers__banner:hover .eb-offers__cta,
.eb-offers__banner:focus-visible .eb-offers__cta {
	filter: brightness(1.08);
}

@media (min-width: 1024px) {
	.eb-trust__item {
		padding-inline: var(--space-6);
	}
	.eb-trust__title {
		font-size: 1.05rem;
	}
	.eb-trust__sub {
		font-size: 0.85rem;
	}

	.eb-offers {
		padding: var(--space-7) var(--space-8) var(--space-8);
	}
	.eb-offers__banner {
		grid-template-columns: 1.1fr 1fr; /* desktop: immagine a sx, testo a dx */
		align-items: stretch;
	}
	.eb-offers__media {
		aspect-ratio: auto; /* riempie l'altezza del testo accanto */
	}
	.eb-offers__body {
		justify-content: center;
		padding: var(--space-8) var(--space-7);
	}
	.eb-offers__title {
		font-size: 4.5rem;
	}
	.eb-offers__sub {
		font-size: 1.15rem;
	}
}

/* Ticker e banner rispettano chi preferisce meno animazioni */
@media (prefers-reduced-motion: reduce) {
	/* niente movimento: i pilastri vanno a capo centrati e restano tutti leggibili */
	.eb-trust__track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		gap: var(--space-3) 0;
	}
	.eb-trust__dup {
		display: none; /* mostra solo il set canonico, niente copie del ticker */
	}
}

/* ========================================================================
   FAQ — accordion single-open (CPT eboots_faq)
   Righe minimal, toggle +/−, domanda attiva in volt. Larghezza contenuta
   per leggibilità. Il pannello chiuso usa l'attributo [hidden] (gestito da JS);
   senza JS resta visibile (vedi <noscript> nel template).
   ======================================================================== */
.eb-faq {
	padding: var(--space-7) var(--space-5) var(--space-8);
	background: var(--bg);
}
.eb-faq__head {
	max-width: 820px;
	margin: 0 auto var(--space-5);
}
.eb-faq__kicker {
	font-family: var(--font-ui);
	font-weight: 600;
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--volt);
}
.eb-faq__title {
	margin: var(--space-2) 0 0;
	font-family: var(--font-d);
	font-weight: 800;
	font-size: 2.25rem;
	line-height: 0.95;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--txt);
}
.eb-faq__title-line {
	display: block;
}
.eb-faq__title-accent {
	color: var(--volt);
}

.eb-faq__list {
	max-width: 820px;
	margin: 0 auto;
	border-top: 1px solid var(--line);
}
.eb-faq__item {
	border-bottom: 1px solid var(--line);
}
/* l'h3 avvolge il button: azzera gli stili di heading */
.eb-faq__q-head {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}
.eb-faq__q {
	width: 100%;
	text-align: left;
	background: none;
	border: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
	padding: var(--space-4) var(--space-1);
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.3;
	color: var(--txt);
	transition: color 0.15s ease;
}
.eb-faq__q:hover {
	color: var(--volt);
}
.eb-faq__q:focus-visible {
	outline: 2px solid var(--volt);
	outline-offset: 3px;
}
.eb-faq__item.is-open .eb-faq__q {
	color: var(--volt);
}
.eb-faq__q-text {
	min-width: 0; /* permette il wrap di domande lunghe */
}
/* toggle +/− : la barra verticale sparisce quando aperto → diventa "−" */
.eb-faq__pm {
	flex: 0 0 auto;
	position: relative;
	width: 18px;
	height: 18px;
}
.eb-faq__pm::before,
.eb-faq__pm::after {
	content: "";
	position: absolute;
	background: currentColor; /* eredita il colore del button (volt su hover/open) */
	border-radius: 2px;
}
.eb-faq__pm::before {
	top: 8px;
	left: 0;
	width: 18px;
	height: 2px;
}
.eb-faq__pm::after {
	left: 8px;
	top: 0;
	width: 2px;
	height: 18px;
	transition: transform 0.2s ease;
}
.eb-faq__item.is-open .eb-faq__pm::after {
	transform: scaleY(0);
}

/* il pannello chiuso è [hidden] (display:none); da aperto fa un reveal morbido */
.eb-faq__a-inner {
	padding: 0 var(--space-1) var(--space-4);
	font-family: var(--font-ui);
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--muted);
	animation: eb-faq-reveal 0.25s ease;
}
.eb-faq__a-inner > :first-child {
	margin-top: 0;
}
.eb-faq__a-inner > :last-child {
	margin-bottom: 0;
}
.eb-faq__a-inner a {
	color: var(--volt);
	text-decoration: underline;
}
@keyframes eb-faq-reveal {
	from { opacity: 0; transform: translateY(-4px); }
	to   { opacity: 1; transform: none; }
}

.eb-faq__cta {
	max-width: 820px;
	margin: var(--space-6) auto 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-3);
}
.eb-faq__cta-txt {
	margin: 0;
	font-family: var(--font-ui);
	font-size: 0.95rem;
	color: var(--muted);
}
.eb-faq__cta-btn {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding: 0.85rem 1.6rem;
	background: var(--volt);
	color: var(--bg);
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: var(--radius-pill);
	transition: filter 0.15s ease, transform 0.15s ease;
}
.eb-faq__cta-btn:hover,
.eb-faq__cta-btn:focus-visible {
	filter: brightness(1.08);
	transform: translateY(-1px);
	color: var(--bg);
}

@media (min-width: 1024px) {
	/* due colonne: a sinistra titolo + CTA, a destra l'accordion (riempie il 1200).
	   I 3 blocchi sono fratelli (ordine mobile: head → list → cta); qui li dispongo
	   in griglia senza wrapper, così il flusso mobile resta intatto. */
	.eb-faq {
		display: grid;
		grid-template-columns: minmax(260px, 340px) 1fr;
		grid-template-rows: auto 1fr;
		grid-template-areas:
			"head list"
			"cta  list";
		column-gap: var(--space-8);
		align-items: start;
		/* stesso gutter di news/players/offers → bordo sinistro allineato (box 1200) */
		padding-block: var(--space-8);
		padding-inline: max(var(--space-8), calc((100% - 1200px) / 2));
	}
	.eb-faq__head {
		grid-area: head;
		max-width: none;
		margin: 0 0 var(--space-4);
	}
	.eb-faq__list {
		grid-area: list;
		max-width: none;
		margin: 0;
	}
	.eb-faq__cta {
		grid-area: cta;
		max-width: none;
		margin: var(--space-2) 0 0;
	}
	.eb-faq__title {
		font-size: 3rem;
	}
	.eb-faq__q {
		font-size: 1.1rem;
		padding-block: var(--space-5);
	}
	.eb-faq__a-inner {
		font-size: 1rem;
		padding-bottom: var(--space-5);
	}
}
@media (prefers-reduced-motion: reduce) {
	.eb-faq__a-inner {
		animation: none;
	}
}

/* ========================================================================
   DESKTOP — l'hero diventa più alto/largo, i testi scalano
   ======================================================================== */
@media (min-width: 1024px) {
	.eb-hero__slide {
		min-height: 86vh;
		align-items: center;
	}
	.eb-hero__content {
		/* stesso gutter di news/players/offers/faq → bordo sinistro unico (box 1200) */
		max-width: none;
		margin: 0;
		padding: var(--space-8) max(var(--space-8), calc((100% - 1200px) / 2));
		gap: var(--space-5);
	}
	.eb-hero__title {
		font-size: 5.5rem; /* ~88px desktop */
	}
	.eb-hero__kicker {
		font-size: 0.875rem;
	}
	.eb-hero__sub {
		font-size: 1.15rem;
		max-width: 42ch;
	}
	.eb-hero__cta {
		font-size: 1rem;
		padding: 1rem 2rem;
	}
	.eb-socialproof {
		padding: var(--space-6);
	}
	.eb-socialproof__avatar {
		width: 34px;
		height: 34px;
	}
	.eb-socialproof__text {
		font-size: 1.05rem;
	}
}

/* Rispetta chi preferisce meno animazioni */
@media (prefers-reduced-motion: reduce) {
	.eb-hero__track {
		scroll-behavior: auto;
	}
	.eb-hero__cta {
		transition: none;
	}
}
