/**
 * =============================================================================
 * PROBAR - HUB "INDISPENSABILI"
 * -----------------------------------------------------------------------------
 * Caricato solo su template-indispensabili.php (dopo catalog-ui.css, che
 * disegna le card prodotto). Lusso quieto: nero profondo, oro #FFCE53,
 * Playfair per i titoli. Mobile-first.
 * =============================================================================
 */

.abm-ind-page {
	max-width: 1280px;
	margin: 0 auto;
	padding: 24px 16px 80px;
	color: #cdcdcd;
}

/* ---------- Bottoni ---------- */
.abm-ind-btn {
	display: inline-block;
	min-height: 48px;
	padding: 13px 26px;
	border-radius: 26px;
	border: 1px solid transparent;
	font-size: 0.95rem;
	letter-spacing: 0.3px;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.abm-ind-btn--gold {
	background: linear-gradient(180deg, #FFE9AE 0%, #FFCE53 100%);
	color: #111;
	font-weight: 600;
	border-color: #FFCE53;
}

.abm-ind-btn--gold:hover {
	box-shadow: 0 0 18px rgba(255, 206, 83, 0.35);
	color: #111;
}

.abm-ind-btn--ghost {
	background: transparent;
	color: #e8e8e8;
	border-color: #4a3f1e;
}

.abm-ind-btn--ghost:hover {
	border-color: #FFCE53;
	color: #FFCE53;
}

/* ---------- Hero ---------- */
.abm-ind-hero {
	position: relative;
	text-align: center;
	max-width: 880px;
	margin: 14px auto 40px;
	padding: 30px 20px;
	border: 1px solid #2a2a2a;
	border-radius: 18px;
	background:
		radial-gradient(120% 130% at 50% 0%, rgba(255, 206, 83, 0.07) 0%, rgba(0, 0, 0, 0) 62%),
		#0e0e0e;
	overflow: hidden;
}

.abm-ind-hero__kicker {
	color: #FFCE53;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 0.8rem;
	margin: 0 0 14px;
}

.abm-ind-hero__title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(2rem, 5.2vw, 3.4rem);
	line-height: 1.1;
	color: #f4f4f4;
	margin: 0 0 16px;
}

.abm-ind-hero__sub {
	font-size: 1.03rem;
	line-height: 1.75;
	color: #b9b9b9;
	margin: 0 auto 24px;
	max-width: 660px;
}

.abm-ind-hero__cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

/* ---------- Storytelling ---------- */
.abm-ind-intro {
	margin: 0 0 54px;
}

.abm-ind-intro__inner {
	max-width: 780px;
	margin: 0 auto;
}

.abm-ind-intro__lead {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.3rem, 3.2vw, 1.9rem);
	line-height: 1.4;
	color: #f4f4f4;
	text-align: center;
	margin: 0 0 22px;
	position: relative;
	padding-top: 24px;
}

.abm-ind-intro__lead::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 54px;
	height: 2px;
	background: #FFCE53;
}

.abm-ind-intro__text {
	color: #b9b9b9;
	font-size: 1rem;
	line-height: 1.8;
	margin: 0 0 16px;
	text-align: justify;
	hyphens: auto;
}

.abm-ind-intro__text strong {
	color: #FFCE53;
	font-weight: 600;
}

/* ---------- Famiglia (sezione + griglia) ---------- */
.abm-ind-family {
	margin: 0 0 56px;
	scroll-margin-top: 90px;
}

.abm-ind-family__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 26px;
	padding-bottom: 18px;
	border-bottom: 1px solid #222;
}

.abm-ind-family__kicker {
	color: #FFCE53;
	text-transform: uppercase;
	letter-spacing: 2.6px;
	font-size: 0.74rem;
	margin: 0 0 8px;
}

.abm-ind-family__title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.5rem, 3.6vw, 2.3rem);
	line-height: 1.18;
	color: #f4f4f4;
	margin: 0 0 12px;
}

.abm-ind-family__copy {
	color: #b9b9b9;
	font-size: 0.98rem;
	line-height: 1.7;
	margin: 0 auto;
	max-width: 620px;
}

/* ---------- Griglia prodotti ----------
 * Definita qui perche' il CSS core di WooCommerce puo' non essere accodato su
 * una pagina template. Uccido il clearfix che diventerebbe cella di griglia
 * (stesso trucco del fix account/ricerca) e azzero float/width di Woo. */
.abm-ind-page ul.products {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.abm-ind-page ul.products::before,
.abm-ind-page ul.products::after {
	content: none !important;
	display: none !important;
}

.abm-ind-page ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
	clear: none !important;
}

@media (max-width: 1024px) {
	.abm-ind-page ul.products {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 760px) {
	.abm-ind-page ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 460px) {
	.abm-ind-page ul.products {
		grid-template-columns: 1fr;
	}
}

/* ---------- FAQ ---------- */
.abm-ind-faq {
	margin: 10px 0 54px;
	scroll-margin-top: 90px;
}

.abm-ind-faq__title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.5rem, 3.4vw, 2.2rem);
	color: #f4f4f4;
	text-align: center;
	margin: 0 0 26px;
}

.abm-ind-faq__list {
	max-width: 820px;
	margin: 0 auto;
}

.abm-ind-faq__item {
	background: #141414;
	border: 1px solid #2a2a2a;
	border-radius: 12px;
	margin: 0 0 10px;
	overflow: hidden;
	transition: border-color 0.25s ease;
}

.abm-ind-faq__item[open] {
	border-color: #4a3f1e;
}

.abm-ind-faq__q {
	list-style: none;
	cursor: pointer;
	padding: 16px 48px 16px 18px;
	color: #f4f4f4;
	font-size: 1rem;
	line-height: 1.5;
	position: relative;
	min-height: 48px;
	box-sizing: border-box;
}

.abm-ind-faq__q::-webkit-details-marker {
	display: none;
}

.abm-ind-faq__q::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 16px;
	color: #FFCE53;
	font-size: 1.4rem;
	line-height: 1;
	transition: transform 0.25s ease;
}

.abm-ind-faq__item[open] .abm-ind-faq__q::after {
	transform: rotate(45deg);
}

.abm-ind-faq__a {
	margin: 0;
	padding: 0 18px 18px;
	color: #b9b9b9;
	font-size: 0.95rem;
	line-height: 1.7;
}

/* ---------- CTA finale ---------- */
.abm-ind-final {
	text-align: center;
	background: #0f0f0f;
	border: 1px solid #2a2a2a;
	border-radius: 16px;
	padding: 40px 22px;
}

.abm-ind-final__title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.4rem, 3.2vw, 2rem);
	color: #f4f4f4;
	margin: 0 0 10px;
}

.abm-ind-final__text {
	color: #b9b9b9;
	font-size: 1rem;
	line-height: 1.7;
	max-width: 560px;
	margin: 0 auto 20px;
}
