/* ============================================================
   LISTA PRODOTTI 2 — "Nordic editorial"
   Coerente con scheda_prodotto2.css: carta calda, blu fiordo,
   accento rosso brand, display Fraunces
   ============================================================ */

.lp2 {
	--lp2-ink: #1e2a38;
	--lp2-ink-soft: #55616e;
	--lp2-navy: #12596D;
	--lp2-navy-deep: #1d2452;
	--lp2-red: #ea212e;
	--lp2-paper: #faf9f6;
	--lp2-card: #ffffff;
	--lp2-line: #e4e0d6;
	--lp2-radius: 14px;
	--lp2-shadow: 0 10px 30px -12px rgba(30, 42, 56, .18);
	--lp2-display: 'Fraunces', 'Roboto Slab', Georgia, serif;

	background: var(--lp2-paper);
	color: var(--lp2-ink);
	font-size: 16px;
	line-height: 1.7;
	padding-bottom: 60px;
}

.lp2 ::selection { background: var(--lp2-navy); color: #fff; }

/* ============================== HERO ============================== */

.lp2-hero {
	position: relative;
	padding: 48px 0 38px;
	margin-bottom: 34px;
	background:
		radial-gradient(900px 320px at 85% -10%, rgba(13, 122, 95, .10), transparent 60%),
		radial-gradient(700px 300px at 10% -20%, rgba(40, 50, 111, .12), transparent 60%),
		linear-gradient(180deg, #eef3f6 0%, var(--lp2-paper) 100%);
	border-bottom: 1px solid var(--lp2-line);
	overflow: hidden;
}

.lp2-hero:after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--lp2-navy) 0 33%, var(--lp2-red) 33% 40%, transparent 40%);
	opacity: .85;
}

.lp2-hero-inner { max-width: 900px; }
.lp2-hero-inner > * { animation: lp2fade .7s ease backwards; }
.lp2-hero-inner > *:nth-child(2) { animation-delay: .08s; }
.lp2-hero-inner > *:nth-child(3) { animation-delay: .16s; }
.lp2-hero-inner > *:nth-child(4) { animation-delay: .24s; }

@keyframes lp2fade {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: none; }
}

.lp2-kicker {
	font-size: 12px;
	letter-spacing: .22em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--lp2-navy);
	margin-bottom: 12px;
}

.lp2-title {
	font-family: var(--lp2-display);
	font-weight: 400;
	font-size: clamp(28px, 4.4vw, 48px);
	line-height: 1.12;
	color: var(--lp2-navy-deep);
	margin: 0 0 12px;
}
.lp2-title strong {
	font-weight: 700;
	color: var(--lp2-navy);
	font-style: italic;
}

.lp2-hero-note {
	display: inline-block;
	font-family: var(--lp2-display);
	font-style: italic;
	font-size: 19px;
	color: var(--lp2-red);
	margin-bottom: 8px;
}

.lp2-garantite {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 6px 0 10px;
	padding: 9px 18px;
	border-radius: 999px;
	background: #fdeced;
	border: 1px solid #f5b8bc;
	color: var(--lp2-red);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.lp2-garantite img { border-radius: 2px; }

.lp2-hero-sub {
	font-family: var(--lp2-display);
	font-style: italic;
	font-size: clamp(17px, 2.2vw, 22px);
	color: var(--lp2-ink-soft);
	margin: 4px 0 0;
}

/* ============================== EMPTY STATE ============================== */

.lp2-empty {
	max-width: 460px;
	margin: 30px auto 60px;
	padding: 40px 30px;
	text-align: center;
	background: var(--lp2-card);
	border: 1px dashed var(--lp2-line);
	border-radius: var(--lp2-radius);
	color: var(--lp2-ink-soft);
}
.lp2-empty .fa { color: var(--lp2-navy); margin-bottom: 12px; }
.lp2-empty p {
	font-family: var(--lp2-display);
	font-size: 19px;
	margin: 0;
}

/* ============================== GRIGLIA ============================== */

/* flex al posto dei float bootstrap: card di pari altezza */
.lp2-grid { display: flex; flex-wrap: wrap; }
.lp2-grid:before, .lp2-grid:after { display: none; }

.lp2-cell {
	display: flex;
	float: none;
	margin-bottom: 30px;
}

/* ============================== CARD ============================== */

.lp2-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: var(--lp2-card);
	border: 1px solid var(--lp2-line);
	border-radius: var(--lp2-radius);
	overflow: hidden;
	box-shadow: 0 4px 14px -10px rgba(30, 42, 56, .18);
	transition: transform .22s ease, box-shadow .22s ease;
}

.lp2-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--lp2-shadow);
}

.lp2-card-img {
	position: relative;
	display: block;
	overflow: hidden;
	background: #12203a;
}
.lp2-card-img img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 430 / 334;
	object-fit: cover;
	transition: transform .35s ease;
}
.lp2-card:hover .lp2-card-img img { transform: scale(1.05); }

.lp2-chip-durata {
	position: absolute;
	left: 12px; bottom: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(18, 24, 40, .82);
	color: #fff;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .08em;
}
.lp2-chip-durata .fa { color: #ffd76a; }

.lp2-chip-cat {
	position: absolute;
	right: 0; top: 14px;
	padding: 5px 14px 5px 16px;
	background: var(--lp2-red);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	border-radius: 999px 0 0 999px;
	box-shadow: 0 3px 10px -3px rgba(0,0,0,.4);
}

.lp2-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 18px 20px 16px;
	text-align: left;
}

.lp2 .lp2-card-link { text-decoration: none !important; color: inherit; display: block; }

.lp2-card-title {
	font-family: var(--lp2-display);
	font-weight: 700;
	font-size: 19px;
	line-height: 1.25;
	color: var(--lp2-navy-deep);
	margin: 0 0 6px;
	transition: color .15s ease;
}
.lp2-card:hover .lp2-card-title { color: var(--lp2-navy); }

.lp2-cod {
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .08em;
	color: var(--lp2-ink-soft);
	white-space: nowrap;
	vertical-align: middle;
}

.lp2-card-sub {
	font-family: var(--lp2-display);
	font-style: italic;
	font-size: 14.5px;
	color: var(--lp2-ink-soft);
	margin: 0 0 12px;
	line-height: 1.5;
}

.lp2-dest {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px dashed var(--lp2-line);
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.lp2 .lp2-dest a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 10px;
	border-radius: 999px;
	border: 1px solid var(--lp2-line);
	background: var(--lp2-paper);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--lp2-navy);
	text-decoration: none !important;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.lp2 .lp2-dest a .fa { font-size: 10px; color: var(--lp2-red); }
.lp2 .lp2-dest a:hover {
	background: var(--lp2-navy);
	border-color: var(--lp2-navy);
	color: #fff;
}
.lp2 .lp2-dest a:hover .fa { color: #ffd76a; }

/* ============================== ANIMAZIONI ============================== */

.lp2-reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.lp2-reveal.is-vis { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.lp2-hero-inner > * { animation: none; }
	.lp2-reveal { opacity: 1; transform: none; transition: none; }
	.lp2-card, .lp2-card-img img { transition: none; }
}

/* ============================== RESPONSIVE ============================== */

@media (max-width: 767px) {
	.lp2-hero { padding: 30px 0 26px; margin-bottom: 24px; }
	.lp2-cell { margin-bottom: 20px; }
	.lp2-card-body { padding: 15px 16px 14px; }
}

/* ============================== STAMPA ============================== */

@media print {
	.lp2 { background: #fff; }
	.lp2-hero { background: none; border: 0; }
	.lp2-hero:after { display: none; }
	.lp2-card { box-shadow: none; page-break-inside: avoid; }
}
