/* ─────────────────────────────────────────────────────────────
   Campione — Store page
   ─────────────────────────────────────────────────────────── */

/* ── Hero ─────────────────────────────────────────────────── */

.storeHero {
	background: linear-gradient(180deg, #F7EDE8 0%, #F0E4DB 100%);
	position: relative;
	overflow: hidden;
	min-height: min(820px, 100vh);
}

.storeHero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #1b3c31 0%, #1b3c31 18%, var(--gold) 50%, #1b3c31 82%, #1b3c31 100%);
	z-index: 1;
}

.storeHero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 420px;
	height: 22px;
	background: radial-gradient(ellipse at center top, rgba(201, 162, 74, 0.45) 0%, transparent 70%);
	pointer-events: none;
	z-index: 1;
}

.storeHero__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 300px 40px 80px;
	display: grid;
	grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
	align-items: center;
	gap: 40px;
	min-height: inherit;
}

.storeHero__left {
	max-width: 480px;
	justify-self: start;
	position: relative;
	z-index: 2;
}

.storeHero__kicker {
	font-family: "Cinzel", serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.32em;
	color: var(--gold);
	margin: 0 0 28px;
	text-transform: uppercase;
}

.storeHero__title {
	font-family: "Cinzel", serif;
	font-size: clamp(54px, 8vw, 104px);
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 0.95;
	margin: 0 0 26px;
	white-space: nowrap;
}

.storeHero__titleDark {
	color: var(--green2);
}

.storeHero__titleGold {
	color: var(--gold);
}

.storeHero__rule {
	display: block;
	width: 88px;
	height: 2px;
	background: var(--gold);
	margin: 0 0 26px;
	opacity: 0.9;
}

.storeHero__sub {
	font-family: "Libre Baskerville", serif;
	font-size: 17px;
	line-height: 1.7;
	color: #4a3f31;
	margin: 0 0 38px;
	max-width: 380px;
}

.storeCta {
	display: inline-flex;
	align-items: center;
	gap: 28px;
	padding: 20px 36px;
	background: #BA7C02;
	color: #fffdf6;
	font-family: "Cinzel", serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: 0 10px 22px rgba(186, 124, 2, 0.28);
	transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
	min-width: 240px;
	justify-content: space-between;
}

.storeCta:hover {
	transform: translateY(-2px);
	filter: brightness(1.08);
	box-shadow: 0 14px 28px rgba(186, 124, 2, 0.34);
}

.storeCta__arrow {
	font-size: 18px;
	transition: transform 0.18s ease;
}

.storeCta:hover .storeCta__arrow {
	transform: translateX(4px);
}

.storeHero__right {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 58%;
	max-width: none;
	z-index: 1;
	pointer-events: none;
}

.storeHero__carousel {
	position: relative;
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-areas: "slide";
}

.storeHero__img {
	grid-area: slide;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
	opacity: 0;
	transition: opacity 800ms ease;
	-webkit-mask-image: linear-gradient(90deg, transparent 25px, rgba(0, 0, 0, 0.35) calc(10% + 25px), rgba(0, 0, 0, 0.8) calc(22% + 25px), #000 calc(36% + 25px), #000 100%);
	mask-image: linear-gradient(90deg, transparent 25px, rgba(0, 0, 0, 0.35) calc(10% + 25px), rgba(0, 0, 0, 0.8) calc(22% + 25px), #000 calc(36% + 25px), #000 100%);
}

.storeHero__img--active {
	opacity: 1;
	animation: storeHeroKenBurns 7s ease-out forwards;
}

@keyframes storeHeroKenBurns {
	from { transform: scale(1); }
	to   { transform: scale(1.04); }
}

.storeHero__dots {
	grid-area: slide;
	align-self: end;
	justify-self: end;
	margin: 0 32px 24px 0;
	display: flex;
	gap: 12px;
	z-index: 3;
	pointer-events: auto;
}

.storeHero__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1.5px solid var(--gold);
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.storeHero__dot:hover {
	transform: scale(1.15);
}

.storeHero__dot--active {
	background: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
	.storeHero__img { transition: none; }
	.storeHero__img--active { animation: none; }
}

/* ── Products section ────────────────────────────────────── */

.storeProducts {
	background: linear-gradient(180deg, #F0E4DB 0%, #F3EDE5 100%);
	padding: 90px 24px 110px;
	position: relative;
}

.storeProducts__inner {
	max-width: 1400px;
	margin: 0 auto;
}

.storeProducts__header {
	text-align: center;
	margin-bottom: 56px;
}

.storeProducts__kicker {
	font-family: "Cinzel", serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.34em;
	color: var(--gold);
	margin: 0 0 14px;
	text-transform: uppercase;
}

.storeProducts__title {
	font-family: "Cinzel", serif;
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--green2);
	margin: 0 0 22px;
}

.storeProducts__divider {
	display: block;
	width: 64px;
	height: 2px;
	background: var(--gold);
	margin: 0 auto;
	opacity: 0.85;
}

.packGrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.packGrid > .packCard:nth-child(3) {
	grid-column: 1 / -1;
	justify-self: center;
	width: calc(50% - 14px);
}

.packCard {
	position: relative;
	background: #F5ECE7;
	border: 4px solid #E9D5C2;
	border-radius: 10px;
	padding: 25px 30px;
	display: flex;
	flex-direction: column;
	box-shadow:
		0 12px 28px rgba(40, 30, 15, 0.07),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.packCard:hover {
	transform: translateY(-3px);
	box-shadow:
		0 18px 36px rgba(40, 30, 15, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	border-color: #D9BFA4;
}

.packCard__top {
	display: grid;
	grid-template-columns: minmax(0,0.54fr) minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	flex: 1 1 auto;
}

.packCard__body {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.packCard__head {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 25px;
}

.packCard__name {
	font-family: "Cinzel", serif;
	font-size: clamp(22px, 2.2vw, 28px);
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--ink);
	margin: 0;
	white-space: nowrap;
}

.packCard__accent {
	display: block;
	width: 36px;
	height: 2px;
	background: var(--gold);
	opacity: 0.85;
}

.packCard__meta {
	font-family: "Cinzel", serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	color: #6b5a3e;
	line-height: 1.6;
	margin: 0 0 40px;
	text-transform: uppercase;
}

.packCard__price {
	font-family: "Cinzel", serif;
	font-size: clamp(28px, 3vw, 34px);
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--ink);
	margin: 0 0 6px;
}

.packCard__perCan {
	font-family: "Cinzel", serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	color: var(--gold);
	margin: 0 0 40px;
	text-transform: uppercase;
}

.packCard__actions {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 14px;
	margin-top: 25px;
}

.qty {
	display: inline-flex;
	align-items: stretch;
	height: 48px;
	border: 1px solid #E9D5C2;
	border-radius: 0;
	background: #FBF7F1;
	overflow: hidden;
	flex: 0 0 auto;
}

.qty__btn {
	width: 38px;
	background: transparent;
	border: 0;
	font-family: "Cinzel", serif;
	font-size: 18px;
	color: var(--ink);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.qty__btn:hover {
	background: rgba(201, 162, 74, 0.14);
	color: var(--gold);
}

.qty__val {
	min-width: 36px;
	padding: 0 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Cinzel", serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	border-left: 1px solid rgba(201, 162, 74, 0.28);
	border-right: 1px solid rgba(201, 162, 74, 0.28);
}

.packCart {
	flex: 0 0 auto;
	width: 230px;
	max-width: 100%;
	padding: 0 18px;
	height: 48px;
	background: #BA7B02;
	color: #fffdf6;
	border: 0;
	border-radius: 4px;
	font-family: "Cinzel", serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.24em;
	cursor: pointer;
	text-transform: uppercase;
	box-shadow:
		0 8px 18px rgba(176, 138, 54, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}

.packCart:hover {
	transform: translateY(-1px);
	filter: brightness(1.06);
	box-shadow:
		0 12px 24px rgba(176, 138, 54, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.packCart:active {
	transform: translateY(0);
}

.packCard__visual {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.packCard__img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 14px 22px rgba(30, 20, 5, 0.18));
	transition: transform 0.3s ease;
}

.packCard:hover .packCard__img {
	transform: scale(1.04);
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1100px) {
	.storeHero__inner {
		padding: 260px 32px 60px;
		gap: 24px;
	}

	.packCard {
		padding: 26px 22px;
		gap: 20px;
	}

	.packCard__top {
		gap: 10px;
	}

	.packCard__visual {
		min-height: 180px;
	}
}

@media (max-width: 900px) {
	.storeHero {
		min-height: 0;
	}

	.storeHero__inner {
		grid-template-columns: 1fr;
		padding: 240px 28px 40px;
		gap: 36px;
		text-align: center;
		min-height: 0;
	}

	.storeHero__left {
		justify-self: center;
		max-width: 560px;
	}

	.storeHero__rule {
		margin-left: auto;
		margin-right: auto;
	}

	.storeHero__sub {
		margin-left: auto;
		margin-right: auto;
	}

	.storeHero__right {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		width: 100%;
		max-width: 520px;
		justify-self: center;
		pointer-events: auto;
	}

	.storeHero__carousel {
		height: auto;
	}

	.storeHero__img {
		height: auto;
		object-fit: contain;
		-webkit-mask-image: none;
		mask-image: none;
		filter: drop-shadow(0 22px 36px rgba(20, 25, 22, 0.22));
	}

	.storeHero__dots {
		margin: 0 12px 14px 0;
	}

	.packGrid {
		grid-template-columns: 1fr;
		gap: 22px;
		max-width: 520px;
		margin: 0 auto;
	}

	.packGrid > .packCard:nth-child(3) {
		grid-column: auto;
		justify-self: stretch;
		width: auto;
	}

}

@media (max-width: 560px) {
	.storeHero__inner {
		padding: 220px 20px 32px;
	}

	.storeHero__kicker {
		font-size: 12px;
		letter-spacing: 0.28em;
	}

	.storeHero__title {
		white-space: normal;
	}

	.storeHero__sub {
		font-size: 15px;
	}

	.storeCta {
		min-width: 200px;
		padding: 18px 28px;
	}

	.storeProducts {
		padding: 70px 18px 80px;
	}

	.storeProducts__header {
		margin-bottom: 40px;
	}

	.packCard {
		padding: 26px 22px 22px;
	}
}
