/* EduFunny Products — premium/luxury e-commerce listing (preview page only).
 * Warm ivory/cream, muted terracotta, elegant dark text. Not childish. */

body.ef-page--products { background: linear-gradient(180deg, #FDFBF7 0%, #F6EFE4 100%); }
body.ef-page--products .ef-page-decor { display: none; }

.efp { --efp-ink: #2E2721; --efp-soft: #6E6155; --efp-line: #E6DAC7; --efp-acc: #A85C3C; --efp-acc-d: #8F4A2E; }

/* Editorial type (no bubbly headings on this page). */
.efp h1, .efp h2, .efp h3 { font-family: 'Nunito', system-ui, sans-serif; letter-spacing: -0.015em; color: var(--efp-ink); }
.efp-eyebrow {
	font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.78rem;
	letter-spacing: 0.22em; text-transform: uppercase; color: var(--efp-acc);
	display: inline-flex; align-items: center; gap: 0.7rem;
}
.efp-eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--efp-acc); opacity: 0.7; }

/* Buttons — refined, small radius. */
.efp-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem;
	padding: 0.8rem 1.5rem; min-height: 46px; border-radius: 8px; cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.efp-btn--lg { padding: 1rem 1.9rem; min-height: 52px; }
.efp-btn--solid { background: var(--efp-ink); color: #FDFBF7; box-shadow: 0 8px 20px rgba(46, 39, 33, 0.18); }
.efp-btn--solid:hover { background: var(--efp-acc-d); color: #FDFBF7; transform: translateY(-1px); }
.efp-btn--line { color: var(--efp-ink); box-shadow: inset 0 0 0 1px var(--efp-line); background: #FFFFFF; }
.efp-btn--line:hover { box-shadow: inset 0 0 0 1px var(--efp-acc); color: var(--efp-acc); }

/* HERO — spacious, luxury. */
.efp-hero { padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--efp-line); }
.efp-hero__inner { max-width: 820px; }
.efp-hero__title { font-size: clamp(2.1rem, 4.8vw, 3.6rem); font-weight: 800; margin: 1rem 0 1rem; }
.efp-hero__sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--efp-soft); max-width: 58ch; margin-bottom: 2rem; }
.efp-hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* CATEGORY STRIP — 4 elegant tiles. */
.efp-cats { border-bottom: 1px solid var(--efp-line); }
.efp-cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.efp-cat {
	display: flex; flex-direction: column; gap: 0.35rem;
	padding: clamp(1.4rem, 2.6vw, 2rem) clamp(1rem, 2vw, 1.5rem);
	color: inherit; border-left: 1px solid var(--efp-line);
	transition: background 0.2s ease;
	position: relative;
}
.efp-cat:first-child { border-left: 0; }
.efp-cat:hover { background: rgba(255, 255, 255, 0.75); }
.efp-cat__num { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.75rem; color: var(--efp-acc); letter-spacing: 0.16em; }
.efp-cat__name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.08rem; color: var(--efp-ink); }
.efp-cat__desc { font-size: 0.88rem; color: var(--efp-soft); }
.efp-cat__arrow { margin-top: 0.4rem; color: var(--efp-acc); transition: transform 0.2s ease; }
.efp-cat:hover .efp-cat__arrow { transform: translateX(4px); }

/* GRID HEAD */
.efp-gridwrap { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.efp-gridhead { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.5rem 2rem; margin-bottom: clamp(1.6rem, 3.5vw, 2.6rem); }
.efp-gridhead h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; margin: 0; }
.efp-gridhead p { margin: 0; color: var(--efp-soft); }

/* PRODUCT GRID */
.efp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 1.9rem); }
.efp-card {
	display: flex; flex-direction: column;
	background: #FFFFFF; border: 1px solid var(--efp-line); border-radius: 14px;
	overflow: hidden; box-shadow: 0 10px 26px rgba(74, 60, 44, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.efp-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(74, 60, 44, 0.11); }
.efp-card__media {
	display: flex; align-items: center; justify-content: center;
	aspect-ratio: 4 / 3; background: linear-gradient(160deg, #F3E9DA 0%, #EDE0CC 100%);
	border-bottom: 1px solid var(--efp-line);
	color: var(--efp-acc); font-family: 'Nunito', sans-serif; font-weight: 800;
	font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.efp-card__media--img { padding: 0; overflow: hidden; }
.efp-card__media--img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.efp-card__body { display: flex; flex-direction: column; gap: 0.5rem; padding: clamp(1.1rem, 2.2vw, 1.5rem); flex: 1; }
.efp-card__cat { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--efp-acc); margin: 0; }
.efp-card__title { font-size: 1.18rem; font-weight: 800; margin: 0; }
.efp-card__desc { font-size: 0.93rem; color: var(--efp-soft); margin: 0; }
.efp-card__price { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--efp-ink); margin: 0.2rem 0 0; }
.efp-card__price span { font-size: 0.72rem; font-weight: 700; color: var(--efp-soft); letter-spacing: 0.04em; }
.efp-card__variants { margin: 0.3rem 0 0.2rem; border-top: 1px dashed var(--efp-line); padding-top: 0.55rem; }
.efp-card__variants summary { cursor: pointer; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.82rem; color: var(--efp-acc); list-style-position: inside; }
.efp-card__variants ul { margin: 0.5rem 0 0; padding-left: 1.1rem; color: var(--efp-soft); font-size: 0.88rem; line-height: 1.7; }
.efp-card__actions { display: flex; gap: 0.55rem; margin-top: auto; padding-top: 0.8rem; }
.efp-card__actions .efp-btn { flex: 1; padding: 0.65rem 0.8rem; font-size: 0.86rem; min-height: 42px; }

/* Whole-card link (main product → its detail section). */
.efp-card__link { display: block; color: inherit; }
.efp-card__link:hover .efp-card__title { color: var(--efp-acc); }
.efp-card__link .efp-card__body { padding-bottom: 0.4rem; }
.efp-card__variantnote {
	font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.78rem;
	color: var(--efp-acc); letter-spacing: 0.06em;
}
.efp-card__actions { padding: 0 clamp(1.1rem, 2.2vw, 1.5rem) clamp(1.1rem, 2.2vw, 1.5rem); }

/* PRODUCT DETAIL SECTIONS (anchor targets — one per main product). */
.efp-detail {
	padding-block: clamp(2.2rem, 5vw, 3.6rem);
	border-top: 1px solid var(--efp-line);
	scroll-margin-top: 96px;               /* land below the sticky header */
}
.efp-detail:nth-of-type(even) { background: rgba(255, 255, 255, 0.55); }
.efp-detail__back {
	display: inline-block; margin-bottom: 1.4rem;
	font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.9rem;
	color: var(--efp-acc);
}
.efp-detail__back:hover { color: var(--efp-acc-d); }
.efp-detail__head {
	display: grid; grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(1.2rem, 3vw, 2.4rem); align-items: center; margin-bottom: 1.8rem;
}
.efp-detail__media {
	display: flex; align-items: center; justify-content: center;
	aspect-ratio: 4 / 3; border-radius: 14px;
	background: linear-gradient(160deg, #F3E9DA 0%, #EDE0CC 100%);
	border: 1px solid var(--efp-line);
	color: var(--efp-acc); font-family: 'Nunito', sans-serif; font-weight: 800;
	font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.efp-detail__title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin: 0.3rem 0 0.6rem; }
.efp-detail__desc { color: var(--efp-soft); max-width: 54ch; margin: 0; }
.efp-detail__subhead {
	font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.82rem;
	letter-spacing: 0.16em; text-transform: uppercase; color: var(--efp-acc);
	margin: 0 0 1rem;
}
.efp-detail__variants { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(0.7rem, 1.6vw, 1.1rem); }
.efp-variant {
	display: flex; flex-direction: column; gap: 0.4rem;
	background: #FFFFFF; border: 1px solid var(--efp-line); border-radius: 12px;
	padding: 1rem; transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.efp-variant:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(74, 60, 44, 0.10); }
.efp-variant__title { font-size: 0.95rem; font-weight: 800; margin: 0; }
.efp-variant__text { font-size: 0.82rem; color: var(--efp-soft); margin: 0; flex: 1; }
.efp-variant__price { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; margin: 0.2rem 0 0.4rem; }
.efp-variant__price span { font-size: 0.66rem; font-weight: 700; color: var(--efp-soft); }
.efp-variant .efp-btn { padding: 0.5rem 0.6rem; min-height: 38px; font-size: 0.8rem; }

/* ============================================================
 * EXCLUSIVE EDITION — luxury catalogue treatment.
 * Serif display type, ghost numerals, catalogue numbering,
 * engraved watermark, ornaments, crop-mark cards.
 * ============================================================ */

/* Serif display face for the exclusive feel. */
.efp .efp-hero__title,
.efp .efp-gridhead h2,
.efp .efp-detail__title,
.efp .efp-card__title { font-family: 'Fraunces', Georgia, serif; letter-spacing: -0.01em; }
.efp .efp-hero__title { font-weight: 600; }
.efp .efp-card__price, .efp .efp-variant__price { font-family: 'Fraunces', Georgia, serif; font-weight: 600; }

/* Fine dot-grid texture in the hero corner. */
.efp-hero { position: relative; overflow: hidden; }
.efp-hero::before {
	content: ""; position: absolute; top: 0; right: 0; width: 42%; height: 100%;
	background-image: radial-gradient(rgba(168, 92, 60, 0.16) 1px, transparent 1px);
	background-size: 22px 22px; pointer-events: none;
	-webkit-mask-image: linear-gradient(250deg, #000 20%, transparent 70%);
	mask-image: linear-gradient(250deg, #000 20%, transparent 70%);
}

/* Engraved watermark word behind the hero. */
.efp-hero__watermark {
	position: absolute; right: -0.06em; bottom: -0.28em; z-index: 0;
	font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-style: italic;
	font-size: clamp(6rem, 16vw, 15rem); line-height: 1; letter-spacing: -0.02em;
	color: transparent; -webkit-text-stroke: 1px rgba(168, 92, 60, 0.16);
	pointer-events: none; user-select: none; white-space: nowrap;
}
.efp-hero__inner { position: relative; z-index: 1; }

/* Monogram row — quiet establishment line. */
.efp-monogram {
	font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.68rem;
	letter-spacing: 0.34em; text-transform: uppercase; color: var(--efp-soft);
	margin: 0 0 1.6rem; padding-bottom: 1rem; border-bottom: 1px solid var(--efp-line);
	display: inline-block;
}

/* Catalogue number chip on each card. */
.efp-card { position: relative; }
.efp-card__no {
	position: absolute; top: 12px; left: 12px; z-index: 2;
	font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 600;
	font-size: 0.8rem; color: var(--efp-acc);
	background: rgba(253, 251, 247, 0.92); border: 1px solid var(--efp-line);
	padding: 0.2rem 0.6rem; border-radius: 999px;
}

/* Signature badge on the flagship. */
.efp-badge {
	position: absolute; top: 12px; right: 12px; z-index: 2;
	font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.62rem;
	letter-spacing: 0.22em; text-transform: uppercase;
	color: #FDFBF7; background: var(--efp-acc);
	padding: 0.35rem 0.75rem; border-radius: 999px;
	box-shadow: 0 6px 14px rgba(168, 92, 60, 0.35);
}
.efp-card--signature { border-color: rgba(168, 92, 60, 0.45); box-shadow: 0 14px 34px rgba(168, 92, 60, 0.14); }

/* Crop-mark corners on cards (luxury print-layout detail). */
.efp-card::before {
	content: ""; position: absolute; inset: -7px; pointer-events: none; opacity: 0;
	background:
		linear-gradient(var(--efp-acc), var(--efp-acc)) top left / 12px 1px,
		linear-gradient(var(--efp-acc), var(--efp-acc)) top left / 1px 12px,
		linear-gradient(var(--efp-acc), var(--efp-acc)) bottom right / 12px 1px,
		linear-gradient(var(--efp-acc), var(--efp-acc)) bottom right / 1px 12px;
	background-repeat: no-repeat;
	transition: opacity 0.25s ease;
}
.efp-card:hover::before { opacity: 0.8; }

/* Ornamental divider: line — diamond — line. */
.efp-ornament {
	display: flex; align-items: center; gap: 0.7rem;
	margin: 1.6rem 0 1.2rem; pointer-events: none;
}
.efp-ornament span { flex: 1; height: 1px; background: var(--efp-line); }
.efp-ornament i {
	width: 7px; height: 7px; background: var(--efp-acc);
	transform: rotate(45deg); border-radius: 1px; flex: none; opacity: 0.75;
}
.efp-ornament--left { max-width: 220px; margin: 0.5rem 0 0; }
.efp-ornament--left span:last-child { flex: 0 0 24px; }

/* Ghost catalogue numerals behind each product detail section. */
.efp-detail { position: relative; overflow: hidden; }
.efp-detail__ghost {
	position: absolute; top: 0.05em; right: -0.04em; z-index: 0;
	font-family: 'Fraunces', Georgia, serif; font-weight: 700;
	font-size: clamp(9rem, 22vw, 20rem); line-height: 0.8;
	color: transparent; -webkit-text-stroke: 1px rgba(168, 92, 60, 0.14);
	pointer-events: none; user-select: none;
}
.efp-detail > .ef-container { position: relative; z-index: 1; }
.efp-detail__media { box-shadow: 0 18px 40px rgba(74, 60, 44, 0.10); }
.efp-detail__media { position: relative; }
.efp-detail__media::after {
	content: ""; position: absolute; inset: 9px;
	border: 1px solid rgba(168, 92, 60, 0.22); border-radius: 9px; pointer-events: none;
}

/* Variant cards: serif tier initial + refined hover. */
.efp-variant { position: relative; }
.efp-variant::before {
	content: ""; position: absolute; top: 0; left: 1rem; right: 1rem; height: 2px;
	background: linear-gradient(90deg, var(--efp-acc), transparent);
	border-radius: 2px; opacity: 0; transition: opacity 0.25s ease;
}
.efp-variant:hover::before { opacity: 0.8; }

/* ============================================================
 * PREMIUM POLISH — visible luxury depth (CSS only, no markup).
 * ============================================================ */

/* Rich layered background: ivory gradient + warm corner glows + paper grain. */
body.ef-page--products {
	background:
		radial-gradient(900px 600px at 0% 12%, rgba(238, 221, 194, 0.55) 0%, transparent 60%),
		radial-gradient(1000px 700px at 100% 45%, rgba(243, 230, 210, 0.6) 0%, transparent 60%),
		linear-gradient(180deg, #FDFBF7 0%, #F4EBDD 100%);
}
body.ef-page--products::before {
	content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.35 0 0 0 0 0.27 0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.efp { position: relative; z-index: 1; }

/* Faint editorial grid texture through the listing area. */
.efp-gridwrap { position: relative; }
.efp-gridwrap::before {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background-image:
		linear-gradient(rgba(168, 92, 60, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(168, 92, 60, 0.05) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 30%, transparent 100%);
	mask-image: radial-gradient(70% 60% at 50% 40%, #000 30%, transparent 100%);
}
.efp-gridwrap > .ef-container { position: relative; z-index: 1; }

/* Small decorative circles drifting at the listing edges. */
.efp-gridwrap::after {
	content: ""; position: absolute; top: 12%; right: 3%;
	width: 9px; height: 9px; border-radius: 50%;
	background: rgba(181, 101, 63, 0.4);
	box-shadow:
		-30px 42px 0 -2px rgba(181, 101, 63, 0.22),
		18px 96px 0 -3px rgba(181, 101, 63, 0.14),
		-70vw 55vh 0 -1px rgba(181, 101, 63, 0.25),
		calc(-70vw + 26px) calc(55vh + 34px) 0 -3px rgba(181, 101, 63, 0.15);
	pointer-events: none;
}

/* PRODUCT DETAIL SECTIONS — editorial depth + premium spacing. */
.efp-detail { padding-block: clamp(3rem, 6.5vw, 5rem); }
.efp-detail:nth-of-type(even) {
	background:
		radial-gradient(700px 460px at 88% 10%, rgba(238, 221, 194, 0.75) 0%, transparent 62%),
		rgba(255, 255, 255, 0.6);
}
.efp-detail:nth-of-type(odd) {
	background: radial-gradient(700px 460px at 8% 90%, rgba(238, 221, 194, 0.6) 0%, transparent 62%);
}
/* Terracotta thread at the top of each product section. */
.efp-detail::before {
	content: ""; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
	width: min(320px, 40%); height: 2px; border-radius: 2px;
	background: linear-gradient(90deg, transparent, rgba(181, 101, 63, 0.55), transparent);
	pointer-events: none;
}
/* Corner ornaments framing each detail section (luxury plate corners). */
.efp-detail > .ef-container { position: relative; }
.efp-detail > .ef-container::before,
.efp-detail > .ef-container::after {
	content: ""; position: absolute; width: 26px; height: 26px; pointer-events: none;
	border-color: rgba(168, 92, 60, 0.35); border-style: solid;
}
.efp-detail > .ef-container::before { top: -6px; left: clamp(0.4rem, 1vw, 1rem); border-width: 1px 0 0 1px; border-radius: 6px 0 0 0; }
.efp-detail > .ef-container::after  { bottom: -14px; right: clamp(0.4rem, 1vw, 1rem); border-width: 0 1px 1px 0; border-radius: 0 0 6px 0; }

/* Luxury product-mockup frame on detail images. */
.efp-detail__media {
	box-shadow:
		0 24px 50px rgba(74, 60, 44, 0.14),
		0 4px 12px rgba(74, 60, 44, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	background:
		radial-gradient(80% 70% at 50% 30%, rgba(255, 255, 255, 0.55) 0%, transparent 70%),
		linear-gradient(160deg, #F3E9DA 0%, #E9DAC2 100%);
}

/* Variant cards — intentional, layered, warm. */
.efp-variant {
	background: linear-gradient(180deg, #FFFFFF 0%, #FDFAF4 100%);
	box-shadow: 0 3px 10px rgba(74, 60, 44, 0.05);
}
.efp-variant:hover {
	border-color: rgba(168, 92, 60, 0.4);
	box-shadow: 0 16px 32px rgba(168, 92, 60, 0.14);
}

/* LISTING CARDS — deeper media, glow-on-hover border. */
.efp-card__media {
	background:
		radial-gradient(75% 65% at 50% 32%, rgba(255, 255, 255, 0.6) 0%, transparent 70%),
		linear-gradient(160deg, #F3E9DA 0%, #E9DAC2 100%);
	box-shadow: inset 0 -18px 30px rgba(74, 60, 44, 0.06);
}
.efp-card:hover {
	transform: translateY(-6px);
	border-color: rgba(168, 92, 60, 0.45);
	box-shadow:
		0 22px 48px rgba(74, 60, 44, 0.13),
		0 0 0 4px rgba(168, 92, 60, 0.07);
}

/* BUTTONS — refined hover glow. */
.efp-btn--solid:hover { box-shadow: 0 10px 26px rgba(143, 74, 46, 0.4); }
.efp-btn--line:hover  { box-shadow: inset 0 0 0 1px var(--efp-acc), 0 8px 20px rgba(168, 92, 60, 0.16); }

/* Category strip — hairline top/bottom emphasis + warmer hover. */
.efp-cats { background: rgba(255, 255, 255, 0.4); }
.efp-cat:hover { background: rgba(255, 253, 248, 0.95); box-shadow: inset 0 -2px 0 rgba(181, 101, 63, 0.5); }

@media (max-width: 640px) {
	.efp-gridwrap::after { display: none; }
	.efp-detail > .ef-container::before,
	.efp-detail > .ef-container::after { display: none; }
}

/* ============================================================
 * HOVER-EXPAND VARIANT PREVIEW (listing cards only).
 * Collapsed by default; expands smoothly on hover (hover-capable
 * devices only — touch devices tap straight through to the anchor).
 * The lower product detail sections are untouched.
 * ============================================================ */
.efp-card__preview {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transform: translateY(8px);
	transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, margin 0.3s ease;
	margin-top: 0;
}
.efp-card__preview-label {
	display: block;
	font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.66rem;
	letter-spacing: 0.18em; text-transform: uppercase; color: var(--efp-acc);
	padding-top: 0.7rem; border-top: 1px dashed var(--efp-line);
	margin-bottom: 0.4rem;
}
.efp-card__preview ul {
	list-style: none; margin: 0 0 0.5rem; padding: 0;
	font-size: 0.85rem; color: var(--efp-soft); line-height: 1.75;
}
.efp-card__preview li { position: relative; padding-left: 0.95rem; }
.efp-card__preview li::before {
	content: ""; position: absolute; left: 0; top: 0.65em;
	width: 5px; height: 5px; transform: rotate(45deg);
	background: rgba(181, 101, 63, 0.55); border-radius: 1px;
}
.efp-card__preview-cta {
	font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.82rem;
	color: var(--efp-acc);
}

@media (hover: hover) and (pointer: fine) {
	.efp-grid .efp-card:hover { z-index: 5; }
	.efp-grid .efp-card:hover .efp-card__preview,
	.efp-grid .efp-card:focus-within .efp-card__preview {
		max-height: 240px;
		opacity: 1;
		transform: translateY(0);
		margin-top: 0.5rem;
	}
	/* Hide the static note while the full preview is open. */
	.efp-grid .efp-card:hover .efp-card__variantnote { opacity: 0.35; }
}

/* Responsive */
@media (max-width: 1100px) { .efp-grid { grid-template-columns: repeat(2, 1fr); } .efp-detail__variants { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px)  { .efp-detail__head { grid-template-columns: 1fr; } .efp-detail__variants { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .efp-detail__variants { grid-template-columns: 1fr; } }
@media (max-width: 900px)  { .efp-cats__grid { grid-template-columns: repeat(2, 1fr); } .efp-cat:nth-child(odd) { border-left: 0; } .efp-cat { border-top: 1px solid var(--efp-line); } .efp-cat:nth-child(-n+2) { border-top: 0; } }
@media (max-width: 640px)  {
	.efp-grid { grid-template-columns: 1fr; }
	.efp-cats__grid { grid-template-columns: 1fr; }
	.efp-cat { border-left: 0; }
	.efp-hero__actions .efp-btn { flex: 1 1 100%; }
}


/* Kids Club Design & Fun Areas — spaces gallery (brand identity) */
.efp-spaces { padding: clamp(2rem, 5vw, 3.5rem) 0; }
.efp-spaces__head { text-align: center; max-width: 60ch; margin: 0 auto clamp(1.2rem, 2.5vw, 1.8rem); }
.efp-spaces__title { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin: 0.3rem 0 0.4rem; }
.efp-spaces__intro { color: var(--efp-soft); margin: 0; }
.efp-spaces__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.7rem, 1.8vw, 1.1rem); }
.efp-spaces__item { border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 12px 28px rgba(74, 60, 44, 0.10); border: 3px solid #fff; transition: box-shadow 0.35s ease, transform 0.35s ease; }
.efp-spaces__item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.35s ease; }
@media (hover: hover) and (pointer: fine) {
	.efp-spaces__item:hover { box-shadow: 0 22px 44px rgba(74, 60, 44, 0.20); }
	.efp-spaces__item:hover img { transform: scale(1.08); }
}
@media (max-width: 720px) { .efp-spaces__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .efp-spaces__grid { grid-template-columns: 1fr; } }
