/*
 * Store (Frada Merch): hero with a photo collage + product grid. Pure
 * marketing page that links out to Instagram — no cart/checkout, no
 * WooCommerce. Product photos are TODO placeholders (none shipped with
 * the design export); ppifrada_image_slot() renders a branded panel
 * instead of a broken image until real photos are added.
 */

.pf-store-hero {
	position: relative;
	padding: 140px 24px 40px;
	overflow: hidden;
}

.pf-store-hero__glow {
	position: absolute;
	top: -140px;
	left: 50%;
	transform: translateX(-50%);
	width: 760px;
	height: 460px;
	background: radial-gradient(ellipse at center, rgba(0, 166, 81, .22), rgba(0, 155, 77, .14) 40%, rgba(248, 251, 248, 0) 70%);
	filter: blur(16px);
	animation: ppiGlow 9s ease-in-out infinite;
	pointer-events: none;
}

.pf-store-hero__grid {
	max-width: 1180px;
	margin: 0 auto;
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 48px;
	align-items: center;
}

.pf-store-hero__title {
	font-weight: 800;
	font-size: clamp(2.5rem, 5.4vw, 4.2rem);
	line-height: 1;
	letter-spacing: -.03em;
	color: var(--pf-ink);
}

.pf-store-hero__text {
	max-width: 480px;
	margin: 22px 0 0;
	font-size: clamp(1.05rem, 1.3vw, 1.18rem);
	line-height: 1.65;
	color: var(--pf-muted);
	font-weight: 500;
}

.pf-store-hero__actions {
	display: flex;
	gap: 14px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.pf-store-collage {
	position: relative;
	height: 430px;
}

.pf-store-collage__glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 340px;
	height: 340px;
	border-radius: 50%;
	opacity: .22;
	filter: blur(50px);
}

.pf-store-collage__photo {
	position: absolute;
	width: 54%;
	border-radius: 24px;
	padding: 8px;
	background: #fff;
	border: 1px solid rgba(30, 30, 30, .07);
	box-shadow: 0 30px 60px -30px rgba(30, 30, 30, .5);
	transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.pf-store-collage__photo-inner {
	border-radius: 17px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
}

.pf-store-collage__photo--1 {
	top: 8px;
	left: 4%;
	transform: rotate(-5deg);
}

.pf-store-collage__photo--1:hover {
	transform: rotate(-2deg) translateY(-6px);
}

.pf-store-collage__photo--2 {
	bottom: 0;
	right: 4%;
	width: 50%;
	transform: rotate(5deg);
}

.pf-store-collage__photo--2:hover {
	transform: rotate(2deg) translateY(-6px);
}

.pf-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 22px;
}

.pf-product-card {
	display: block;
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(30, 30, 30, .06);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(30, 30, 30, .04), 0 24px 50px -44px rgba(30, 30, 30, .3);
	transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.pf-product-card:hover {
	transform: translateY(-6px);
}

.pf-product-card__media {
	aspect-ratio: 1 / 1;
}

.pf-product-card__media .pf-image-slot {
	width: 100%;
	height: 100%;
	border-radius: 0;
}

.pf-product-card__body {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.pf-product-card__name {
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--pf-ink);
}

.pf-product-card__meta {
	font-size: 13.5px;
	color: var(--pf-muted);
	margin-top: 2px;
}

.pf-product-card__arrow {
	flex: none;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(0, 155, 77, .08);
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 880px) {
	.pf-store-hero__grid {
		grid-template-columns: 1fr;
	}

	.pf-store-collage {
		height: 320px;
	}
}
