/* Peptis Research Cart Builder — Typeform-style quiz styles */

.peptis-rcb {
	--prcb-cream: #fff8f1;
	--prcb-surface: #faf3ea;
	--prcb-burgundy: #5A171D;
	--prcb-burgundy-deep: #3d020a;
	--prcb-gold: #C7A86B;
	--prcb-sage: #7E8F6E;
	--prcb-ink: #1e1b16;
	--prcb-muted: #544242;
	--prcb-line: #eadfd2;
	font-family: Manrope, Inter, system-ui, sans-serif;
	color: var(--prcb-ink);
	background: var(--prcb-cream);
	border-radius: 28px;
	min-height: 70vh;
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.peptis-rcb * { box-sizing: border-box; }

/* The quiz page is a standalone landing page; hide theme-generated titles. */
body.peptis-rcb-page {
	overflow-x: hidden;
	background: var(--prcb-cream, #fff8f1);
	--wp--style--root--padding-top: 0px;
	--wp--style--root--padding-right: 0px;
	--wp--style--root--padding-bottom: 0px;
	--wp--style--root--padding-left: 0px;
}
body.peptis-rcb-page .entry-title,
body.peptis-rcb-page .page-title,
body.peptis-rcb-page header.entry-header,
body.peptis-rcb-page .ast-single-entry-banner,
body.peptis-rcb-page .ast-archive-description,
body.peptis-rcb-page .wp-block-post-title,
body.peptis-rcb-page .wp-block-site-title,
body.peptis-rcb-page .wp-block-navigation,
body.peptis-rcb-page header.wp-block-template-part,
body.peptis-rcb-page footer.wp-block-template-part,
body.peptis-rcb-page .elementor-location-header,
body.peptis-rcb-page .elementor-location-footer,
body.peptis-rcb-page #masthead,
body.peptis-rcb-page .site-header,
body.peptis-rcb-page .site-footer,
body.peptis-rcb-page .peptis-rcb-sticky,
body.peptis-rcb-page #peptis-rcb-sticky,
body.peptis-rcb-page .skip-link {
	display: none !important;
}
body.peptis-rcb-page .site-content,
body.peptis-rcb-page .wp-site-blocks,
body.peptis-rcb-page .has-global-padding,
body.peptis-rcb-page .wp-block-post-content,
body.peptis-rcb-page main,
body.peptis-rcb-page main.wp-block-group {
	background: var(--prcb-cream, #fff8f1);
	padding: 0 !important;
	margin: 0 !important;
	max-width: none !important;
}
body.peptis-rcb-page .wp-site-blocks > main > .wp-block-group {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
body.peptis-rcb-page .site-content > .ast-container,
body.peptis-rcb-page .ast-container,
body.peptis-rcb-page .content-area,
body.peptis-rcb-page .site-main,
body.peptis-rcb-page article,
body.peptis-rcb-page .entry-content {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}
body.peptis-rcb-page .peptis-rcb {
	width: 100vw;
	min-height: 100svh;
	margin-left: calc(50% - 50vw);
	border-radius: 0;
	background:
		radial-gradient(circle at 82% 18%, rgba(199, 168, 107, .18), transparent 30%),
		linear-gradient(180deg, #fff8f1 0%, #faf3ea 100%);
}

/* Post-checkout thank-you host (thx.researchpeptis.com) */
body.peptis-rcb-thx-page {
	overflow-x: hidden;
	background: var(--prcb-cream, #fff8f1);
	margin: 0;
}
body.peptis-rcb-thx-page header.wp-block-template-part,
body.peptis-rcb-thx-page footer.wp-block-template-part,
body.peptis-rcb-thx-page .wp-block-post-title,
body.peptis-rcb-thx-page .wp-block-site-title,
body.peptis-rcb-thx-page .wp-block-navigation,
body.peptis-rcb-thx-page .peptis-rcb-sticky,
body.peptis-rcb-thx-page #peptis-rcb-sticky {
	display: none !important;
}
.peptis-rcb-thx {
	width: 100vw;
	min-height: 100svh;
	margin-left: calc(50% - 50vw);
	border-radius: 0;
	background:
		radial-gradient(circle at 82% 18%, rgba(199, 168, 107, .18), transparent 30%),
		linear-gradient(180deg, #fff8f1 0%, #faf3ea 100%);
}
.prcb-thx-items {
	margin: 12px 0 18px;
	padding-left: 20px;
	color: var(--prcb-muted);
	line-height: 1.7;
}
.prcb-thx-total {
	font-size: 16px;
	margin: 0 0 20px;
}

.prcb-frame {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: clamp(18px, 3.5vw, 44px);
	display: flex;
	flex-direction: column;
	min-height: inherit;
}

/* Progress */
.prcb-nav {
	position: sticky;
	top: 0;
	z-index: 20;
	margin: 0 0 clamp(18px, 3vw, 34px);
	padding: 12px 0 10px;
	background: linear-gradient(180deg, rgba(255, 248, 241, .98) 0%, rgba(255, 248, 241, .92) 72%, rgba(255, 248, 241, 0) 100%);
	backdrop-filter: blur(10px);
}
body.admin-bar .prcb-nav { top: 32px; }
.prcb-progress {
	height: 4px;
	border-radius: 999px;
	background: var(--prcb-line);
	overflow: hidden;
	margin-bottom: 10px;
}
.prcb-progress__bar {
	height: 100%;
	background: linear-gradient(90deg, var(--prcb-burgundy), var(--prcb-gold));
	border-radius: 999px;
	transition: width .4s ease;
}
.prcb-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 36px;
	margin-bottom: 0;
}
.prcb-back {
	background: #fff;
	border: 1px solid var(--prcb-line);
	box-shadow: 0 8px 20px rgba(61, 2, 10, .06);
	color: var(--prcb-burgundy);
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	padding: 9px 14px;
	border-radius: 999px;
}
.prcb-back:hover { color: var(--prcb-burgundy-deep); background: var(--prcb-surface); border-color: var(--prcb-burgundy); }
.prcb-count { font-size: 13px; font-weight: 700; color: var(--prcb-muted); letter-spacing: .04em; }

/* Stage + animation */
.prcb-stage {
	flex: 1;
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
}
.peptis-rcb.is-result .prcb-stage {
	max-width: 1040px;
}
.peptis-rcb.is-intro {
	min-height: 100svh;
}
.peptis-rcb.is-intro .prcb-stage {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 20px;
}
.prcb-anim { animation: prcbFadeUp .38s ease both; }
@keyframes prcbFadeUp {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
	.prcb-anim { animation: none; }
}

/* Typography */
.prcb-eyebrow {
	margin: 0 0 12px;
	color: var(--prcb-gold);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.prcb-title {
	font-family: "Noto Serif", Georgia, serif;
	font-weight: 500;
	color: var(--prcb-burgundy);
	font-size: clamp(24px, 3.4vw, 36px);
	line-height: 1.18;
	margin: 0 0 14px;
}
.prcb-title--hero { font-size: clamp(32px, 5vw, 52px); color: var(--prcb-burgundy-deep); }
.prcb-help {
	color: var(--prcb-muted);
	font-size: 16px;
	line-height: 1.65;
	margin: 0 0 26px;
	max-width: 60ch;
}
.prcb-help a { color: var(--prcb-burgundy); }
.prcb-hint { color: var(--prcb-muted); font-size: 13px; margin: 14px 0 0; }
.prcb-section-title {
	font-family: "Noto Serif", Georgia, serif;
	font-weight: 500;
	color: var(--prcb-burgundy);
	font-size: 20px;
	margin: 30px 0 12px;
}
.prcb-error { color: #a8323c; font-size: 14px; font-weight: 700; margin: 12px 0 0; }
.prcb-footnote {
	font-size: 13px;
	line-height: 1.6;
	color: var(--prcb-muted);
	border-top: 1px solid var(--prcb-line);
	padding-top: 16px;
	margin-top: 26px;
}
.prcb-ruo-foot {
	margin: 34px 0 0;
	font-size: 12px;
	color: var(--prcb-muted);
	opacity: .85;
	line-height: 1.6;
}

/* Options */
.prcb-options { display: grid; gap: 12px; max-width: 620px; }
.prcb-option-row {
	display: flex;
	align-items: stretch;
	gap: 10px;
}
.prcb-option-row--solo .prcb-option { flex: 1; }
.prcb-option-row .prcb-option { flex: 1; min-width: 0; }
.prcb-option__play {
	flex: 0 0 auto;
	align-self: center;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--prcb-burgundy);
	cursor: pointer;
	border-radius: 999px;
	transition: transform .15s ease, color .15s ease, opacity .15s ease;
}
.prcb-option__play-tip {
	position: absolute;
	right: calc(100% + 10px);
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: max-content;
	max-width: 220px;
	padding: 8px 12px;
	border-radius: 10px;
	background: var(--prcb-burgundy-deep);
	color: var(--prcb-cream);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45;
	text-align: left;
	box-shadow: 0 10px 24px rgba(61, 2, 10, .22);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .15s ease, visibility .15s ease, transform .15s ease;
}
.prcb-option__play-tip::after {
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	margin-top: -5px;
	border: 5px solid transparent;
	border-left-color: var(--prcb-burgundy-deep);
}
.prcb-option__play:hover .prcb-option__play-tip,
.prcb-option__play:focus-visible .prcb-option__play-tip {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(-2px);
}
.prcb-option__play:hover {
	transform: scale(1.06);
	color: var(--prcb-burgundy-deep);
}
.prcb-option__play:focus-visible {
	outline: 2px solid var(--prcb-burgundy);
	outline-offset: 3px;
}
.prcb-option__play svg { display: block; }
.prcb-option {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	text-align: left;
	background: #fff;
	border: 1.5px solid var(--prcb-line);
	border-radius: 14px;
	padding: 15px 18px;
	font: inherit;
	font-size: 16px;
	color: var(--prcb-ink);
	cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease, background .15s ease;
}
.prcb-option:hover {
	border-color: var(--prcb-burgundy);
	box-shadow: 0 10px 24px rgba(61, 2, 10, .08);
	transform: translateY(-1px);
}
.prcb-option.is-selected {
	border-color: var(--prcb-burgundy);
	background: var(--prcb-surface);
	box-shadow: 0 0 0 2px var(--prcb-burgundy) inset;
}
.prcb-option__key {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid var(--prcb-line);
	border-radius: 7px;
	font-size: 12px;
	font-weight: 800;
	color: var(--prcb-muted);
	background: var(--prcb-cream);
}
.prcb-option.is-selected .prcb-option__key,
.prcb-option:hover .prcb-option__key {
	border-color: var(--prcb-burgundy);
	color: var(--prcb-burgundy);
}
.prcb-option__text {
	display: grid;
	gap: 3px;
}
.prcb-option__label { line-height: 1.45; }
.prcb-option__hint {
	display: block;
	color: var(--prcb-muted);
	font-size: 13px;
	line-height: 1.45;
}
.prcb-option.is-selected .prcb-option__hint {
	color: var(--prcb-muted);
}
.prcb-option--multi.is-selected .prcb-option__key {
	background: var(--prcb-burgundy);
	border-color: var(--prcb-burgundy);
	color: var(--prcb-cream);
}
.prcb-options--multi .prcb-option--multi.is-selected {
	border-color: var(--prcb-burgundy);
	background: var(--prcb-surface);
	box-shadow: 0 0 0 2px var(--prcb-burgundy) inset;
}

/* Buttons */
.prcb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font: inherit;
	font-size: 16px;
	font-weight: 800;
	border-radius: 999px;
	padding: 14px 28px;
	cursor: pointer;
	text-decoration: none;
	border: 1.5px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.prcb-btn:disabled { opacity: .5; cursor: not-allowed; }
.prcb-btn--primary {
	background: var(--prcb-burgundy);
	color: var(--prcb-cream);
	box-shadow: 0 14px 30px rgba(61, 2, 10, .22);
}
.prcb-btn--primary:hover:not(:disabled) {
	background: var(--prcb-burgundy-deep);
	color: var(--prcb-cream);
	transform: translateY(-2px);
}
.prcb-btn--gold {
	background: var(--prcb-gold);
	color: var(--prcb-burgundy-deep);
}
.prcb-btn--gold:hover { transform: translateY(-2px); color: var(--prcb-burgundy-deep); }
.prcb-btn--ghost {
	background: transparent;
	border-color: var(--prcb-line);
	color: var(--prcb-muted);
}
.prcb-btn--ghost:hover { border-color: var(--prcb-burgundy); color: var(--prcb-burgundy); }
.prcb-btn--outline {
	background: transparent;
	border-color: rgba(199, 168, 107, 0.75);
	color: var(--prcb-burgundy-deep);
}
.prcb-btn--outline:hover {
	border-color: var(--prcb-gold);
	color: var(--prcb-burgundy-deep);
	transform: translateY(-2px);
}
.prcb-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; align-items: center; }
.prcb-cta-row--stack { margin-top: 32px; }
.prcb-help--cta { margin-top: 12px; }

/* Inputs */
.prcb-input {
	width: 100%;
	font: inherit;
	font-size: 16px;
	color: var(--prcb-ink);
	background: #fff;
	border: 1.5px solid var(--prcb-line);
	border-radius: 12px;
	padding: 13px 16px;
}
.prcb-input:focus {
	outline: none;
	border-color: var(--prcb-burgundy);
	box-shadow: 0 0 0 3px rgba(90, 23, 29, .12);
}
.prcb-search { max-width: 520px; }
.prcb-field { display: block; max-width: 460px; margin-bottom: 16px; font-size: 14px; font-weight: 700; color: var(--prcb-muted); }
.prcb-field .prcb-input { margin-top: 6px; font-weight: 400; }
.prcb-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	max-width: 560px;
	font-size: 13px;
	color: var(--prcb-muted);
	line-height: 1.6;
	margin: 6px 0 4px;
}
.prcb-consent input { margin-top: 3px; }

/* Search results */
.prcb-search-results { margin-top: 14px; display: grid; gap: 8px; max-width: 620px; }
.prcb-result {
	display: grid;
	grid-template-columns: 44px 1fr auto auto;
	align-items: center;
	gap: 12px;
	width: 100%;
	text-align: left;
	background: #fff;
	border: 1.5px solid var(--prcb-line);
	border-radius: 12px;
	padding: 8px 14px 8px 8px;
	font: inherit;
	cursor: pointer;
	transition: border-color .15s ease;
	appearance: none;
	-webkit-appearance: none;
	color: var(--prcb-ink);
}
.prcb-result:hover,
.prcb-result:focus,
.prcb-result:focus-visible {
	border-color: var(--prcb-burgundy);
	color: var(--prcb-ink);
}
.prcb-result.is-selected { border-color: var(--prcb-sage); background: var(--prcb-surface); }
.prcb-result img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; background: var(--prcb-surface); }
.prcb-result__name { font-size: 14px; font-weight: 700; color: var(--prcb-ink); }
.prcb-result__price { font-size: 14px; color: var(--prcb-muted); white-space: nowrap; }
.prcb-result__action { font-size: 13px; font-weight: 800; color: var(--prcb-burgundy); white-space: nowrap; }
.prcb-result.is-selected .prcb-result__action { color: var(--prcb-sage); }

.prcb-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.prcb-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--prcb-surface);
	border: 1px solid var(--prcb-line);
	border-radius: 999px;
	padding: 6px 8px 6px 14px;
	font-size: 13px;
	font-weight: 700;
	color: var(--prcb-burgundy);
}
.prcb-chip button {
	border: none;
	background: rgba(90, 23, 29, .1);
	color: var(--prcb-burgundy);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
}

/* Result page: product grid */
.prcb-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 14px;
}
.prcb-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: #fff;
	border: 1.5px solid var(--prcb-line);
	border-radius: 16px;
	padding: 14px;
	cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.prcb-card:hover { border-color: var(--prcb-burgundy); }
.prcb-card.is-selected {
	border-color: var(--prcb-sage);
	box-shadow: 0 0 0 2px var(--prcb-sage) inset;
	background: var(--prcb-surface);
}
.prcb-card input {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 18px;
	height: 18px;
	accent-color: var(--prcb-sage);
	z-index: 2;
}
.prcb-card__media {
	position: relative;
}
.prcb-card__actions {
	position: absolute;
	left: 8px;
	bottom: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
	z-index: 2;
}
.prcb-card__play.prcb-option__play {
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--prcb-burgundy);
	cursor: pointer;
}
.prcb-card__info {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1.5px solid rgba(90, 23, 29, .22);
	border-radius: 999px;
	background: rgba(255, 255, 255, .94);
	color: var(--prcb-burgundy);
	font-size: 14px;
	font-weight: 800;
	font-style: italic;
	font-family: Georgia, 'Times New Roman', serif;
	line-height: 1;
	cursor: help;
	padding: 0;
}
.prcb-card__info-icon {
	transform: translateY(-1px);
}
.prcb-card__info-tip {
	position: absolute;
	left: 0;
	bottom: calc(100% + 8px);
	width: min(240px, 70vw);
	padding: 10px 12px;
	border-radius: 12px;
	background: var(--prcb-ink);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	font-style: normal;
	line-height: 1.45;
	text-align: left;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .15s ease, visibility .15s ease;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
	z-index: 5;
}
.prcb-card__info-tip::after {
	content: '';
	position: absolute;
	left: 12px;
	top: 100%;
	border: 6px solid transparent;
	border-top-color: var(--prcb-ink);
}
.prcb-card__info:hover .prcb-card__info-tip,
.prcb-card__info:focus-visible .prcb-card__info-tip,
.prcb-card__info.is-open .prcb-card__info-tip {
	opacity: 1;
	visibility: visible;
}
.prcb-card img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 10px;
	background: var(--prcb-surface);
}
.prcb-card__name { font-size: 14px; font-weight: 700; line-height: 1.4; }
.prcb-card__price { font-size: 14px; color: var(--prcb-muted); }

/* Add-ons */
.prcb-addons { display: grid; gap: 10px; max-width: 640px; }
.prcb-addon {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-areas: "name price" "desc desc";
	gap: 4px 14px;
	background: #fff;
	border: 1.5px solid var(--prcb-line);
	border-radius: 14px;
	padding: 14px 16px 14px 44px;
	cursor: pointer;
	transition: border-color .15s ease;
}
.prcb-addon:hover { border-color: var(--prcb-burgundy); }
.prcb-addon.is-selected { border-color: var(--prcb-sage); background: var(--prcb-surface); }
.prcb-addon input {
	position: absolute;
	left: 16px;
	top: 18px;
	width: 18px;
	height: 18px;
	accent-color: var(--prcb-sage);
}
.prcb-addon__name { grid-area: name; font-size: 15px; font-weight: 800; color: var(--prcb-ink); }
.prcb-addon__desc { grid-area: desc; font-size: 13px; color: var(--prcb-muted); line-height: 1.55; }
.prcb-addon__price { grid-area: price; font-size: 14px; font-weight: 700; color: var(--prcb-burgundy); white-space: nowrap; }
.prcb-addon--soon { cursor: default; padding-left: 16px; background: var(--prcb-surface); border-style: dashed; }
.prcb-soon {
	display: inline-block;
	margin-left: 8px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--prcb-sage);
	background: rgba(126, 143, 110, .14);
	border-radius: 999px;
	padding: 3px 10px;
	vertical-align: middle;
}

/* Membership plan card */
.prcb-plan {
	background: linear-gradient(135deg, var(--prcb-burgundy-deep) 0%, var(--prcb-burgundy) 70%);
	color: var(--prcb-cream);
	border-radius: 18px;
	padding: 22px 24px;
	max-width: 640px;
}
.prcb-plan__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 10px;
}
.prcb-plan__name {
	font-family: "Noto Serif", Georgia, serif;
	font-size: 20px;
}
.prcb-plan__price { font-size: 24px; font-weight: 800; color: var(--prcb-gold); }
.prcb-plan__price small { font-size: 13px; font-weight: 600; color: rgba(255, 248, 241, .7); }
.prcb-plan__pitch { margin: 0; font-size: 14px; line-height: 1.65; color: rgba(255, 248, 241, .9); }
.prcb-plan__pitch strong { color: var(--prcb-gold); }

/* Comparison + rules */
.prcb-compare {
	max-width: 640px;
	margin-top: 12px;
	border: 1px solid var(--prcb-line);
	border-radius: 12px;
	background: #fff;
	padding: 0;
}
.prcb-compare summary {
	cursor: pointer;
	font-weight: 800;
	font-size: 14px;
	color: var(--prcb-burgundy);
	padding: 13px 16px;
}
.prcb-compare__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	margin: 0;
}
.prcb-compare__table th,
.prcb-compare__table td {
	text-align: left;
	padding: 8px 16px;
	border-top: 1px solid var(--prcb-line);
}
.prcb-compare__table th { color: var(--prcb-burgundy); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.prcb-compare .prcb-footnote { border: none; margin: 0; padding: 10px 16px 14px; }
.prcb-rules { margin: 0; padding: 4px 16px 14px 32px; font-size: 13px; color: var(--prcb-muted); line-height: 1.7; }

/* Inline email capture on result */
.prcb-result-contact {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1.5px solid var(--prcb-line);
}
.prcb-result-contact .prcb-section-title { margin-top: 0; }

/* Lead capture: one-tap OAuth on results */
.prcb-quick-signin {
	display: grid;
	gap: 12px;
	max-width: 420px;
	margin: 0 0 18px;
}
.prcb-oauth-slot {
	display: flex;
	justify-content: flex-start;
	min-height: 44px;
}
.prcb-oauth-slot iframe,
.prcb-oauth-slot > div {
	width: 100% !important;
	max-width: 360px;
}
.prcb-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--prcb-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin: 4px 0 0;
}
.prcb-divider::before,
.prcb-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--prcb-line);
}

/* Category video overlay */
html.prcb-video-open,
body.prcb-video-open { overflow: hidden; }
.prcb-video-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(18, 8, 10, .94);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 16px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.prcb-video-overlay__panel {
	width: min(960px, 100%);
	margin: auto 0;
	color: #f7efe8;
}
.prcb-video-player {
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 16;
	max-height: min(72vh, 680px);
	margin: 0 auto;
	background: #000;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.prcb-video-player iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.prcb-video-overlay__back {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 4;
	font: inherit;
	font-size: 15px;
	font-weight: 800;
	color: #f7efe8;
	background: rgba(12, 8, 10, .62);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	padding: 10px 16px;
	cursor: pointer;
}
.prcb-video-overlay__back:hover {
	background: rgba(12, 8, 10, .78);
	border-color: rgba(255, 255, 255, .32);
}
.prcb-video-player__shield {
	position: absolute;
	z-index: 2;
	pointer-events: auto;
}
.prcb-video-player__shield--bottom {
	left: 0;
	right: 0;
	bottom: 0;
	height: 96px;
	background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .55) 55%, transparent 100%);
}
.prcb-video-overlay__note {
	margin: 14px 0 0;
	font-size: 12px;
	line-height: 1.55;
	color: rgba(247, 239, 232, .72);
}
.prcb-video-overlay__watch {
	margin: 10px 0 0;
}
.prcb-video-overlay__watch a {
	color: #f7efe8;
	font-size: 13px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.prcb-video-overlay__watch a:hover {
	opacity: .85;
}
.prcb-video-meta {
	margin: 14px 0 0;
}
.prcb-video-meta__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.35;
}
.prcb-video-meta__channel {
	margin: 6px 0 0;
	font-size: 13px;
	color: rgba(247, 239, 232, .68);
}
.prcb-video-carousel {
	margin-top: 22px;
}
.prcb-video-carousel__label {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(247, 239, 232, .62);
}
.prcb-video-carousel__track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 8px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}
.prcb-video-thumb {
	flex: 0 0 220px;
	display: grid;
	gap: 8px;
	text-align: left;
	padding: 0;
	border: 1.5px solid rgba(247, 239, 232, .18);
	border-radius: 12px;
	background: rgba(255, 255, 255, .04);
	color: inherit;
	cursor: pointer;
	overflow: hidden;
	scroll-snap-align: start;
	transition: border-color .15s ease, transform .15s ease;
}
.prcb-video-thumb:hover { transform: translateY(-1px); }
.prcb-video-thumb.is-active {
	border-color: var(--prcb-gold);
	box-shadow: 0 0 0 1px var(--prcb-gold) inset;
}
.prcb-video-thumb__img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #222 center/cover no-repeat;
}
.prcb-video-thumb__meta {
	display: grid;
	gap: 4px;
	padding: 0 10px 10px;
}
.prcb-video-thumb__title {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}
.prcb-video-thumb__channel {
	font-size: 11px;
	color: rgba(247, 239, 232, .62);
	line-height: 1.35;
}

/* Lead form */
.prcb-lead { max-width: 560px; }

@media (max-width: 640px) {
	.peptis-rcb { border-radius: 0; }
	.prcb-grid { grid-template-columns: repeat(2, 1fr); }
	.prcb-cta-row--stack .prcb-btn { width: 100%; }

	.prcb-video-overlay {
		padding: 0;
		background: #000;
		overflow: hidden;
		align-items: stretch;
	}
	.prcb-video-overlay__panel {
		width: 100%;
		height: 100dvh;
		height: -webkit-fill-available;
		min-height: 100dvh;
		margin: 0;
		display: flex;
		flex-direction: column;
	}
	.prcb-video-overlay__below {
		display: none;
	}
	.prcb-video-player {
		flex: 1 1 auto;
		width: 100%;
		height: 100%;
		max-height: none;
		aspect-ratio: unset;
		border-radius: 0;
		box-shadow: none;
	}
	.prcb-video-overlay__back {
		top: calc(10px + env(safe-area-inset-top, 0px));
		left: calc(10px + env(safe-area-inset-left, 0px));
	}
	.prcb-video-player__shield--bottom {
		height: 120px;
	}

	.prcb-option__play-tip {
		right: auto;
		left: 50%;
		top: auto;
		bottom: calc(100% + 8px);
		transform: translateX(-50%);
		max-width: min(240px, 72vw);
	}
	.prcb-option__play-tip::after {
		left: 50%;
		top: 100%;
		margin-top: 0;
		margin-left: -5px;
		border: 5px solid transparent;
		border-top-color: var(--prcb-burgundy-deep);
		border-left-color: transparent;
	}
	.prcb-option__play:hover .prcb-option__play-tip,
	.prcb-option__play:focus-visible .prcb-option__play-tip {
		transform: translateX(-50%) translateY(-2px);
	}

	.prcb-card__info-tip {
		left: 50%;
		transform: translateX(-50%);
		width: min(260px, 78vw);
	}
	.prcb-card__info-tip::after {
		left: 50%;
		margin-left: -6px;
	}
	.prcb-card__actions {
		left: 6px;
		bottom: 6px;
	}
}
