/* ==========================================================================
   Purna Junior — design system + layout
   ========================================================================== */

:root {
	--pj-bg: #FFF8F0;
	--pj-surface: #FFFFFF;
	--pj-ink: #1F1B2D;
	--pj-muted: #6B6578;
	--pj-border: #EDE4D8;
	--pj-soft: #F6EFE6;
	--pj-primary: #1F1B2D;
	--pj-primary-ink: #FFFFFF;
	--pj-accent: #6A4C9C;
	--pj-accent-soft: #F1ECF8;
	--pj-success: #2E7D4F;
	--pj-error: #C62828;
	--pj-rainbow: linear-gradient(90deg, #E03A3A 0%, #F0821E 20%, #E9A72E 40%, #4CAF50 60%, #1F2D6B 80%, #7B2C8F 100%);
	--pj-radius: 20px;
	--pj-radius-sm: 12px;
	--pj-radius-pill: 999px;
	--pj-shadow: 0 10px 30px rgba(31, 27, 45, 0.08);
	--pj-shadow-lg: 0 24px 60px rgba(31, 27, 45, 0.14);
	--pj-font: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--pj-container: 1200px;
	--pj-gutter: clamp(16px, 4vw, 40px);
	--pj-section: clamp(64px, 10vw, 128px);
	--pj-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--pj-header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--pj-header-h) + 16px); }
body { margin: 0; font-family: var(--pj-font); font-size: 1.0625rem; line-height: 1.6; color: var(--pj-ink); background: var(--pj-bg); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.1; font-weight: 800; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--pj-muted); margin-top: 1.5em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--pj-accent); outline-offset: 3px; border-radius: 6px; }

.pj-skip { position: absolute; left: 16px; top: -60px; background: var(--pj-ink); color: #fff; padding: 12px 18px; border-radius: 10px; z-index: 1000; transition: top 0.2s; }
.pj-skip:focus { top: 16px; }

/* ---------- Utilities ---------- */
.pj-container { width: min(100% - 2 * var(--pj-gutter), var(--pj-container)); margin-inline: auto; }
.pj-container--narrow { width: min(100% - 2 * var(--pj-gutter), 760px); margin-inline: auto; }
.pj-center { text-align: center; }
.pj-small { font-size: 0.875rem; }
.pj-muted { color: var(--pj-muted); }
.pj-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--pj-muted); max-width: 60ch; }
.pj-eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pj-accent); margin-bottom: 0.9em; }
.pj-eyebrow--light { color: rgba(255, 255, 255, 0.85); }
.pj-eyebrow--accent { color: var(--pj-accent); }
.pj-link { font-weight: 700; color: var(--pj-accent); border-bottom: 2px solid currentColor; }
.pj-notice { background: var(--pj-accent-soft); border-left: 4px solid var(--pj-accent); padding: 12px 16px; border-radius: 8px; font-size: 0.95rem; }
.pj-section { padding-block: var(--pj-section); }
.pj-section__head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.pj-section__head--center { margin-inline: auto; text-align: center; }
.pj-section__head--center .pj-lead { margin-inline: auto; }
.pj-grid { display: grid; gap: clamp(16px, 2.5vw, 28px); }
.pj-grid--range, .pj-grid--products { grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.pj-grid--reviews { grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }

/* Reveal */
.pj-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--pj-ease), transform 0.7s var(--pj-ease); transition-delay: var(--d, 0ms); }
.pj-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.pj-reveal { opacity: 1; transform: none; transition: none; }
	*, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ---------- Buttons ---------- */
.pj-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: var(--pj-radius-pill); font-weight: 800; font-size: 0.95rem; letter-spacing: 0.01em; border: 2px solid transparent; transition: transform 0.25s var(--pj-ease), box-shadow 0.25s, background 0.25s, color 0.25s; white-space: nowrap; }
.pj-btn:hover { transform: translateY(-2px); box-shadow: var(--pj-shadow); }
.pj-btn:active { transform: translateY(0); }
.pj-btn--primary { background: var(--pj-primary); color: var(--pj-primary-ink); }
.pj-btn--primary:hover { background: #2B2640; }
.pj-btn--accent { background: var(--pj-accent); color: #fff; }
.pj-btn--outline { background: transparent; border-color: var(--pj-ink); color: var(--pj-ink); }
.pj-btn--outline:hover { background: var(--pj-ink); color: #fff; }
.pj-btn--ghost { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: rgba(255, 255, 255, 0.45); backdrop-filter: blur(6px); }
.pj-btn--ghost:hover { background: rgba(255, 255, 255, 0.24); }
.pj-btn--light { background: #fff; color: var(--pj-ink); }
.pj-btn--small { padding: 10px 18px; font-size: 0.85rem; }
.pj-btn--large { padding: 17px 32px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.pj-announce { background: var(--pj-ink); color: #fff; text-align: center; font-size: 0.85rem; font-weight: 700; padding: 8px var(--pj-gutter); }
.pj-announce p { margin: 0; }
.pj-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 248, 240, 0.72); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid transparent; transition: border-color 0.3s, background 0.3s; }
.pj-header.is-scrolled { border-color: var(--pj-border); background: rgba(255, 248, 240, 0.9); }
.pj-home .pj-header:not(.is-scrolled):not(.nav-open) { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.pj-home .pj-header:not(.is-scrolled):not(.nav-open) .pj-nav__list a,
.pj-home .pj-header:not(.is-scrolled):not(.nav-open) .pj-cart,
.pj-home .pj-header:not(.is-scrolled):not(.nav-open) .pj-burger,
.pj-home .pj-header:not(.is-scrolled):not(.nav-open) .pj-logo__purna { color: var(--pj-hero-ink, #fff); }
.pj-home .pj-header:not(.is-scrolled):not(.nav-open) .pj-header__cta { background: var(--pj-hero-ink, #fff); color: var(--pj-ink); }
.pj-home .pj-header:not(.is-scrolled):not(.nav-open) .pj-cart-count { background: var(--pj-hero-ink, #fff); color: var(--pj-ink); }
.pj-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--pj-header-h); }
.pj-header__brand { display: flex; align-items: center; }
.pj-header__brand img { max-height: 44px; width: auto; }
.pj-logo { display: inline-flex; align-items: baseline; gap: 6px; line-height: 1; }
.pj-logo__purna { font-weight: 900; font-size: 1.7rem; letter-spacing: -0.04em; color: var(--pj-accent); transition: color 0.3s; }
.pj-logo__junior { font-weight: 900; font-size: 0.85rem; letter-spacing: 0.18em; background: var(--pj-rainbow); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pj-nav__list { display: flex; gap: clamp(16px, 2.4vw, 32px); }
.pj-nav__list a { font-weight: 700; font-size: 0.95rem; position: relative; padding: 6px 0; transition: color 0.3s; }
.pj-nav__list a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--pj-ease); }
.pj-nav__list a:hover::after, .pj-nav__list .current-menu-item a::after { transform: scaleX(1); }
.pj-nav__mobile-cta { display: none; }
.pj-header__actions { display: flex; align-items: center; gap: 14px; }
.pj-cart { position: relative; display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.25s, color 0.3s; }
.pj-cart:hover { background: var(--pj-soft); }
.pj-cart svg { width: 24px; height: 24px; }
.pj-cart-count { position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--pj-accent); color: #fff; font-size: 0.7rem; font-weight: 800; line-height: 18px; text-align: center; }
.pj-cart-count[data-count="0"] { display: none; }
.pj-burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 50%; align-items: center; justify-content: center; }
.pj-burger svg { width: 26px; height: 26px; }
.pj-burger__close { display: none; }
.nav-open .pj-burger__open { display: none; }
.nav-open .pj-burger__close { display: block; }

@media (max-width: 900px) {
	.pj-header__cta { display: none; }
	.pj-burger { display: inline-flex; }
	.pj-nav { position: fixed; inset: var(--pj-header-h) 0 0; background: var(--pj-bg); padding: 24px var(--pj-gutter) 40px; transform: translateX(100%); transition: transform 0.4s var(--pj-ease); overflow-y: auto; z-index: 99; }
	.nav-open .pj-nav { transform: none; }
	.pj-nav__list { flex-direction: column; gap: 4px; }
	.pj-nav__list a { display: block; font-size: 1.5rem; font-weight: 800; padding: 14px 0; border-bottom: 1px solid var(--pj-border); color: var(--pj-ink) !important; }
	.pj-nav__list a::after { display: none; }
	.pj-nav__mobile-cta { display: block; margin-top: 28px; }
	.pj-nav__mobile-cta .pj-btn { width: 100%; }
	body.pj-nav-open { overflow: hidden; }
	/* backdrop-filter would make the header the containing block for the fixed nav panel */
	.pj-header.nav-open { background: var(--pj-bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
}

/* ---------- Hero ---------- */
.pj-hero { position: relative; height: var(--pj-hero-length, 260vh); margin-top: calc(-1 * var(--pj-header-h)); background: var(--pj-accent); color: var(--pj-accent-ink, #fff); --pj-hero-p: 0; }
.pj-hero--static { height: auto; }
.pj-hero__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: flex; align-items: center; padding-top: var(--pj-header-h); }
.pj-hero--static .pj-hero__sticky { position: relative; min-height: 100vh; min-height: 100svh; height: auto; }
.pj-hero__sticky::before { content: ''; position: absolute; right: -10%; top: 10%; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 62%); pointer-events: none; }
.pj-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 72px); align-items: center; width: min(100% - 2 * var(--pj-gutter), var(--pj-container)); }
.pj-hero__content { position: relative; z-index: 2; opacity: clamp(0, calc(1 - (var(--pj-hero-p) - 0.6) * 3.2), 1); transform: translateY(calc(var(--pj-hero-p) * -24px)); will-change: opacity, transform; }
.pj-hero__content h1 { color: inherit; max-width: 12ch; }
.pj-hero__content .pj-lead { color: inherit; opacity: 0.88; }
.pj-eyebrow--inherit { color: inherit; opacity: 0.85; }
.pj-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.pj-btn--hero-primary { background: var(--pj-accent-ink, #fff); color: var(--pj-accent); }
.pj-btn--hero-primary:hover { filter: brightness(0.96); }
.pj-btn--hero-ghost { background: transparent; color: inherit; border-color: currentColor; }
.pj-btn--hero-ghost:hover { background: rgba(255, 255, 255, 0.14); }
.pj-hero__hint { display: inline-flex; align-items: center; gap: 10px; margin-top: 36px; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; opacity: 0.8; }
.pj-hero__hint span { width: 22px; height: 34px; border: 2px solid currentColor; border-radius: 12px; position: relative; opacity: 0.7; }
.pj-hero__hint span::after { content: ''; position: absolute; left: 50%; top: 6px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: currentColor; animation: pj-scroll 1.6s infinite; }
@keyframes pj-scroll { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }
.pj-hero__media { position: relative; width: 100%; max-width: min(100%, calc(100svh - var(--pj-header-h) - 72px)); aspect-ratio: 1; margin-left: auto; border-radius: clamp(20px, 3vw, 36px); overflow: hidden; background: #fff; box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.12); transform: translateY(calc(var(--pj-hero-p) * -10px)) scale(calc(1 + var(--pj-hero-p) * 0.025)); will-change: transform; }
.pj-hero__poster, .pj-hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pj-hero__poster[hidden] { display: none; }
.pj-hero__missing { position: absolute; inset: 0; display: grid; place-items: center; padding: 24px; text-align: center; font-weight: 700; color: var(--pj-ink); background: repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0 12px, transparent 12px 24px); }
.pj-hero__progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255, 255, 255, 0.18); z-index: 3; }
.pj-hero__progress span { display: block; height: 100%; background: currentColor; transform: scaleX(0); transform-origin: left; }
@media (max-width: 820px) {
	.pj-hero__sticky { align-items: stretch; padding-top: calc(var(--pj-header-h) + 8px); padding-bottom: 20px; }
	.pj-hero__grid { grid-template-columns: 1fr; grid-template-rows: auto 1fr; gap: 20px; align-content: start; }
	.pj-hero__media { order: -1; max-width: min(100%, 42svh); margin-inline: auto; border-radius: 22px; box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28); }
	.pj-hero__content { align-self: end; padding-bottom: 12px; }
	.pj-hero__content h1 { font-size: clamp(2rem, 9vw, 2.6rem); max-width: none; }
	.pj-hero__content .pj-lead { font-size: 1rem; }
	.pj-hero__cta .pj-btn { flex: 1 1 auto; padding-inline: 18px; }
	.pj-hero__hint { display: none; }
	.pj-hero__sticky::before { display: none; }
}

/* ---------- Intro ---------- */
.pj-intro__facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 16px; }
.pj-intro__facts li { background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius); padding: 28px 24px; display: grid; gap: 4px; }
.pj-intro__facts svg { width: 32px; height: 32px; color: var(--pj-accent); margin-bottom: 10px; }
.pj-intro__facts strong { font-size: 1.25rem; font-weight: 800; }
.pj-intro__facts span { color: var(--pj-muted); font-size: 0.95rem; }

/* ---------- Why ---------- */
.pj-why { background: var(--pj-surface); }
.pj-why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(20px, 3vw, 40px); }
.pj-why__item { display: grid; grid-template-columns: 44px 1fr; column-gap: 16px; }
.pj-why__item h3 { grid-column: 2; margin-bottom: 0.25em; font-size: 1.15rem; }
.pj-why__item p { grid-column: 2; color: var(--pj-muted); margin: 0; }
.pj-why__icon { grid-row: 1 / span 2; width: 44px; height: 44px; border-radius: 14px; background: var(--pj-accent-soft); color: var(--pj-accent); display: grid; place-items: center; }
.pj-why__icon svg { width: 22px; height: 22px; }

/* ---------- Cards ---------- */
.pj-card { background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.35s var(--pj-ease), box-shadow 0.35s; }
.pj-card:hover { transform: translateY(-6px); box-shadow: var(--pj-shadow-lg); }
.pj-card__media { display: block; aspect-ratio: 1; background: var(--pj-accent-soft); overflow: hidden; }
.pj-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--pj-ease); }
.pj-card:hover .pj-card__media img { transform: scale(1.04); }
.pj-card__placeholder { height: 100%; display: grid; place-items: center; color: var(--pj-accent); font-weight: 900; font-size: 1.4rem; }
.pj-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.pj-card__tag { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pj-accent); margin: 0; }
.pj-card__title { font-size: 1.35rem; margin: 0; }
.pj-card__meta { color: var(--pj-muted); font-size: 0.9rem; margin: 0; }
.pj-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 16px; }
.pj-card__price { font-weight: 800; font-size: 1.1rem; }
.pj-card__price--soon { color: var(--pj-muted); font-weight: 700; font-size: 0.9rem; }
.pj-card__price del { color: var(--pj-muted); font-weight: 600; margin-right: 6px; }

/* ---------- Chips + facts ---------- */
.pj-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px; }
.pj-chip { padding: 10px 18px; border-radius: var(--pj-radius-pill); border: 2px solid var(--pj-border); background: var(--pj-surface); font-weight: 800; font-size: 0.9rem; transition: all 0.25s; }
.pj-chip:hover { border-color: var(--pj-accent); color: var(--pj-accent); }
.pj-chip[aria-selected="true"] { background: var(--pj-accent); border-color: var(--pj-accent); color: #fff; }
.pj-facts-panel__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.pj-facts-panel__copy h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.pj-facts { background: var(--pj-surface); border: 2px solid var(--pj-accent); border-radius: var(--pj-radius); overflow: hidden; }
.pj-facts__head { background: var(--pj-accent); color: #fff; padding: 18px 22px; }
.pj-facts__head h3 { margin: 0; font-size: 1.5rem; color: #fff; }
.pj-facts__head p { margin: 4px 0 0; font-size: 0.85rem; opacity: 0.9; }
.pj-facts table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.pj-facts th, .pj-facts td { text-align: left; padding: 9px 22px; border-bottom: 1px solid var(--pj-border); vertical-align: top; }
.pj-facts th { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pj-muted); }
.pj-facts td:nth-child(2), .pj-facts th:nth-child(2) { text-align: right; white-space: nowrap; }
.pj-facts td:nth-child(3), .pj-facts th:nth-child(3) { text-align: right; width: 84px; }
.pj-facts__divider td { padding: 0; height: 8px; background: var(--pj-accent-soft); border: 0; }
.pj-facts__active td { font-weight: 700; }
.pj-facts__note { padding: 12px 22px 18px; margin: 0; font-size: 0.78rem; color: var(--pj-muted); }
@media (max-width: 860px) { .pj-facts-panel__grid { grid-template-columns: 1fr; } }

/* ---------- How ---------- */
.pj-how { background: var(--pj-ink); color: #fff; }
.pj-how .pj-eyebrow { color: rgba(255, 255, 255, 0.7); }
.pj-how__inner { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(24px, 5vw, 80px); align-items: start; }
.pj-how__inner .pj-section__head { margin-bottom: 0; }
.pj-steps { display: grid; gap: 22px; }
.pj-steps li { display: grid; grid-template-columns: 52px 1fr; column-gap: 20px; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.pj-steps li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.pj-steps span { grid-row: 1 / span 2; width: 52px; height: 52px; border-radius: 50%; background: var(--pj-accent); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 1.2rem; }
.pj-steps h3 { margin-bottom: 0.2em; }
.pj-steps p { margin: 0; color: rgba(255, 255, 255, 0.75); }
@media (max-width: 800px) { .pj-how__inner { grid-template-columns: 1fr; } }

/* ---------- Trust ---------- */
.pj-trust__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 18px; }
.pj-trust__card { background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius); padding: 28px; }
.pj-trust__card h3 { font-size: 1.15rem; }
.pj-trust__card p { color: var(--pj-muted); margin: 0; font-size: 0.97rem; }
.pj-trust__card a { color: var(--pj-accent); font-weight: 700; }

/* ---------- Reviews ---------- */
.pj-reviews { background: var(--pj-surface); }
.pj-review { margin: 0; background: var(--pj-bg); border-radius: var(--pj-radius); padding: 26px; }
.pj-review__stars { display: flex; gap: 2px; color: #E9A72E; margin-bottom: 12px; }
.pj-review__stars svg { width: 18px; height: 18px; }
.pj-review footer { font-size: 0.85rem; color: var(--pj-muted); font-weight: 700; }
.pj-reviews__empty { text-align: center; max-width: 560px; margin-inline: auto; padding: 40px 24px; border: 2px dashed var(--pj-border); border-radius: var(--pj-radius); }
.pj-reviews__empty p { color: var(--pj-muted); }

/* ---------- FAQ ---------- */
.pj-faq { display: grid; gap: 10px; }
.pj-faq__item { background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius-sm); padding: 0 22px; }
.pj-faq__item summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; font-weight: 800; position: relative; }
.pj-faq__item summary::-webkit-details-marker { display: none; }
.pj-faq__icon { position: absolute; right: 0; top: 50%; width: 22px; height: 22px; margin-top: -11px; border-radius: 50%; background: var(--pj-accent-soft); }
.pj-faq__icon::before, .pj-faq__icon::after { content: ''; position: absolute; left: 50%; top: 50%; background: var(--pj-accent); transform: translate(-50%, -50%); transition: transform 0.3s; }
.pj-faq__icon::before { width: 10px; height: 2px; }
.pj-faq__icon::after { width: 2px; height: 10px; }
.pj-faq__item[open] .pj-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.pj-faq__answer { padding-bottom: 18px; color: var(--pj-muted); }
.pj-faq__answer p { margin: 0; }
.pj-faq-section h2 + .pj-faq, .pj-faq + h2 { margin-top: 40px; }

/* ---------- Final CTA ---------- */
.pj-final { background: var(--pj-accent); color: var(--pj-accent-ink, #fff); text-align: center; }
.pj-final__inner { max-width: 640px; }
.pj-final h2 { color: inherit; }
.pj-final .pj-lead { color: inherit; opacity: 0.85; margin-inline: auto; }
.pj-final .pj-btn--light { background: var(--pj-accent-ink, #fff); color: var(--pj-accent); }

/* ---------- Footer ---------- */
.pj-footer { background: var(--pj-surface); border-top: 1px solid var(--pj-border); padding: clamp(48px, 7vw, 80px) 0 32px; }
.pj-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.pj-footer__brand p { color: var(--pj-muted); max-width: 32ch; margin-top: 16px; }
.pj-footer h2 { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pj-muted); margin-bottom: 16px; }
.pj-footer__menu, .pj-social { display: grid; gap: 8px; }
.pj-social { grid-auto-flow: column; justify-content: start; gap: 18px; }
.pj-footer a { font-weight: 700; }
.pj-footer a:hover { color: var(--pj-accent); }
.pj-footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--pj-border); display: grid; gap: 8px; }
@media (max-width: 900px) { .pj-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .pj-footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Pages ---------- */
.pj-page__head { padding: clamp(40px, 7vw, 80px) 0 clamp(20px, 3vw, 32px); }
.pj-page__head--about, .pj-page__head--shop { background: var(--pj-surface); border-bottom: 1px solid var(--pj-border); margin-bottom: clamp(32px, 5vw, 56px); padding-bottom: clamp(40px, 6vw, 64px); }
.pj-prose { padding-bottom: var(--pj-section); }
.pj-prose h2 { font-size: 1.5rem; margin-top: 2em; }
.pj-prose a { color: var(--pj-accent); font-weight: 700; }
.pj-prose ul, .pj-prose ol { padding-left: 1.4em; margin-bottom: 1em; }
.pj-prose ul { list-style: disc; }
.pj-prose ol { list-style: decimal; }
.pj-contact { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 5vw, 72px); padding-bottom: var(--pj-section); }
.pj-contact__info h2 { font-size: 1.2rem; }
.pj-contact__info address { color: var(--pj-muted); margin: 16px 0; }
@media (max-width: 800px) { .pj-contact { grid-template-columns: 1fr; } }
.pj-404 { min-height: 60vh; display: grid; place-items: center; }

/* ---------- Forms ---------- */
.pj-form { display: grid; gap: 16px; }
.pj-form__row { display: grid; gap: 6px; }
.pj-form__hp { position: absolute; left: -9999px; }
.pj-form label, .pj-woo label { font-weight: 700; font-size: 0.9rem; }
.pj-form input, .pj-form textarea, .pj-woo input[type="text"], .pj-woo input[type="email"], .pj-woo input[type="tel"], .pj-woo input[type="password"], .pj-woo input[type="number"], .pj-woo textarea, .pj-woo select, .pj-woo .select2-container .select2-selection--single { width: 100%; padding: 13px 16px; border: 2px solid var(--pj-border); border-radius: var(--pj-radius-sm); background: var(--pj-surface); font: inherit; color: var(--pj-ink); transition: border-color 0.2s, box-shadow 0.2s; }
.pj-form input:focus, .pj-form textarea:focus, .pj-woo input:focus, .pj-woo textarea:focus, .pj-woo select:focus { outline: none; border-color: var(--pj-accent); box-shadow: 0 0 0 4px var(--pj-accent-soft); }
.pj-form__status { font-weight: 700; color: var(--pj-success); min-height: 1.5em; }
.pj-form__status.is-error { color: var(--pj-error); }
