:root {
	--psml-red: #dd183b;
	--psml-peach: #ffede6;
	--psml-border: #ffd1bf;
	--psml-ink: #241f1d;
	--psml-muted: #6f5d56;
	--psml-sage: #5d7568;
	--psml-gold: #b7791f;
	--psml-white: #ffffff;
	--psml-soft: #fff8f4;
}

.psml-route {
	margin: 0;
	background: var(--psml-peach);
	color: var(--psml-ink);
	font-family: Heebo, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.psml-page {
	min-height: 100vh;
	background:
		linear-gradient(180deg, #fff8f4 0%, #ffede6 46%, #ffffff 100%);
}

.psml-main {
	width: 100%;
}

.psml-shell {
	width: min(100%, 980px);
	margin: 0 auto;
	padding: 18px 16px 96px;
}

.psml-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 22px;
}

.psml-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--psml-ink);
	text-decoration: none;
}

.psml-brand:hover,
.psml-brand:focus {
	color: var(--psml-ink);
	text-decoration: none;
}

.psml-brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	background: var(--psml-red);
	color: var(--psml-white);
	font: 800 0.92rem/1 Poppins, system-ui, sans-serif;
}

.psml-brand-copy {
	display: grid;
	gap: 2px;
}

.psml-brand-name {
	font: 800 1rem/1.05 Poppins, system-ui, sans-serif;
}

.psml-brand-subtitle {
	color: var(--psml-muted);
	font-size: 0.78rem;
	line-height: 1.2;
}

.psml-icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--psml-border);
	border-radius: 8px;
	background: var(--psml-white);
	color: var(--psml-red);
	text-decoration: none;
}

.psml-icon-link:hover,
.psml-icon-link:focus {
	color: var(--psml-red);
	border-color: var(--psml-red);
	text-decoration: none;
}

.psml-icon-link .dashicons {
	width: 22px;
	height: 22px;
	font-size: 22px;
}

.psml-hero {
	padding: 20px 0 22px;
}

.psml-kicker,
.psml-section-kicker {
	margin: 0 0 8px;
	color: var(--psml-red);
	font: 800 0.76rem/1.2 Poppins, system-ui, sans-serif;
	letter-spacing: 0;
	text-transform: uppercase;
}

.psml-hero h1 {
	max-width: 760px;
	margin: 0;
	color: var(--psml-ink);
	font: 800 clamp(2.05rem, 7vw, 4rem)/1.02 Poppins, system-ui, sans-serif;
	letter-spacing: 0;
}

.psml-hero-copy {
	max-width: 640px;
	margin: 14px 0 0;
	color: var(--psml-muted);
	font-size: 1.04rem;
	line-height: 1.55;
}

.psml-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.psml-button,
.psml-small-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 16px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-weight: 800;
	line-height: 1.1;
	text-decoration: none;
	cursor: pointer;
}

.psml-button:hover,
.psml-button:focus,
.psml-small-button:hover,
.psml-small-button:focus {
	text-decoration: none;
}

.psml-button-primary {
	background: var(--psml-red);
	color: var(--psml-white);
}

.psml-button-primary:hover,
.psml-button-primary:focus {
	color: var(--psml-white);
	filter: brightness(0.94);
}

.psml-button-secondary {
	background: var(--psml-white);
	border-color: var(--psml-border);
	color: var(--psml-ink);
}

.psml-button-secondary:hover,
.psml-button-secondary:focus {
	border-color: var(--psml-red);
	color: var(--psml-ink);
}

.psml-small-button {
	min-height: 38px;
	padding: 9px 13px;
	background: var(--psml-ink);
	color: var(--psml-white);
	font-size: 0.88rem;
}

.psml-small-button:hover,
.psml-small-button:focus {
	color: var(--psml-white);
}

.psml-install-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 4px 0 18px;
	padding: 12px;
	border: 1px solid #d4e3d9;
	border-radius: 8px;
	background: #f5fbf7;
	color: var(--psml-ink);
}

.psml-install-banner div {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.psml-install-banner strong {
	font: 800 0.96rem/1.2 Poppins, system-ui, sans-serif;
}

.psml-install-banner span {
	color: #4e6659;
	font-size: 0.88rem;
	line-height: 1.25;
}

.psml-is-standalone .psml-install-banner {
	display: none;
}

.psml-home-install-section {
	display: none;
}

.psml-stat-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin: 8px 0 22px;
}

.psml-stat {
	padding: 13px 10px;
	border: 1px solid var(--psml-border);
	border-radius: 8px;
	background: var(--psml-white);
	text-align: center;
}

.psml-stat-value {
	display: block;
	color: var(--psml-ink);
	font: 800 1.35rem/1 Poppins, system-ui, sans-serif;
}

.psml-stat-label {
	display: block;
	margin-top: 5px;
	color: var(--psml-muted);
	font-size: 0.78rem;
	line-height: 1.1;
}

.psml-section {
	margin-top: 26px;
}

.psml-section-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 12px;
}

.psml-section-header h2,
.psml-install-card h2,
.psml-install-note h2 {
	margin: 0;
	color: var(--psml-ink);
	font: 800 1.35rem/1.15 Poppins, system-ui, sans-serif;
}

.psml-section-header a {
	color: var(--psml-red);
	font-weight: 800;
	text-decoration: none;
}

.psml-continue-card {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr);
	gap: 14px;
	padding: 12px;
	border: 1px solid var(--psml-border);
	border-radius: 8px;
	background: var(--psml-white);
	color: var(--psml-ink);
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(68, 41, 34, 0.08);
}

.psml-continue-card:hover,
.psml-continue-card:focus {
	color: var(--psml-ink);
	border-color: var(--psml-red);
	text-decoration: none;
}

.psml-continue-card img,
.psml-cover-fallback {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 6px;
	background: var(--psml-peach);
}

.psml-cover-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--psml-red);
	font: 800 1rem/1 Poppins, system-ui, sans-serif;
	border: 1px solid var(--psml-border);
}

.psml-continue-copy {
	display: grid;
	align-content: center;
	gap: 6px;
	min-width: 0;
}

.psml-book-title {
	color: var(--psml-ink);
	font: 800 1.05rem/1.18 Poppins, system-ui, sans-serif;
}

.psml-book-subtitle {
	color: var(--psml-muted);
	font-size: 0.9rem;
	line-height: 1.3;
}

.psml-progress {
	display: grid;
	gap: 6px;
	margin-top: 4px;
}

.psml-progress-bar {
	display: block;
	height: 8px;
	overflow: hidden;
	border-radius: 999px;
	background: #f3d8cc;
}

.psml-progress-bar span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--psml-sage);
}

.psml-progress-label {
	color: var(--psml-muted);
	font-size: 0.82rem;
	line-height: 1.2;
}

.psml-empty-card {
	padding: 18px;
	border: 1px solid var(--psml-border);
	border-radius: 8px;
	background: var(--psml-white);
}

.psml-empty-card h3 {
	margin: 0 0 7px;
	color: var(--psml-ink);
	font: 800 1.1rem/1.2 Poppins, system-ui, sans-serif;
}

.psml-empty-card p {
	margin: 0 0 14px;
	color: var(--psml-muted);
	line-height: 1.45;
}

.psml-actions-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin-top: 22px;
}

.psml-action-tile {
	display: grid;
	gap: 7px;
	min-height: 112px;
	padding: 13px 10px;
	border: 1px solid var(--psml-border);
	border-radius: 8px;
	background: var(--psml-white);
	color: var(--psml-ink);
	text-align: left;
	text-decoration: none;
}

.psml-action-tile:hover,
.psml-action-tile:focus {
	color: var(--psml-ink);
	border-color: var(--psml-red);
	text-decoration: none;
}

.psml-action-tile .dashicons {
	width: 24px;
	height: 24px;
	color: var(--psml-red);
	font-size: 24px;
}

.psml-action-tile strong {
	font: 800 0.94rem/1.12 Poppins, system-ui, sans-serif;
}

.psml-action-tile span:last-child {
	color: var(--psml-muted);
	font-size: 0.78rem;
	line-height: 1.25;
}

.psml-book-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.psml-book-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 12px;
	border: 1px solid var(--psml-border);
	border-radius: 14px;
	background: var(--psml-white);
	color: var(--psml-ink);
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);
}

.psml-book-card:hover,
.psml-book-card:focus {
	color: var(--psml-ink);
	border-color: var(--psml-red);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

.psml-book-card-cover {
	display: block;
	margin-bottom: 12px;
	border-radius: 10px;
	background: #f4d8cf;
	overflow: hidden;
	text-decoration: none;
}

.psml-book-card-cover:hover,
.psml-book-card-cover:focus {
	text-decoration: none;
}

.psml-book-card-cover img,
.psml-book-card-cover .psml-cover-fallback {
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	border-radius: 10px;
}

.psml-book-card-copy {
	display: grid;
	gap: 7px;
	min-width: 0;
	margin-bottom: 14px;
}

.psml-book-card-label {
	margin: 0;
	color: var(--psml-red);
	font: 800 0.68rem/1.25 Poppins, system-ui, sans-serif;
	letter-spacing: 0;
	text-transform: uppercase;
}

.psml-book-card-copy h3 {
	margin: 0;
	color: var(--psml-ink);
	font: 800 1rem/1.17 Poppins, system-ui, sans-serif;
}

.psml-book-card-copy span:not(.psml-book-card-label) {
	display: -webkit-box;
	overflow: hidden;
	color: var(--psml-muted);
	font-size: 0.84rem;
	line-height: 1.32;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.psml-card-cta {
	width: fit-content;
	min-height: 40px;
	margin-top: auto;
	padding: 10px 14px;
	font-size: 0.88rem;
}

.psml-listen-hero {
	padding-bottom: 16px;
}

.psml-audio-sort-row {
	display: flex;
	justify-content: flex-end;
	margin: -2px 0 14px;
}

.psml-audio-sort-control {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 7px;
	width: 100%;
}

.psml-audio-sort-control label {
	margin: 0;
	color: var(--psml-red);
	font: 800 10px/1.2 Poppins, system-ui, sans-serif;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.psml-audio-sort-control select {
	min-width: 190px;
	min-height: 42px;
	padding: 9px 36px 9px 13px;
	border: 1px solid var(--psml-border);
	border-radius: 999px;
	background: var(--psml-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23DD183B'/%3E%3C/svg%3E") no-repeat right 14px center;
	color: var(--psml-ink);
	font: 800 0.86rem/1.2 Heebo, system-ui, sans-serif;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: 0 8px 18px rgba(221, 24, 59, 0.06);
}

.psml-audio-sort-control select:focus {
	border-color: var(--psml-red);
	outline: none;
	box-shadow: 0 0 0 3px rgba(221, 24, 59, 0.12);
}

.psml-audio-sort-control button {
	min-height: 42px;
	padding: 9px 16px;
	border: 0;
	border-radius: 999px;
	background: var(--psml-red);
	color: var(--psml-white);
	font: 800 0.78rem/1 Poppins, system-ui, sans-serif;
}

.psml-audio-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.psml-audio-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 12px;
	border: 1px solid var(--psml-border);
	border-radius: 14px;
	background: var(--psml-white);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);
	min-height: 100%;
}

.psml-audio-cover {
	display: block;
	margin-bottom: 2px;
	border-radius: 10px;
	background: #f4d8cf;
	color: var(--psml-red);
	text-decoration: none;
	overflow: hidden;
}

.psml-audio-cover:hover,
.psml-audio-cover:focus {
	color: var(--psml-red);
	text-decoration: none;
}

.psml-audio-cover img,
.psml-audio-cover .psml-cover-fallback {
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: contain;
	border-radius: 10px;
	background: var(--psml-soft);
}

.psml-audio-copy {
	display: grid;
	gap: 10px;
	min-width: 0;
	flex: 1 1 auto;
}

.psml-audio-copy h3 {
	margin: 0;
	color: var(--psml-ink);
	font: 800 1rem/1.22 Poppins, system-ui, sans-serif;
}

.psml-audio-actions {
	display: grid;
	gap: 8px;
	margin-top: auto;
}

.psml-audio-actions .psml-button {
	width: 100%;
	min-height: 40px;
	padding: 10px 12px;
	font-size: 0.9rem;
}

.psml-audio-book-link {
	color: var(--psml-red);
	font-size: 0.9rem;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
}

.psml-audio-book-link:hover,
.psml-audio-book-link:focus {
	color: var(--psml-red);
	text-decoration: underline;
}

.psml-player-screen {
	max-width: 1120px;
}

.psml-player-frame {
	border: 1px solid var(--psml-border);
	border-radius: 8px;
	background: var(--psml-white);
	overflow: hidden;
}

.psml-player-frame .ps-audio-player-page {
	padding: 18px !important;
}

.psml-biblechat-card {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	padding: 18px;
	border: 1px solid rgba(255, 209, 191, 0.24);
	border-radius: 8px;
	background: radial-gradient(circle at top left, rgba(255, 237, 230, 0.18), transparent 36%), linear-gradient(135deg, #2a171a 0%, #111111 100%);
	color: var(--psml-white);
	box-shadow: 0 18px 36px rgba(36, 19, 22, 0.18);
}

.psml-biblechat-art {
	display: block;
	color: var(--psml-white);
	text-decoration: none;
}

.psml-biblechat-art:hover,
.psml-biblechat-art:focus {
	color: var(--psml-white);
	text-decoration: none;
}

.psml-biblechat-art img,
.psml-biblechat-art .psml-cover-fallback {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 8px;
	background: var(--psml-peach);
}

.psml-biblechat-copy {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.psml-biblechat-kicker {
	margin: 0;
	color: var(--psml-border);
	font: 800 0.76rem/1.2 Poppins, system-ui, sans-serif;
	letter-spacing: 0;
	text-transform: uppercase;
}

.psml-biblechat-copy h3 {
	margin: 0;
	color: var(--psml-white);
	font: 800 1.35rem/1.16 Poppins, system-ui, sans-serif;
}

.psml-biblechat-copy p:not(.psml-biblechat-kicker) {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.42;
}

.psml-biblechat-player {
	padding: 9px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
}

.psml-biblechat-player .mejs-container,
.psml-biblechat-player .mejs-controls,
.psml-biblechat-player .wp-audio-shortcode {
	width: 100% !important;
	background: transparent !important;
}

.psml-biblechat-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.psml-biblechat-actions .psml-button {
	min-height: 38px;
	padding: 9px 12px;
	font-size: 0.88rem;
}

.psml-biblechat-episode-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.psml-biblechat-episode-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 12px;
	border: 1px solid var(--psml-border);
	border-radius: 14px;
	background: var(--psml-white);
	color: var(--psml-ink);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);
}

.psml-biblechat-episode-art {
	display: block;
	margin-bottom: 12px;
	border-radius: 10px;
	background: #f4d8cf;
	color: var(--psml-red);
	text-decoration: none;
	overflow: hidden;
}

.psml-biblechat-episode-art:hover,
.psml-biblechat-episode-art:focus {
	color: var(--psml-red);
	text-decoration: none;
}

.psml-biblechat-episode-art img,
.psml-biblechat-episode-art .psml-cover-fallback {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 10px;
	background: var(--psml-soft);
}

.psml-biblechat-episode-copy {
	display: grid;
	gap: 7px;
	min-width: 0;
	margin-bottom: 14px;
}

.psml-biblechat-episode-copy h3 {
	margin: 0;
	color: var(--psml-ink);
	font: 800 1rem/1.17 Poppins, system-ui, sans-serif;
}

.psml-biblechat-episode-copy span {
	display: -webkit-box;
	overflow: hidden;
	color: var(--psml-muted);
	font-size: 0.84rem;
	line-height: 1.32;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.psml-biblechat-episode-copy .psml-biblechat-episode-date {
	display: block;
	color: var(--psml-sage);
	font-weight: 800;
	-webkit-line-clamp: initial;
}

.psml-mini-player {
	margin: auto 0 10px;
}

.psml-mini-player-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	min-height: 38px;
	padding: 9px 11px;
	border: 1px solid var(--psml-border);
	border-radius: 8px;
	background: var(--psml-peach);
	color: var(--psml-red);
	font: 800 0.88rem/1 Heebo, system-ui, sans-serif;
	cursor: pointer;
}

.psml-mini-player-button:hover,
.psml-mini-player-button:focus {
	border-color: var(--psml-red);
	background: #fff6f2;
	color: var(--psml-red);
}

.psml-mini-player-button .dashicons {
	width: 18px;
	height: 18px;
	font-size: 18px;
	line-height: 1;
}

.psml-mini-player.is-playing .psml-mini-player-button {
	background: var(--psml-red);
	border-color: var(--psml-red);
	color: var(--psml-white);
}

.psml-biblechat-episode-actions {
	display: grid;
	gap: 8px;
}

.psml-biblechat-episode-actions .psml-button {
	width: 100%;
	min-height: 40px;
	padding: 10px 12px;
	font-size: 0.9rem;
}

.psml-biblechat-episode-actions .psml-button-secondary {
	background: var(--psml-white);
	border-color: var(--psml-red);
	color: var(--psml-red);
}

.psml-biblechat-episode-actions .psml-button-secondary:hover,
.psml-biblechat-episode-actions .psml-button-secondary:focus {
	background: var(--psml-peach);
	border-color: var(--psml-red);
	color: var(--psml-red);
}

.psml-spotify-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
}

.psml-spotify-icon {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}

.psml-shop-hero,
.psml-plans-hero {
	padding-bottom: 16px;
}

.psml-shop-mobile-categories {
	display: none;
}

.psml-shop-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.psml-shop-category-card {
	display: grid;
	gap: 7px;
	min-height: 118px;
	padding: 14px;
	border: 1px solid var(--psml-border);
	border-radius: 8px;
	background: var(--psml-white);
	color: var(--psml-ink);
	text-decoration: none;
}

.psml-shop-category-card:hover,
.psml-shop-category-card:focus {
	color: var(--psml-ink);
	border-color: var(--psml-red);
	text-decoration: none;
}

.psml-shop-category-card .dashicons {
	width: 24px;
	height: 24px;
	color: var(--psml-red);
	font-size: 24px;
}

.psml-shop-category-card strong {
	font: 800 0.98rem/1.15 Poppins, system-ui, sans-serif;
}

.psml-shop-category-card span:last-child {
	color: var(--psml-muted);
	font-size: 0.82rem;
}

.psml-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.psml-plan-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.psml-product-card,
.psml-plan-card {
	display: grid;
	gap: 12px;
	padding: 12px;
	border: 1px solid var(--psml-border);
	border-radius: 14px;
	background: var(--psml-white);
	box-shadow: 0 12px 28px rgba(68, 41, 34, 0.08);
}

.psml-product-cover {
	display: block;
	overflow: hidden;
	border-radius: 10px;
	background: #f4d8cf;
	color: var(--psml-red);
	text-decoration: none;
}

.psml-product-cover:hover,
.psml-product-cover:focus {
	color: var(--psml-red);
	text-decoration: none;
}

.psml-product-cover img,
.psml-product-cover .psml-cover-fallback {
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: contain;
	border-radius: 10px;
	background: var(--psml-soft);
}

.psml-product-copy,
.psml-plan-copy {
	display: grid;
	align-content: start;
	gap: 9px;
	min-width: 0;
}

.psml-product-copy h3,
.psml-plan-copy h3 {
	margin: 0;
	color: var(--psml-ink);
	font: 800 1rem/1.22 Poppins, system-ui, sans-serif;
}

.psml-product-price {
	color: var(--psml-sage);
	font-weight: 800;
	line-height: 1.25;
}

.psml-product-price del {
	color: var(--psml-muted);
	font-weight: 600;
}

.psml-product-price ins {
	color: var(--psml-sage);
	text-decoration: none;
}

.psml-product-card .psml-button,
.psml-plan-card .psml-button {
	width: 100%;
	min-height: 40px;
	padding: 10px 12px;
	font-size: 0.9rem;
}

.psml-plan-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.psml-plan-card {
	align-content: space-between;
	padding: 18px;
}

.psml-plan-copy ul {
	display: grid;
	gap: 8px;
	margin: 2px 0 0;
	padding-left: 18px;
	color: var(--psml-muted);
	line-height: 1.42;
}

.psml-install-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.psml-install-card,
.psml-install-note {
	border: 1px solid var(--psml-border);
	border-radius: 8px;
	background: var(--psml-white);
	padding: 18px;
}

.psml-install-card .dashicons {
	width: 30px;
	height: 30px;
	margin-bottom: 10px;
	color: var(--psml-red);
	font-size: 30px;
}

.psml-install-card ol {
	margin: 12px 0 0;
	padding-left: 20px;
	color: var(--psml-muted);
	line-height: 1.55;
}

.psml-install-note p,
.psml-installed-note,
.psml-install-status {
	color: var(--psml-muted);
	line-height: 1.55;
}

.psml-install-status {
	max-width: 620px;
	margin: 14px 0 0;
	padding: 12px 14px;
	border: 1px solid #d4e3d9;
	border-radius: 8px;
	background: #f5fbf7;
	color: #4e6659;
	font-weight: 700;
}

.psml-platform-match {
	border-color: #b8d7c5;
	box-shadow: 0 0 0 2px #e7f4ec;
}

.psml-install-card-attention {
	animation: psml-install-pulse 1.4s ease-out 1;
}

@keyframes psml-install-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(221, 24, 59, 0.28);
	}

	100% {
		box-shadow: 0 0 0 12px rgba(221, 24, 59, 0);
	}
}

.psml-bottom-nav {
	position: fixed !important;
	top: auto !important;
	right: 14px !important;
	bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
	left: 14px !important;
	z-index: 2147483000;
	display: none;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 4px;
	width: auto;
	max-width: 620px;
	margin: 0 auto;
	padding: 7px;
	border: 1px solid rgba(255, 209, 191, 0.92);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 16px 38px rgba(40, 24, 20, 0.16);
	backdrop-filter: blur(14px);
	transform: none !important;
	will-change: auto;
}

.psml-bottom-nav.psml-bottom-nav-pinned {
	position: fixed !important;
	top: auto !important;
	right: 14px !important;
	bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
	left: 14px !important;
	transform: none !important;
	z-index: 2147483000 !important;
	contain: layout style paint !important;
	isolation: isolate;
}

.psml-bottom-nav-link {
	display: grid;
	justify-items: center;
	gap: 3px;
	min-width: 0;
	padding: 7px 3px 5px;
	border-radius: 7px;
	color: var(--psml-muted);
	font-size: 0.68rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.psml-bottom-nav-link:hover,
.psml-bottom-nav-link:focus {
	color: var(--psml-red);
	text-decoration: none;
}

.psml-bottom-nav-link .dashicons {
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.psml-bottom-nav-link.is-active {
	background: var(--psml-peach);
	color: var(--psml-red);
}

@media (max-width: 782px) {
	body.psml-app-surface {
		padding-bottom: 84px;
	}

	.psml-home-install-section {
		display: block;
		padding: 12px 14px 0;
		background: var(--psml-peach);
	}

	.psml-is-standalone .psml-home-install-section {
		display: none;
	}

	.psml-home-install-inner {
		display: grid;
		gap: 12px;
		max-width: 720px;
		margin: 0 auto 12px;
		padding: 14px;
		border: 1px solid var(--psml-border);
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.96);
		box-shadow: 0 10px 26px rgba(68, 41, 34, 0.08);
	}

	.psml-home-install-copy {
		display: grid;
		gap: 5px;
	}

	.psml-home-install-copy h2 {
		margin: 0;
		color: var(--psml-ink);
		font: 800 1.22rem/1.16 Poppins, system-ui, sans-serif;
		letter-spacing: 0;
	}

	.psml-home-install-copy p {
		margin: 0;
		color: var(--psml-muted);
		font-size: 0.92rem;
		line-height: 1.38;
	}

	.psml-home-install-copy .psml-section-kicker {
		margin: 0;
		color: var(--psml-red);
	}

	.psml-home-install-actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.psml-home-install-actions .psml-button {
		width: 100%;
		min-height: 42px;
		padding-right: 10px;
		padding-left: 10px;
		font-size: 0.88rem;
		white-space: normal;
		text-align: center;
	}

	body.psml-app-surface.woocommerce .psml-shop-mobile-categories {
		display: block;
		margin: 0 0 18px;
		padding: 0 0 4px;
	}

	body.psml-app-surface.woocommerce .psml-shop-mobile-categories-header {
		display: grid;
		gap: 4px;
		margin: 0 0 12px;
	}

	body.psml-app-surface.woocommerce .psml-shop-mobile-categories-header .psml-section-kicker {
		margin: 0;
	}

	body.psml-app-surface.woocommerce .psml-shop-mobile-categories-header h2 {
		margin: 0;
		color: var(--psml-ink);
		font: 800 1.22rem/1.16 Poppins, system-ui, sans-serif;
		letter-spacing: 0;
	}

	body.psml-app-surface.woocommerce .psml-shop-mobile-categories .psml-shop-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.psml-app-surface.woocommerce .psml-shop-mobile-categories .psml-shop-category-card {
		min-height: 104px;
		padding: 12px;
		border-radius: 12px;
	}

	.psml-bottom-nav {
		position: fixed !important;
		top: auto !important;
		bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
		display: grid !important;
	}

	body.psml-app-surface #gt_float_wrapper,
	body.psml-app-surface .gt_float_switcher,
	body.psml-app-surface .trp-floater-ls,
	body.psml-app-surface .weglot-container,
	body.psml-app-surface .country-selector,
	body.psml-app-surface .goog-te-gadget-simple {
		top: auto !important;
		bottom: 96px !important;
		z-index: 9997 !important;
	}

	body.psml-app-surface.woocommerce ul.products,
	body.psml-app-surface .woocommerce ul.products {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 14px !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	body.psml-app-surface.woocommerce ul.products::before,
	body.psml-app-surface.woocommerce ul.products::after,
	body.psml-app-surface .woocommerce ul.products::before,
	body.psml-app-surface .woocommerce ul.products::after {
		display: none !important;
	}

	body.psml-app-surface.woocommerce ul.products li.product,
	body.psml-app-surface .woocommerce ul.products li.product {
		float: none !important;
		display: flex;
		flex-direction: column;
		width: auto !important;
		min-width: 0;
		margin: 0 !important;
		padding: 12px;
		border: 1px solid var(--psml-border);
		border-radius: 14px;
		background: var(--psml-white);
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);
	}

	body.psml-app-surface.woocommerce ul.products li.product a img,
	body.psml-app-surface .woocommerce ul.products li.product a img {
		width: 100%;
		aspect-ratio: 2 / 3;
		margin: 0 0 10px;
		border-radius: 10px;
		background: var(--psml-soft);
		object-fit: contain;
	}

	body.psml-app-surface.woocommerce ul.products li.product .woocommerce-loop-product__title,
	body.psml-app-surface .woocommerce ul.products li.product .woocommerce-loop-product__title {
		color: var(--psml-ink);
		font: 800 1rem/1.17 Poppins, system-ui, sans-serif;
		letter-spacing: 0;
	}

	body.psml-app-surface.woocommerce ul.products li.product .button,
	body.psml-app-surface .woocommerce ul.products li.product .button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 40px;
		margin-top: auto;
		border-radius: 8px;
		background: var(--psml-red);
		color: var(--psml-white);
		font-weight: 800;
		line-height: 1.1;
		text-align: center;
	}
}

@media (max-width: 700px) {
	.psml-shell {
		padding-right: 14px;
		padding-left: 14px;
	}

	.psml-hero h1 {
		font-size: 2.32rem;
	}

	.psml-hero-copy {
		font-size: 0.98rem;
	}

	.psml-actions-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.psml-book-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.psml-audio-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.psml-audio-sort-row {
		justify-content: stretch;
	}

	.psml-audio-sort-control {
		justify-content: stretch;
	}

	.psml-audio-sort-control select {
		flex: 1 1 auto;
		min-width: 0;
	}

	.psml-shop-category-grid,
	.psml-product-grid,
	.psml-plan-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.psml-biblechat-card {
		grid-template-columns: 108px minmax(0, 1fr);
	}

	.psml-install-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 420px) {
	.psml-hero h1 {
		font-size: 2.05rem;
	}

	.psml-hero-actions,
	.psml-button {
		width: 100%;
	}

	.psml-button {
		white-space: normal;
	}

	.psml-install-banner {
		align-items: flex-start;
		flex-direction: column;
	}

	.psml-continue-card {
		grid-template-columns: 78px minmax(0, 1fr);
	}

	.psml-shop-category-grid,
	.psml-plan-grid {
		grid-template-columns: 1fr;
	}

	body.psml-app-surface.woocommerce .psml-shop-mobile-categories .psml-shop-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.psml-biblechat-card {
		grid-template-columns: 1fr;
	}

	.psml-biblechat-art {
		width: 132px;
		margin: 0 auto;
	}

	.psml-card-cta {
		width: fit-content;
	}

	.psml-audio-actions .psml-button {
		width: 100%;
	}

	.psml-audio-sort-control {
		align-items: stretch;
		flex-direction: column;
		gap: 6px;
	}

	.psml-audio-sort-control select,
	.psml-audio-sort-control button {
		width: 100%;
	}
}
