/* Design system tokens — used by the store homepage redesign.
   The tokens match the /design/h/k5omF084mRUDttruN_fKuQ Store.html palette.
   Google Fonts are loaded via <link rel="preconnect"> + <link rel="stylesheet">
   in store.go (registerFontPreconnect ExtraAsset) so they download in
   parallel with this stylesheet — keeping the @import here would serialise
   font loading and cause weight/glyph swaps mid-paint on mobile. */

:root {
	--pl-orange: #f9672e;
	--pl-orange-ink: #c2461a;
	--pl-orange-soft: #fde9dd;
	--pl-orange-tint: #fff5ee;
	--pl-cream: #faf6f1;
	--pl-cream-2: #f5efe8;
	--pl-border: #e8e0d8;
	--pl-border-strong: #d7ccbf;
	--pl-ink: #2a1f16;
	--pl-ink-2: #5b4a3a;
	--pl-ink-3: #8b7a68;
	--pl-firstlook: oklch(70% 0.09 200);
	--pl-firstlook-soft: oklch(94% 0.03 200);
	--pl-k252: oklch(78% 0.13 75);
	--pl-k252-soft: oklch(95% 0.05 85);
	--pl-xp3: oklch(60% 0.14 295);
	--pl-xp3-soft: oklch(94% 0.04 295);
	--pl-font-display: 'Figtree', 'Inter', system-ui, sans-serif;
	--pl-font-body: 'Inter', system-ui, sans-serif;
	--pl-font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
}

.no-spin-buttons input::-webkit-outer-spin-button,
.no-spin-buttons input::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
	margin: 0 !important;
}
.no-spin-buttons input[type=number] {
	-moz-appearance: textfield !important;
}

/* Store listing layout */
.store-container {
	max-width: 1200px;
}

.store-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
	flex-wrap: wrap;
	gap: 12px;
}

.store-header-left {
	flex: 1;
	min-width: 200px;
}

.store-header-right {
	flex: 0 0 auto;
}

.store-search-field {
	max-width: 280px;
	min-width: 200px;
}

.store-search-field .v-field {
	border-radius: 8px;
	background: #fff;
}

.store-listing-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	flex-wrap: wrap;
	gap: 8px;
}

.store-listing-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #333;
	margin: 0;
}

.store-listing-controls {
	display: flex;
	align-items: center;
	gap: 4px;
}

/* Product grid */
.store-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 0;
}

@media (max-width: 1264px) {
	.store-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 960px) {
	.store-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* Product card */
.store-card {
	border: 1px solid #e8e0d8;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	cursor: pointer;
}

.store-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.store-card-image {
	background: #f5efe8;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
}

.store-card-image img {
	border-radius: 8px;
	max-height: 200px;
	object-fit: contain;
}

.store-card-info {
	padding: 12px 16px 16px;
	text-align: center;
}

.store-card-sku {
	font-size: 0.75rem;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.store-card-name {
	font-size: 0.95rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 6px;
	line-height: 1.3;
}

.store-card-price {
	font-size: 0.85rem;
	color: #c75a00;
	font-weight: 600;
}

/* Store sidebar navigation */
.store-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 8px 0;
}

.store-sidebar-item {
	display: block;
	padding: 6px 16px;
	font-size: 0.9rem;
	color: #333;
	text-decoration: none;
	cursor: pointer;
	border-radius: 4px;
	transition: color 0.15s ease;
}

.store-sidebar-item:hover {
	color: #c75a00;
}

.store-sidebar-item--indented {
	padding-left: 32px;
	font-size: 0.85rem;
}

.store-sidebar-item--active {
	color: #c75a00;
	font-weight: 600;
}

.store-sidebar-header {
	padding: 10px 16px 4px;
	font-size: 0.9rem;
	font-weight: 600;
	color: #333;
}

/* Amostra (sample) ribbon banner */
.store-card-image {
  position: relative;
  overflow: hidden;
}

.amostra-banner {
  position: absolute;
  top: 22px;
  left: -32px;
  background: #e53935;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 40px;
  transform: rotate(-45deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.sold-out-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(183, 28, 28, 0.85);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 4px;
  z-index: 1;
}

/* Cart bubble CSS is now injected via modules/ui/sitemenu.go to ensure it is
   present on every page that renders the site menu, not just store pages. */

/* Home search bar */
.home-search-bar {
	background: #f4eee7;
	border-radius: 9999px;
	overflow: hidden;
	max-width: 700px;
	margin: 0 auto;
}
.home-search-menu-btn {
	border: none !important;
	border-right: 1px solid #e0d5cc !important;
	border-radius: 9999px 0 0 9999px !important;
	letter-spacing: 0 !important;
	font-weight: 600 !important;
	font-size: 0.85rem !important;
	padding: 0 20px !important;
	min-width: auto !important;
}
.home-search-bar {
	border: 2px solid #f9672e;
}
.home-search-input .v-field {
	border: none !important;
	box-shadow: none !important;
	background: transparent !important;
}
.home-search-input .v-field__outline {
	display: none !important;
}
.home-search-type-list {
	border: 1px solid #f9672e;
	border-radius: 8px !important;
	max-height: 280px;
	overflow-y: auto;
}
.home-search-icon-btn {
	border-radius: 0 9999px 9999px 0 !important;
	min-width: 56px !important;
}

/* Best sellers section */
.best-sellers-section {
	background-color: #f9672e;
}
.best-sellers-tabs {
	background: transparent !important;
}
.best-sellers-tab {
	border-color: rgba(255,255,255,0.5) !important;
	color: white !important;
}
.best-sellers-tab.v-btn--active {
	background: white !important;
	color: #f9672e !important;
	border-color: white !important;
}
.best-sellers-carousel {
	max-width: 600px;
	background: transparent !important;
}
.best-sellers-carousel .v-window__controls .v-btn {
	background: rgba(50, 50, 50, 0.8) !important;
	color: white !important;
}

/* Specials section */
.specials-title {
	color: #f9672e;
}
.specials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	max-width: 960px;
	margin: 0 auto;
}
@media (max-width: 768px) {
	.specials-grid {
		grid-template-columns: 1fr;
		max-width: 320px;
	}
}
.specials-card {
	text-align: center;
}
.specials-card-image {
	border-radius: 20px;
	padding: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 260px;
	position: relative;
}
.specials-card-img {
	max-height: 200px;
	max-width: 80%;
	object-fit: contain;
	border-radius: 12px;
}
.specials-badge {
	position: absolute;
	top: -6px;
	right: -6px;
	background: #f9672e;
	color: white;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 8px;
	border-radius: 50%;
	min-width: 42px;
	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.specials-card-type {
	text-transform: uppercase;
	color: #f9672e;
	font-size: 0.8rem;
	font-weight: 600;
	margin-top: 16px;
	letter-spacing: 0.5px;
}
.specials-card-name {
	font-size: 1.1rem;
	font-weight: 700;
	color: #333;
	margin-top: 4px;
}
.specials-card-price {
	font-size: 0.9rem;
	color: #666;
	margin-top: 4px;
}

/* Showcase (Em Destaque) section */
.showcase-title {
	color: #f9672e;
}

.showcase-tabs {
	background: transparent !important;
}

.showcase-tab {
	border-color: #ccc !important;
	color: #333 !important;
}

.showcase-tab.v-btn--active {
	background: transparent !important;
	color: #f9672e !important;
	border-color: #f9672e !important;
}

.showcase-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	max-width: 800px;
	margin: 0 auto;
}

@media (max-width: 600px) {
	.showcase-grid {
		grid-template-columns: 1fr;
		max-width: 360px;
	}
}

.showcase-card {
	text-align: center;
	border: 1px solid #e8e0d8;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	cursor: pointer;
}

.showcase-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.showcase-card-image {
	background: #f5efe8;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 220px;
}

.showcase-card-img {
	max-height: 180px;
	max-width: 80%;
	object-fit: contain;
	border-radius: 10px;
}

.showcase-card-info {
	padding: 16px;
}

.showcase-card-type {
	text-transform: uppercase;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 4px;
	color: #f9672e;
}

.showcase-card-name {
	font-size: 1rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 6px;
	line-height: 1.3;
}

.showcase-card-price {
	font-size: 0.9rem;
	color: #666;
}
/* Monthly topics section */
.monthly-title {
	color: #f9672e;
}
.monthly-rows {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 24px;
}
.monthly-row {
	display: flex;
	gap: 16px;
	align-items: stretch;
}
.monthly-left-card {
	flex: 0 0 220px;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	min-height: 300px;
	background: #f5efe8;
	display: flex;
	align-items: center;
	justify-content: center;
}
/*
.monthly-left-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	z-index: 1;
}
		*/
.monthly-left-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}
.monthly-left-logo {
	position: relative;
	max-width: 160px;
	max-height: 100px;
	z-index: 2;
}
.monthly-slide-group {
	flex: 1;
	min-width: 0;
	position: relative;
}
.monthly-slide-group .v-slide-group__content {
	border-block-end-style: none !important;
}
.monthly-slide-group .v-slide-group__prev,
.monthly-slide-group .v-slide-group__next {
	position: absolute;
	top: 50%;
	transform: translateY(-75%);
	z-index: 3;
	background: rgba(30, 30, 30, 0.85);
	color: white;
	border-radius: 50%;
	min-width: 40px;
	max-width: 40px;
	height: 40px;
}
.monthly-slide-group .v-slide-group__prev {
	left: 0;
}
.monthly-slide-group .v-slide-group__next {
	right: 0;
}
.monthly-slide-group .v-slide-group__prev:hover,
.monthly-slide-group .v-slide-group__next:hover {
	background: rgba(0, 0, 0, 0.95);
}
/* Size store-cards when they appear inside the monthly slide group */
.monthly-slide-group .store-card {
	width: 220px;
	margin: 0 8px;
	flex-shrink: 0;
}
@media (max-width: 768px) {
	.monthly-row {
		flex-direction: column;
	}
	.monthly-left-card {
		flex: none;
		width: 100%;
		min-height: 200px;
	}
}

/* ------------------------------------------------------------------
   Audience-first hero (store homepage)
   ------------------------------------------------------------------ */
.store-hero {
	max-width: 1200px;
	margin: 0 auto;
}
.hero-copy {
	text-align: center;
	margin-bottom: 32px;
}
.hero-title {
	font-size: 2rem;
	font-weight: 800;
	color: #333;
	line-height: 1.15;
	margin: 0 0 12px;
}
.hero-subtitle {
	font-size: 1.05rem;
	color: #555;
	max-width: 680px;
	margin: 0 auto;
	line-height: 1.5;
}
.hero-tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 900px) {
	.hero-tiles { grid-template-columns: 1fr; }
}
.hero-tile {
	display: block;
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	background: #fff;
	border: 1px solid #eee;
}
.hero-tile:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.hero-tile-inner {
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	height: 100%;
}
.hero-tile-icon { color: #f9672e; }
.hero-tile-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.6px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #f9672e;
}
.hero-tile-title {
	font-size: 1.35rem;
	font-weight: 800;
	margin: 4px 0;
	color: #222;
	line-height: 1.2;
}
.hero-tile-body {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.5;
	margin: 0;
	flex-grow: 1;
}
.hero-tile-cta {
	margin-top: 12px;
	font-weight: 700;
	color: #f9672e;
	display: inline-flex;
	align-items: center;
}
.hero-tile--church { background: #fff7f2; }
.hero-tile--family { background: #f2fbf4; }
.hero-tile--browse { background: #f4f5ff; }
.hero-sample-row {
	text-align: center;
	margin-top: 24px;
}
.hero-sample-link {
	color: #f9672e;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 9999px;
	border: 1px dashed #f9672e;
}
.hero-sample-link:hover { background: #fff3eb; }

/* ------------------------------------------------------------------
   Subscription comparison section
   ------------------------------------------------------------------ */
.compare-section { background: #fafafa; }
.compare-title {
	font-size: 1.75rem;
	font-weight: 800;
	color: #222;
	margin: 0 0 6px;
}
.compare-subtitle {
	color: #555;
	max-width: 640px;
	margin: 0 auto;
}
.compare-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1100px;
	margin: 0 auto;
}
@media (max-width: 900px) {
	.compare-grid { grid-template-columns: 1fr; }
}
.compare-col {
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0,0,0,0.05);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}
.compare-col:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.compare-header {
	padding: 24px;
	text-align: center;
	color: #fff;
}
.compare-logo {
	max-height: 64px;
	max-width: 100%;
	object-fit: contain;
}
.compare-name {
	font-size: 1.5rem;
	font-weight: 800;
}
.compare-age {
	margin-top: 8px;
	font-size: 1.05rem;
	font-weight: 600;
	opacity: 0.9;
}
.compare-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-grow: 1;
}
.compare-phase {
	font-weight: 700;
	color: #333;
	font-size: 1rem;
}
.compare-price {
	font-size: 1.15rem;
	font-weight: 700;
	color: #c75a00;
}
.compare-features {
	list-style: none;
	padding: 0;
	margin: 8px 0 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: #333;
	font-size: 0.95rem;
}
.compare-features li::before {
	content: "✓ ";
	font-weight: 800;
	color: #2e7d32;
	margin-right: 6px;
}
.compare-cta { align-self: stretch; margin-top: auto !important; }

/* ------------------------------------------------------------------
   Product-type landing banner
   ------------------------------------------------------------------ */
.type-banner {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 20px;
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.type-banner-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 20px;
}
.type-banner-icon { color: #f9672e; margin-bottom: 8px; }
.type-banner-title {
	font-size: 1.6rem;
	font-weight: 800;
	color: #222;
	margin: 0;
}
.type-banner-subtitle {
	color: #555;
	margin: 6px 0 0;
	max-width: 560px;
}
.type-banner-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 800px) {
	.type-banner-cols { grid-template-columns: 1fr; }
}
.type-banner-col { padding: 4px 0; }
.type-banner-label {
	text-transform: uppercase;
	letter-spacing: 0.6px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #f9672e;
	margin-bottom: 4px;
}
.type-banner-body {
	font-size: 0.95rem;
	color: #333;
	line-height: 1.5;
	margin: 0;
}

/* ==================================================================
   Store homepage redesign (Store.html design)
   ================================================================== */

.pl-store { font-family: var(--pl-font-body); color: var(--pl-ink); background: var(--pl-cream); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
.pl-store h1, .pl-store h2, .pl-store h3, .pl-store h4 { font-family: var(--pl-font-display); letter-spacing: -0.01em; }
.pl-store .mono { font-family: var(--pl-font-mono); }
.pl-container { max-width: 1280px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* Pill / chip */
.pl-pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; font-size: 12px; font-weight: 600; white-space: nowrap; background: var(--pl-cream-2); color: var(--pl-ink-2); border: 1px solid var(--pl-border); }
.pl-pill--orange { background: var(--pl-orange-soft); color: var(--pl-orange-ink); border-color: #fbcfb1; }
.pl-pill--outline { background: transparent; color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); }
.pl-pill--dark { background: var(--pl-ink); color: #fff; border-color: var(--pl-ink); }
.pl-pill--dot { width: 6px; height: 6px; background: var(--pl-orange); border-radius: 99px; display: inline-block; }

/* Button */
.pl-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; border: 1px solid transparent; text-decoration: none; transition: transform .08s, box-shadow .15s, background .15s; }
.pl-btn:active { transform: scale(0.98); }
.pl-btn--primary { background: var(--pl-orange); color: #fff; border-color: var(--pl-orange); }
.pl-btn--primary:hover { background: #f0581e; }
.pl-btn--dark { background: var(--pl-ink); color: #fff; border-color: var(--pl-ink); }
.pl-btn--outline { background: transparent; color: var(--pl-ink); border-color: var(--pl-border-strong); }
.pl-btn--soft { background: var(--pl-orange-soft); color: var(--pl-orange-ink); border-color: transparent; }
.pl-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }
.pl-btn--lg { padding: 14px 22px; font-size: 15px; }
.pl-btn--full { width: 100%; justify-content: center; }

/* ---------------- How-it-works banner ---------------- */
.pl-banner { background: var(--pl-orange-tint); color: var(--pl-orange-ink); border-bottom: 1px solid var(--pl-border); }
.pl-banner--dark { background: var(--pl-ink); color: #fff; border-bottom-color: transparent; }
.pl-banner-row { display: flex; align-items: center; gap: 14px; padding: 10px 0; font-size: 13px; }
.pl-banner-row .pl-banner-title { font-weight: 600; }
.pl-banner-row .pl-banner-body { opacity: 0.85; }
.pl-banner-row .pl-banner-link { margin-left: auto; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; color: inherit; }
@media (max-width: 720px) {
	.pl-banner-row .pl-banner-body { display: none; }
}

/* ---------------- Hero (Bold) ---------------- */
.pl-hero { background: var(--pl-ink); color: #fff; position: relative; overflow: hidden; }
.pl-hero::before { content: ""; position: absolute; right: -10%; top: -20%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(249,103,46,0.35), transparent 60%); pointer-events: none; }
.pl-hero-inner { padding-top: 56px; padding-bottom: 48px; position: relative; }
.pl-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.pl-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.pl-hero-title { font-size: clamp(40px, 5.5vw, 68px); line-height: 1.02; margin: 18px 0; font-weight: 800; letter-spacing: -0.025em; }
.pl-hero-title .pl-accent { color: var(--pl-orange); }
.pl-hero-sub { font-size: 18px; color: rgba(255,255,255,0.72); margin: 0; max-width: 560px; line-height: 1.5; }
.pl-hero-actions { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.pl-hero-stats { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.pl-hero-stat-n { font-family: var(--pl-font-display); font-size: 32px; font-weight: 800; color: var(--pl-orange); line-height: 1; }
.pl-hero-stat-l { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.pl-hero-tiles { position: relative; aspect-ratio: 4/5; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; }
.pl-hero-tile { border-radius: 18px; padding: 18px; color: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.pl-hero-tile--tall { grid-row: span 2; }
.pl-hero-tile-kicker { font-family: var(--pl-font-display); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; }
.pl-hero-tile-ages { font-family: var(--pl-font-display); font-size: 28px; font-weight: 800; line-height: 1; }
.pl-hero-tile-ages--sm { font-size: 24px; }
.pl-hero-tile-label { font-size: 12px; opacity: 0.85; margin-top: 4px; }
.pl-hero-tile--firstlook { background: var(--pl-firstlook); }
.pl-hero-tile--k252 { background: var(--pl-k252); }
.pl-hero-tile--xp3 { background: var(--pl-xp3); }
@media (max-width: 860px) {
	.pl-hero-grid { grid-template-columns: 1fr; }
	.pl-hero-inner { padding-top: 40px; padding-bottom: 32px; }
}

/* ---------------- Plans section ---------------- */
.pl-plans { background: var(--pl-cream); padding: 72px 0; border-bottom: 1px solid var(--pl-border); }
.pl-section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.pl-section-title { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1; margin: 12px 0 8px; font-weight: 800; letter-spacing: -0.02em; }
.pl-section-desc { margin: 0; font-size: 16px; color: var(--pl-ink-2); max-width: 640px; line-height: 1.5; }
.pl-billing-toggle { display: flex; gap: 6px; padding: 4px; background: #fff; border: 1px solid var(--pl-border); border-radius: 999px; }
.pl-billing-toggle button { padding: 8px 14px; border-radius: 999px; border: 0; font-size: 13px; font-weight: 600; cursor: pointer; background: transparent; color: var(--pl-ink-2); font-family: inherit; }
.pl-billing-toggle button.active { background: var(--pl-ink); color: #fff; }
.pl-billing-toggle .pl-discount { color: var(--pl-orange); margin-left: 4px; }

.pl-plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pl-plan { background: #fff; border: 1px solid var(--pl-border); border-radius: 22px; padding: 24px; position: relative; display: flex; flex-direction: column; gap: 18px; overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.pl-plan:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -20px rgba(0,0,0,0.2); }
.pl-plan--featured { border: 2px solid var(--pl-plan-color, var(--pl-orange)); box-shadow: 0 16px 40px -20px rgba(0,0,0,0.2); }
.pl-plan-badge { position: absolute; top: 14px; right: 14px; }
.pl-plan-head { margin: -24px -24px 0; padding: 20px 24px 16px; background: var(--pl-plan-soft, var(--pl-cream-2)); border-bottom: 2px solid var(--pl-plan-color, var(--pl-orange)); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pl-plan-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--pl-plan-color, var(--pl-orange)); color: #fff; font-family: var(--pl-font-display); font-weight: 800; font-size: 18px; display: grid; place-items: center; }
.pl-plan-name { font-family: var(--pl-font-display); font-size: 22px; font-weight: 800; }
.pl-plan-ages { font-size: 12px; color: var(--pl-ink-2); font-weight: 600; }
.pl-plan-blurb { margin: 0; font-size: 14.5px; color: var(--pl-ink-2); line-height: 1.5; }
.pl-plan-topics-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--pl-ink-3); font-weight: 700; margin-bottom: 8px; }
.pl-plan-topics { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.pl-plan-topics li { display: flex; gap: 10px; font-size: 14px; color: var(--pl-ink); align-items: center; }
.pl-plan-topic-tick { width: 18px; height: 18px; border-radius: 99px; background: var(--pl-plan-soft, var(--pl-cream-2)); color: var(--pl-plan-color, var(--pl-orange)); display: grid; place-items: center; flex-shrink: 0; font-weight: 800; }
.pl-plan-foot { border-top: 1px dashed var(--pl-border); padding-top: 16px; margin-top: auto; }
.pl-plan-price-row { display: flex; align-items: baseline; gap: 6px; }
.pl-plan-price-from { font-size: 12px; color: var(--pl-ink-3); }
.pl-plan-price-big { font-family: var(--pl-font-display); font-size: 30px; font-weight: 800; }
.pl-plan-price-mo { font-size: 13px; color: var(--pl-ink-2); }
.pl-plan-altlink { display: block; text-align: center; margin-top: 10px; font-size: 13px; color: var(--pl-ink-2); text-decoration: underline; text-underline-offset: 3px; }

.pl-combo { margin-top: 28px; padding: 18px 22px; background: #fff; border: 1px dashed var(--pl-border-strong); border-radius: 16px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pl-combo-avatars { display: flex; }
.pl-combo-avatar { width: 34px; height: 34px; border-radius: 99px; color: #fff; border: 2px solid #fff; display: grid; place-items: center; font-family: var(--pl-font-display); font-weight: 800; font-size: 12px; }
.pl-combo-avatar + .pl-combo-avatar { margin-left: -10px; }
.pl-combo-copy { flex: 1; min-width: 240px; }
.pl-combo-title { font-weight: 700; font-size: 14px; }
.pl-combo-desc { font-size: 13px; color: var(--pl-ink-2); margin-top: 2px; }
@media (max-width: 980px) {
	.pl-plans-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ---------------- Explorer (4 product types) ---------------- */
.pl-explorer { padding: 72px 0; background: #fff; }
.pl-types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 44px; }
.pl-type-card { text-align: left; cursor: pointer; background: #fff; color: var(--pl-ink); border: 1px solid var(--pl-border); border-radius: 18px; padding: 22px; display: flex; flex-direction: column; gap: 10px; min-height: 188px; position: relative; transition: all .15s; font-family: inherit; text-decoration: none; }
.pl-type-card:hover { background: var(--pl-cream); transform: translateY(-2px); }
.pl-type-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--pl-orange-soft); color: var(--pl-orange-ink); display: grid; place-items: center; }
.pl-type-name { font-family: var(--pl-font-display); font-size: 19px; font-weight: 800; margin-top: 6px; }
.pl-type-short { font-size: 12px; font-weight: 600; color: var(--pl-ink-3); text-transform: uppercase; letter-spacing: 0.06em; }
.pl-type-desc { font-size: 13.5px; color: var(--pl-ink-2); line-height: 1.45; margin-top: 4px; }
.pl-type-ex { margin-top: auto; padding-top: 10px; font-size: 11.5px; color: var(--pl-ink-3); font-family: var(--pl-font-mono); }
@media (max-width: 980px) { .pl-types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pl-types-grid { grid-template-columns: 1fr; } }

/* ---------------- Monthly Spotlight ---------------- */
.pl-spotlight { padding: 72px 0; background: var(--pl-ink); color: #fff; border-top: 1px solid var(--pl-border); }
.pl-spotlight-title { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1; margin: 12px 0 8px; font-weight: 800; letter-spacing: -0.02em; }
.pl-spotlight-sub { margin: 0; font-size: 17px; color: rgba(255,255,255,0.72); max-width: 620px; line-height: 1.5; }
.pl-spotlight-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 20px; margin-bottom: 24px; }
.pl-idea-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.pl-idea-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pl-orange); }
.pl-idea-text { font-family: var(--pl-font-display); font-size: 22px; font-weight: 700; line-height: 1.25; margin: 0; }
.pl-verse { padding: 14px; border-radius: 12px; background: rgba(249,103,46,0.08); border-left: 3px solid var(--pl-orange); font-style: italic; font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.85); }
.pl-weeks-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.pl-weeks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pl-week-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 8px; min-height: 140px; }
.pl-week-n { font-family: var(--pl-font-mono); font-size: 11px; color: rgba(255,255,255,0.5); }
.pl-week-title { font-family: var(--pl-font-display); font-weight: 800; font-size: 16px; line-height: 1.25; }
.pl-week-focus { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: auto; }

.pl-line-head { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; margin-top: 32px; }
.pl-line-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pl-line-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: background .15s; }
.pl-line-card:hover { background: rgba(255,255,255,0.08); }
.pl-line-color-strip { height: 6px; }
.pl-line-body { padding: 18px; display: flex; gap: 14px; align-items: center; }
.pl-line-thumb { width: 72px; height: 72px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; color: #fff; font-family: var(--pl-font-display); font-weight: 800; font-size: 20px; }
.pl-line-name { font-family: var(--pl-font-display); font-weight: 800; font-size: 16px; }
.pl-line-ages { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.pl-line-price { font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 8px; font-weight: 600; }
.pl-line-arrow { margin-left: auto; color: rgba(255,255,255,0.5); }

@media (max-width: 980px) {
	.pl-spotlight-grid { grid-template-columns: 1fr; }
	.pl-weeks-grid { grid-template-columns: repeat(2, 1fr); }
	.pl-line-row { grid-template-columns: 1fr; }
}

/* ---------------- Help block ---------------- */
.pl-helpblock { padding: 60px 0; background: var(--pl-cream-2); border-top: 1px solid var(--pl-border); }
.pl-helpblock-inner { max-width: 860px; margin: 0 auto; text-align: center; padding: 0 24px; }
.pl-helpblock-icon { width: 54px; height: 54px; border-radius: 99px; background: var(--pl-orange-soft); color: var(--pl-orange-ink); display: grid; place-items: center; margin: 0 auto 14px; }
.pl-helpblock-title { font-size: 28px; font-weight: 800; margin: 0 0 8px; letter-spacing: -0.02em; font-family: var(--pl-font-display); }
.pl-helpblock-desc { font-size: 15px; color: var(--pl-ink-2); margin: 0 auto 22px; max-width: 540px; line-height: 1.5; }
.pl-helpblock-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Monthly spotlight — tabs + panels ---------------- */
.pl-spotlight-body { display: flex; flex-direction: column; gap: 18px; }
.pl-spot-tabs {
	display: flex; gap: 4px; padding: 4px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 999px;
	max-width: 520px;
	margin-bottom: 12px;
}
.pl-spot-tab {
	flex: 1; padding: 10px 18px;
	background: transparent; border: 1px solid transparent;
	border-radius: 999px;
	color: rgba(255,255,255,0.72);
	font-size: 13.5px; font-weight: 600;
	cursor: pointer; font-family: inherit;
	transition: color .15s, background .15s, border-color .15s;
}
.pl-spot-tab:hover { color: #fff; }
.pl-spot-tab--active {
	background: rgba(255,255,255,0.08);
	color: #fff;
}
.pl-spot-panels { position: relative; }
.pl-spot-panel { display: flex; flex-direction: column; gap: 20px; }
.pl-spot-period-row {
	display: flex; align-items: baseline; gap: 8px;
	font-family: var(--pl-font-display); font-weight: 800;
	font-size: clamp(22px, 2.4vw, 28px);
	flex-wrap: wrap;
}
.pl-spot-period { color: rgba(255,255,255,0.88); }
.pl-spot-sep { color: rgba(255,255,255,0.4); font-weight: 400; }
.pl-spot-title-word { }
.pl-spot-phase-row {
	margin-top: 8px; display: flex; align-items: baseline;
	font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em;
}
.pl-spot-phase { font-weight: 700; color: rgba(255,255,255,0.85); }
.pl-spot-age { font-weight: 500; }

.pl-idea-card { border-left: 3px solid var(--pl-orange); }
.pl-week-card { position: relative; }
.pl-week-foot { display: flex; gap: 8px; align-items: center; margin-top: auto; padding-top: 8px; flex-wrap: wrap; }
.pl-week-ref {
	font-family: var(--pl-font-mono); font-size: 10.5px;
	color: rgba(255,255,255,0.75);
	background: rgba(255,255,255,0.08);
	padding: 3px 8px; border-radius: 99px;
}
.pl-week-date {
	font-family: var(--pl-font-mono); font-size: 10.5px;
	color: rgba(255,255,255,0.55);
}

.pl-spot-empty {
	padding: 40px 20px; text-align: center;
	color: rgba(255,255,255,0.7); font-size: 14.5px;
	background: rgba(255,255,255,0.04);
	border: 1px dashed rgba(255,255,255,0.15);
	border-radius: 18px;
}

.pl-spot-cta-row { display: flex; justify-content: flex-end; margin-top: 8px; }

@media (max-width: 720px) {
	.pl-spot-tabs { max-width: 100%; }
	.pl-spot-tab { padding: 8px 12px; font-size: 13px; }
}

/* Subscribed-state badge on plan cards. Sits inside .pl-plan-head as a
   flex child pushed to the trailing edge so it shares the head's soft
   background — no separate strip behind it. */
.pl-plan-badge--subscribed {
	margin-left: auto;
	background: #256c2d; color: #fff;
	padding: 5px 11px; border-radius: 999px;
	font-size: 11.5px; font-weight: 700;
	letter-spacing: 0.02em;
	border: 1px solid #1f5a26;
	display: inline-flex; align-items: center; gap: 5px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.pl-plan-badge--subscribed::before {
	content: "✓"; font-weight: 800; font-size: 12px;
}

/* Church-size pill selector on plan cards */
.pl-plan-size { display: flex; flex-direction: column; gap: 8px; }
.pl-size-pills {
	display: flex; flex-wrap: wrap; gap: 6px;
}
.pl-size-pill {
	padding: 6px 11px; border-radius: 999px;
	background: transparent;
	border: 1px solid var(--pl-border);
	color: var(--pl-ink-2);
	font-size: 12px; font-weight: 600;
	cursor: pointer; font-family: inherit;
	transition: background .12s, border-color .12s, color .12s;
	white-space: nowrap;
}
.pl-size-pill:hover {
	border-color: var(--pl-plan-color, var(--pl-orange));
	color: var(--pl-plan-color, var(--pl-orange));
	background: var(--pl-plan-soft, var(--pl-orange-tint));
}
.pl-size-pill--active {
	background: var(--pl-plan-color, var(--pl-orange));
	border-color: var(--pl-plan-color, var(--pl-orange));
	color: #fff;
}
.pl-size-pill--active:hover {
	background: var(--pl-plan-color, var(--pl-orange));
	color: #fff;
}

/* ---------------- Plan-selector quiz (/loja/quiz) ---------------- */
.pl-quiz-section { padding: 64px 0 80px; background: var(--pl-cream-2); border-top: 1px solid var(--pl-border); }
.pl-quiz-section .pl-section-head { margin-bottom: 32px; }
.pl-quiz-section .pl-section-desc {
	max-width: 580px; margin: 14px auto 0;
	color: var(--pl-ink-2); font-size: 15.5px; line-height: 1.55;
}
.pl-quiz {
	max-width: 720px; margin: 0 auto; padding: 0 20px;
}
.pl-quiz-card {
	background: #fff;
	border: 1px solid var(--pl-border);
	border-radius: 22px;
	padding: 32px clamp(20px, 3vw, 36px);
	box-shadow: 0 6px 26px rgba(15,23,42,0.06);
}
.pl-quiz-card--intro { text-align: center; padding: 36px 24px; }
.pl-quiz-progress {
	font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
	text-transform: uppercase; color: var(--pl-orange-ink); margin-bottom: 14px;
}
.pl-quiz-q {
	font-family: var(--pl-font-display); font-size: clamp(22px, 2.6vw, 28px);
	font-weight: 800; line-height: 1.25; margin: 0 0 6px;
	letter-spacing: -0.01em;
}
.pl-quiz-hint { color: var(--pl-ink-2); font-size: 14.5px; margin: 0 0 22px; }
.pl-quiz-opts { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 24px; }
.pl-quiz-opt {
	display: flex; align-items: center; gap: 14px;
	padding: 14px 18px; border-radius: 14px;
	background: #fff; border: 1.5px solid var(--pl-border);
	color: var(--pl-ink); font-size: 15px; font-weight: 500;
	font-family: inherit; text-align: left; cursor: pointer;
	transition: border-color .12s, background .12s, transform .12s, box-shadow .12s;
}
.pl-quiz-opt:hover {
	border-color: var(--pl-orange);
	background: var(--pl-orange-tint, var(--pl-cream-2));
}
.pl-quiz-opt.is-selected {
	border-color: var(--pl-orange);
	background: var(--pl-orange-soft);
	color: var(--pl-orange-ink);
	box-shadow: 0 0 0 3px rgba(255,140,40,0.14);
}
.pl-quiz-opt-letter {
	flex: 0 0 auto; width: 32px; height: 32px; border-radius: 999px;
	display: grid; place-items: center;
	background: var(--pl-cream-2); color: var(--pl-ink-2);
	font-weight: 800; font-size: 13px;
	border: 1px solid var(--pl-border);
}
.pl-quiz-opt.is-selected .pl-quiz-opt-letter {
	background: var(--pl-orange); color: #fff; border-color: var(--pl-orange);
}
.pl-quiz-opt-text { flex: 1; line-height: 1.4; }
.pl-quiz-nav {
	display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.pl-quiz-nav .pl-btn[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.pl-quiz-result { text-align: center; }
.pl-quiz-result-eyebrow {
	font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
	text-transform: uppercase; color: var(--pl-orange-ink); margin-bottom: 10px;
}
.pl-quiz-result-intro { color: var(--pl-ink-2); font-size: 15px; margin: 0 0 14px; }
.pl-quiz-result-title {
	font-family: var(--pl-font-display); font-size: clamp(24px, 3vw, 32px);
	font-weight: 800; line-height: 1.2; margin: 0 0 12px; letter-spacing: -0.01em;
}
.pl-quiz-result-desc {
	color: var(--pl-ink); font-size: 15.5px; line-height: 1.55;
	max-width: 540px; margin: 0 auto 26px;
}
.pl-quiz-result-actions {
	display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.pl-quiz-empty {
	text-align: center; padding: 40px 20px; color: var(--pl-ink-2);
}

@media (max-width: 640px) {
	.pl-quiz-card { padding: 24px 18px; }
	.pl-quiz-nav { flex-direction: column-reverse; align-items: stretch; }
	.pl-quiz-nav .pl-btn { width: 100%; }
	.pl-quiz-nav > span { display: none; }
}


