/*
 * Vytal Peptides — homepage sections.
 */

/* Hero — 3-column banner matching primepeptides.co */
.pp-hero {
	position: relative;
	color: var(--pp-white);
	background-color: #0a0a0a;
	min-height: clamp(560px, 78vh, 820px);
	padding: calc(var(--pp-header-h) + 1.25rem) 0 3.5rem;
	overflow: hidden;
	border-radius: 0 0 32px 32px;
	display: flex;
	align-items: center;
}

.pp-hero__picture {
	position: absolute;
	inset: 0;
	z-index: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
	border-radius: inherit;
}

.pp-hero__bg {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center top;
	border-radius: 0 !important;
}

.pp-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse 55% 70% at 55% 45%, rgba(0, 0, 0, 0.15) 0%, transparent 70%),
		linear-gradient(105deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 42%, rgba(0, 0, 0, 0.55) 100%);
	pointer-events: none;
}

.pp-hero__grid {
	position: relative;
	z-index: 2;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 900px) {
	.pp-hero__grid {
		grid-template-columns: minmax(280px, 1.15fr) minmax(240px, 0.85fr);
		gap: 2rem 3rem;
		min-height: 520px;
		justify-content: space-between;
	}
}

.pp-hero__copy {
	max-width: 420px;
}

.pp-hero__eyebrow {
	font-family: var(--pp-font-primary);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--pp-gold);
	margin: 0 0 1rem;
}

.pp-hero__title {
	font-family: var(--pp-font-primary);
	font-size: clamp(2.35rem, 1.6rem + 3.2vw, 3.75rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--pp-white);
	margin: 0 0 1rem;
}

.pp-hero__sub {
	font-size: 1rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	max-width: 360px;
	margin: 0 0 1.75rem;
}

.pp-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.35rem 0.4rem 0.35rem 1.35rem;
	border-radius: 999px;
	background: var(--pp-gold);
	color: var(--pp-black);
	font-family: var(--pp-font-primary);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 0.2s ease, transform 0.2s ease;
}

.pp-hero__cta:hover {
	background: var(--pp-gold-dark);
	transform: translateY(-1px);
	text-decoration: none;
}

.pp-hero__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--pp-black);
	color: var(--pp-white);
	flex-shrink: 0;
}

.pp-hero__aside {
	max-width: 340px;
	justify-self: start;
}

@media (min-width: 900px) {
	.pp-hero__aside {
		justify-self: end;
		align-self: center;
		padding-bottom: 1rem;
	}
}

.pp-hero__testimonials-dots {
	display: flex;
	gap: 0.55rem;
	margin-bottom: 1rem;
}

.pp-hero__dot {
	width: 28px;
	height: 3px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease, width 0.2s ease;
}

.pp-hero__dot.is-active {
	background: var(--pp-white);
	width: 36px;
}

.pp-hero__testimonials-track {
	position: relative;
	min-height: 110px;
}

.pp-hero__testimonial {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.pp-hero__testimonial.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	position: relative;
}

.pp-hero__testimonial-stars {
	margin: 0 0 0.75rem;
	line-height: 0;
	--pp-hero-star: #f6db7b;
	--pp-hero-star-empty: rgba(246, 219, 123, 0.25);
}

.pp-hero__testimonial-quote {
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	margin: 0 0 0.9rem;
}

.pp-hero__testimonial-badge {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0.28rem 0.7rem;
	border-radius: 6px;
	background: #ffffff;
	color: #111111;
	font-family: var(--pp-font-primary);
	font-size: 0.72rem;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-transform: none;
}

.pp-hero__google {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 1.15rem;
	padding: 0.4rem 0.75rem 0.4rem 0.55rem;
	border-radius: 999px;
	background: #fff;
	color: #3c4043;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
	text-decoration: none;
	max-width: 100%;
	font-family: var(--pp-font-primary);
	line-height: 1;
}

.pp-hero__google--link {
	cursor: pointer;
}

.pp-hero__google--link:hover {
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.pp-hero__google-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	flex-shrink: 0;
}

.pp-hero__google-g {
	display: block;
	flex-shrink: 0;
}

.pp-hero__google-word {
	font-size: 0.82rem;
	font-weight: 600;
	color: #3c4043;
}

.pp-hero__google-sep {
	width: 1px;
	height: 1rem;
	background: #dadce0;
	flex-shrink: 0;
}

.pp-hero__google-rating {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	flex-shrink: 0;
}

.pp-hero__google-stars {
	display: inline-flex;
	align-items: center;
	gap: 1px;
}

.pp-hero__google-stars svg {
	display: block;
}

.pp-hero__google-score {
	font-size: 0.82rem;
	font-weight: 600;
	color: #3c4043;
}

.pp-hero__google-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	margin-left: 0.15rem;
	color: #1a73e8;
	flex-shrink: 0;
}

.pp-hero__google-cta-text {
	font-size: 0.78rem;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.pp-hero__google-ext {
	display: block;
}

@media (max-width: 899px) {
	/*
	 * Square product banners (e.g. vials) show large empty purple bands when the
	 * hero is forced to ~78vh. Cap mobile height and beat Elementor min-height.
	 * Keep the vial centered in the crop; sit copy on the lower half like the reference.
	 */
	.pp-hero,
	.elementor .pp-hero,
	.elementor-element .pp-hero,
	.elementor-widget-pp_home_hero .pp-hero {
		min-height: calc(var(--pp-header-h) + var(--pp-announce-h, 0px) + min(88vw, 390px)) !important;
		height: auto !important;
		max-height: none;
		padding: calc(var(--pp-header-h) + var(--pp-announce-h, 0px) + 0.65rem) 0 1.75rem;
		border-radius: 0 0 28px 28px;
		align-items: flex-end;
	}

	.pp-hero__bg,
	.elementor .pp-hero__bg,
	.elementor-element .pp-hero__bg,
	.elementor-widget-pp_home_hero .pp-hero__bg,
	.elementor-widget-pp_home_hero img.pp-hero__bg {
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		max-height: none !important;
		object-fit: cover !important;
		object-position: center center !important;
		border-radius: 0 !important;
	}

	.pp-hero__overlay {
		background: rgba(0, 0, 0, 0.4);
	}

	.pp-hero__grid {
		display: block;
		text-align: left;
		width: 100%;
	}

	.pp-hero__copy {
		max-width: 20rem;
		position: relative;
		z-index: 1;
	}

	.pp-hero__eyebrow {
		font-size: 0.75rem;
		letter-spacing: 0.2em;
		margin: 0 0 0.85rem;
	}

	.pp-hero__title {
		font-size: clamp(2rem, 8.5vw, 2.6rem);
		line-height: 1.05;
		margin: 0 0 0.85rem;
		max-width: none;
	}

	.pp-hero__sub {
		font-size: 0.92rem;
		line-height: 1.5;
		max-width: 18rem;
		margin: 0 0 1.5rem;
		color: rgba(255, 255, 255, 0.9);
	}

	.pp-hero__cta {
		padding: 0.3rem 0.35rem 0.3rem 1.2rem;
		font-size: 0.78rem;
		letter-spacing: 0.1em;
		gap: 0.75rem;
	}

	.pp-hero__cta-icon {
		width: 38px;
		height: 38px;
		background: #00153d;
	}

	/* Reference mobile banner shows copy + CTA only — hide testimonials. */
	.pp-hero__aside {
		display: none;
	}
}

@media (max-width: 420px) {
	.pp-hero__copy {
		max-width: 17rem;
	}
}

/* Innovation Meets Purity */
.pp-innovation {
	padding: 5rem 0 4.5rem;
	background: var(--pp-white);
}

@media (max-width: 899px) {
	.pp-innovation {
		display: none;
	}
}

.pp-innovation__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 3.25rem;
}

.pp-innovation__eyebrow {
	font-family: var(--pp-font-primary);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #c5a059;
	margin: 0 0 0.85rem;
}

.pp-innovation__title-main {
	font-family: var(--pp-font-primary);
	font-size: clamp(2rem, 1.55rem + 2vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: var(--pp-black);
	margin: 0;
}

.pp-innovation__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.25rem 1.5rem;
	text-align: center;
}

@media (min-width: 480px) {
	.pp-innovation__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 780px) {
	.pp-innovation__grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 1.5rem 1.25rem;
	}
}

.pp-innovation__item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pp-innovation__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 22px;
	background: #f9e292;
	color: var(--pp-black);
	margin-bottom: 1.15rem;
}

.pp-innovation__title {
	font-family: var(--pp-font-primary);
	font-weight: 700;
	font-size: 0.98rem;
	color: var(--pp-black);
	margin: 0 0 0.35em;
	line-height: 1.25;
}

.pp-innovation__text {
	font-size: 0.88rem;
	font-weight: 400;
	color: #555555;
	margin: 0;
	line-height: 1.4;
	max-width: 11rem;
}

/* Shared gold CTA pill */
.pp-cta-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.35rem 0.4rem 0.35rem 1.35rem;
	border-radius: 999px;
	background: var(--pp-gold);
	color: var(--pp-black);
	font-family: var(--pp-font-primary);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 0.2s ease, transform 0.2s ease;
}

.pp-cta-pill:hover {
	background: var(--pp-gold-dark);
	transform: translateY(-1px);
	text-decoration: none;
}

.pp-cta-pill__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--pp-black);
	color: var(--pp-white);
	flex-shrink: 0;
}

.pp-cta-pill--on-dark .pp-cta-pill__icon {
	background: #00153d;
}

/* Vytal Selections */
.pp-selections {
	padding: 4.5rem 0 3.5rem;
	background: var(--pp-white);
	max-width: 100%;
	overflow-x: clip;
}

.pp-selections__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.pp-selections__title {
	font-family: var(--pp-font-primary);
	font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.5rem);
	font-weight: 700;
	margin: 0;
}

.pp-selections__view-all {
	display: inline-flex;
	align-items: center;
	padding: 0.7em 1.35em;
	border-radius: 999px;
	background: #ececec;
	font-family: var(--pp-font-primary);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pp-black);
}

.pp-selections__view-all:hover {
	background: #e0e0e0;
	text-decoration: none;
}

.pp-selections__carousel {
	max-width: 100%;
	min-width: 0;
}

.pp-selections__track {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem 1.15rem;
	max-width: 100%;
	min-width: 0;
}

.pp-selections__slide {
	min-width: 0;
}

@media (min-width: 700px) {
	.pp-selections__track {
		/* 4 across → 8 products = 2 rows, 12 = 3 rows. */
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.75rem 1.15rem;
	}
}

/* >12 products: 3-row columns that scroll horizontally */
.pp-selections__carousel--slider .pp-selections__track {
	display: grid;
	grid-template-columns: none;
	grid-template-rows: repeat(3, auto);
	grid-auto-flow: column;
	grid-auto-columns: minmax(140px, calc((100% - 1.15rem) / 2));
	gap: 1.5rem 1.15rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 0.25rem;
	-webkit-overflow-scrolling: touch;
}

.pp-selections__carousel--slider .pp-selections__track::-webkit-scrollbar {
	display: none;
}

.pp-selections__carousel--slider .pp-selections__slide {
	scroll-snap-align: start;
}

@media (min-width: 700px) {
	.pp-selections__carousel--slider .pp-selections__track {
		grid-auto-columns: calc((100% - 3.45rem) / 4);
		gap: 1.75rem 1.15rem;
	}
}

.pp-selections__nav {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1.75rem;
}

.pp-selections__arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid #ddd;
	background: var(--pp-white);
	color: var(--pp-black);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pp-selections__arrow:hover,
.pp-selections__arrow:focus-visible {
	background: var(--pp-gold);
	border-color: var(--pp-gold);
	color: var(--pp-black);
}

.pp-selections__progress {
	flex: 1;
	height: 3px;
	border-radius: 999px;
	background: #e8e8e8;
	overflow: hidden;
}

.pp-selections__progress-bar {
	display: block;
	height: 100%;
	width: 35%;
	border-radius: inherit;
	background: #1a1a1a;
	transition: width 0.25s ease;
}

.pp-selections__empty {
	color: var(--pp-gray-500);
	background: var(--pp-bg);
	border-radius: var(--pp-radius-lg);
	padding: 2rem;
	text-align: center;
}

/* Selections product card overrides */
.pp-selections .pp-product-card {
	border: none;
	background: transparent;
	box-shadow: none;
}

.pp-selections .pp-product-card:hover {
	transform: none;
	box-shadow: none;
}

.pp-selections .pp-product-card__media {
	border-radius: 18px;
	background: var(--pp-gold);
	overflow: hidden;
	aspect-ratio: 1 / 1.05;
}

.pp-selections .pp-product-card__media img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover;
	padding: 0;
}

.pp-selections .pp-product-card__body {
	padding: 0.9rem 0.15rem 0;
}

.pp-selections .pp-product-card__title {
	font-size: 1rem;
	margin-bottom: 0.25em;
}

.pp-selections .pp-product-card__price {
	font-weight: 500;
}

.pp-selections .pp-product-card__badge,
.pp-selections .pp-product-card__badge--sale {
	background: #3d9a6a;
	color: #fff;
	border-radius: 999px;
	font-size: 0.68rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.4em 0.75em;
}

/* COA */
.pp-coa {
	padding: 5rem 0 2.5rem;
	background: #f7f7f7;
}

.pp-coa__head {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-bottom: 2rem;
	text-align: left;
	max-width: none;
}

@media (min-width: 900px) {
	.pp-coa__head {
		grid-template-columns: 1.1fr 1fr;
		gap: 3rem;
		align-items: end;
		margin-bottom: 2.5rem;
	}
}

.pp-coa__eyebrow {
	font-family: var(--pp-font-primary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #a68945;
	margin: 0 0 0.75rem;
}

.pp-coa__title {
	font-family: var(--pp-font-primary);
	font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.8rem);
	font-weight: 700;
	margin: 0;
	line-height: 1.15;
}

.pp-coa__text {
	color: #555;
	font-size: 0.98rem;
	line-height: 1.6;
	margin: 0;
	max-width: 36rem;
}

.pp-coa__tabs {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: 0.65rem;
	margin-bottom: 1.75rem;
	max-width: 100%;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}

.pp-coa__tabs::-webkit-scrollbar {
	display: none;
}

.pp-coa__tab {
	flex: 0 0 auto;
	white-space: nowrap;
	background: var(--pp-white);
	border: 1px solid #e0e0e0;
	border-radius: 999px;
	padding: 0.7em 1.35em;
	font-family: var(--pp-font-primary);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--pp-black);
	cursor: pointer;
}

.pp-coa__tab.is-active {
	background: #e8e8e8;
	border-color: #e8e8e8;
	color: var(--pp-black);
}

.pp-coa__group {
	margin-bottom: 1.75rem;
}

.pp-coa__group[hidden] {
	display: none !important;
}

.pp-coa__group-title {
	font-family: var(--pp-font-primary);
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 0.85rem;
}

.pp-coa__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.15rem;
}

@media (min-width: 700px) {
	.pp-coa__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.pp-coa__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pp-coa__card {
	background: var(--pp-white);
	border: 1px solid #e6e6e6;
	border-radius: 24px;
	padding: 1rem;
	overflow: hidden;
}

.pp-coa__card[hidden] {
	display: none;
}

.pp-coa__card-head {
	background: #ececec;
	border-radius: 999px;
	padding: 0.85rem 1.25rem;
	text-align: center;
	margin-bottom: 1.15rem;
}

.pp-coa__card-head h3,
.pp-coa__card-head h4 {
	margin: 0;
	font-family: var(--pp-font-primary);
	font-size: 0.98rem;
	font-weight: 600;
}

.pp-coa__body {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	align-items: stretch;
	padding: 0 0.25rem 0.25rem;
}

.pp-coa__card--has-media .pp-coa__body {
	grid-template-columns: minmax(0, 1.15fr) minmax(96px, 0.85fr);
	gap: 0.85rem 1rem;
	align-items: center;
}

.pp-coa__meta {
	padding: 0;
	min-width: 0;
}

.pp-coa__meta p {
	margin: 0 0 0.55rem;
	font-size: 0.92rem;
	color: #222;
}

.pp-coa__meta p:last-child {
	margin-bottom: 0;
}

.pp-coa__meta strong {
	font-weight: 700;
}

.pp-coa__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 140px;
	/* Match vial photo backdrop so contain letterboxing never shows gray/white. */
	background: #e8dff5;
	border-radius: 16px;
	overflow: hidden;
}

.pp-coa__media img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 260px;
	object-fit: contain;
	object-position: center center;
}

@media (max-width: 520px) {
	.pp-coa__card--has-media .pp-coa__body {
		grid-template-columns: 1fr;
	}

	.pp-coa__media {
		width: 100%;
		min-height: 220px;
		aspect-ratio: 1 / 1;
	}

	.pp-coa__media img {
		max-height: none;
		height: 100%;
		width: 100%;
		object-fit: contain;
	}
}

.pp-coa__cta {
	text-align: center;
	margin-top: 2.5rem;
	margin-bottom: 0;
}

/* Next-gen */
.pp-nextgen {
	/* Match gap above + below (same rhythm as space before Simple). */
	padding: 2.5rem 0;
	background: #f7f7f7;
}

.pp-nextgen__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
	align-items: center;
}

@media (min-width: 900px) {
	.pp-nextgen {
		padding: 2.5rem 0;
		background: var(--pp-white);
	}

	.pp-nextgen__inner {
		grid-template-columns: 0.95fr 1.05fr;
		gap: 4rem;
	}
}

.pp-nextgen__eyebrow {
	font-family: var(--pp-font-primary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #64419b;
	margin: 0 0 0.9rem;
}

.pp-nextgen__title {
	font-family: var(--pp-font-primary);
	font-size: clamp(2rem, 1.5rem + 2vw, 3.1rem);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 1rem;
	color: var(--pp-black);
}

.pp-nextgen__text {
	color: #4a4a4a;
	font-size: 1rem;
	line-height: 1.6;
	max-width: 28rem;
	margin: 0 0 1.75rem;
}

.pp-nextgen .pp-cta-pill {
	background: #64419b !important;
	color: #fff !important;
}

.pp-nextgen .pp-cta-pill:hover {
	background: #523582 !important;
	color: #fff !important;
}

.pp-nextgen .pp-cta-pill__icon {
	background: #2d1a52 !important;
	color: #fff !important;
}

/*
 * Media card — same pattern as Bundle & Save:
 * rounded frame + purple fill + image covers edge-to-edge (no side gaps).
 */
.pp-nextgen__media,
.elementor .pp-nextgen__media,
.elementor-element.elementor-widget-pp_home_nextgen .pp-nextgen__media {
	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden !important;
	border-radius: 48px !important;
	isolation: isolate;
	background: linear-gradient(165deg, #7a5aad 0%, #4f3670 45%, #1f122e 100%);
	min-height: 360px;
	aspect-ratio: 1 / 1;
}

@media (min-width: 900px) {
	.pp-nextgen__media,
	.elementor .pp-nextgen__media,
	.elementor-element.elementor-widget-pp_home_nextgen .pp-nextgen__media {
		/* Match Bundle card proportions */
		width: 658px;
		max-width: 100%;
		height: 639px;
		min-height: 639px;
		aspect-ratio: auto;
		justify-self: end;
		border-radius: 48px !important;
	}
}

.pp-nextgen__media img,
.elementor .pp-nextgen__media img,
.elementor-element.elementor-widget-pp_home_nextgen .pp-nextgen__media img,
.elementor-element.elementor-widget-pp_home_nextgen img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 0 !important;
	aspect-ratio: auto !important;
	object-fit: cover !important;
	object-position: center center !important;
	/* Crop baked-in black corners from the source JPG without shrinking the frame. */
	transform: scale(1.12);
	transform-origin: center center;
}

/* Mobile: image on top, copy below — same full-bleed card treatment */
@media (max-width: 899px) {
	.pp-nextgen,
	.elementor .pp-nextgen,
	.elementor-element.elementor-widget-pp_home_nextgen .pp-nextgen {
		padding: 2.5rem 0 !important;
		background: #f7f7f7;
		min-height: 0 !important;
	}

	.elementor-widget-pp_home_nextgen,
	.elementor-element.elementor-widget-pp_home_nextgen {
		margin-top: 1.5rem !important;
	}

	.pp-nextgen__inner {
		gap: 1.25rem;
	}

	.pp-nextgen__media,
	.elementor .pp-nextgen__media,
	.elementor-element.elementor-widget-pp_home_nextgen .pp-nextgen__media {
		order: -1;
		width: 100% !important;
		max-width: none !important;
		height: auto !important;
		min-height: 0 !important;
		aspect-ratio: 1 / 1;
		border-radius: 40px !important;
	}

	.pp-nextgen__media img,
	.elementor .pp-nextgen__media img,
	.elementor-element.elementor-widget-pp_home_nextgen .pp-nextgen__media img,
	.elementor-element.elementor-widget-pp_home_nextgen img {
		transform: scale(1.1);
	}

	.pp-nextgen__copy {
		padding: 0 0.15rem;
	}

	.pp-nextgen__eyebrow {
		font-size: 0.7rem;
		letter-spacing: 0.18em;
		color: #64419b;
		margin: 0 0 0.7rem;
	}

	.pp-nextgen__title {
		font-size: clamp(1.85rem, 7.5vw, 2.35rem);
		line-height: 1.08;
		letter-spacing: -0.02em;
		margin: 0 0 0.85rem;
		max-width: 14ch;
	}

	.pp-nextgen__text {
		font-size: 0.95rem;
		line-height: 1.55;
		color: #4a4a4a;
		max-width: 34rem;
		margin: 0 0 1.5rem;
	}

	.pp-nextgen .pp-cta-pill {
		padding: 0.3rem 0.35rem 0.3rem 1.25rem;
		font-size: 0.78rem;
		letter-spacing: 0.1em;
		gap: 0.75rem;
		margin-bottom: 0;
		background: #64419b !important;
		color: #fff !important;
	}

	.pp-nextgen .pp-cta-pill:hover {
		background: #523582 !important;
		color: #fff !important;
	}

	.pp-nextgen .pp-cta-pill__icon {
		width: 38px;
		height: 38px;
		background: #2d1a52 !important;
		color: #fff !important;
	}

	/* Breathing room before Simple section — matches Bundle gap reference. */
	.pp-simple,
	.elementor .pp-simple,
	.elementor-element.elementor-widget-pp_home_simple .pp-simple {
		margin: 3.5rem 1rem 0 !important;
	}

	.elementor-widget-pp_home_simple,
	.elementor-element.elementor-widget-pp_home_simple {
		margin-top: 1.5rem !important;
	}
}

/* Simple. Powerful. Effective. — size from reference: ~658×639, radius 48px */
.pp-simple {
	display: grid;
	grid-template-columns: 1fr;
	min-height: 420px;
	background: #00153d;
	/* Gap above Simple so Bundle image doesn’t sit flush on navy. */
	margin: 3.5rem 1rem 0;
	border-radius: 28px;
	overflow: hidden;
}

@media (min-width: 900px) {
	.pp-simple {
		grid-template-columns: 1.05fr 0.95fr;
		width: auto;
		max-width: 100%;
		min-height: 639px;
		height: 639px;
		margin: 1.5rem 1.5rem 0;
		border-radius: 48px;
	}
}

.pp-simple__media {
	position: relative;
	min-height: 280px;
	height: 100%;
	align-self: stretch;
	overflow: hidden;
}

@media (min-width: 900px) {
	.pp-simple__media {
		min-height: 639px;
		height: 639px;
		/* ~658px column share of the split */
		width: 100%;
	}
}

.pp-simple__media img,
.elementor .pp-simple__media img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center;
	display: block;
	margin: 0 !important;
	border-radius: 0;
}

@media (min-width: 900px) {
	.pp-simple__media img,
	.elementor .pp-simple__media img {
		/* Match reference peeper: 48px radius on image */
		border-radius: 48px 0 0 48px;
	}
}

.pp-simple__panel {
	background: #00153d;
	color: var(--pp-white);
	display: flex;
	align-items: center;
	padding: 3.5rem 1.5rem;
}

@media (min-width: 900px) {
	.pp-simple__panel {
		height: 639px;
		padding: 4rem 3.5rem 4rem 4rem;
	}
}

.pp-simple__copy {
	max-width: 420px;
}

.pp-simple__title {
	font-family: var(--pp-font-primary);
	font-size: clamp(2.4rem, 1.8rem + 2.5vw, 3.6rem);
	font-weight: 700;
	line-height: 1.05;
	margin: 0 0 1.25rem;
	color: var(--pp-white);
}

.pp-simple__title span {
	display: block;
}

.pp-simple__text {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1rem;
	margin: 0 0 1.75rem;
}

/* Bundle & Save */
.pp-bundle {
	padding: 5rem 0 3.5rem;
	background: #f6f6f6;
	color: var(--pp-black);
}

@media (max-width: 899px) {
	.pp-bundle,
	.elementor .pp-bundle,
	.elementor-element.elementor-widget-pp_home_bundle .pp-bundle,
	.elementor-widget-pp_home_bundle > .elementor-widget-container > .pp-bundle {
		padding-top: 3rem !important;
		padding-right: 0 !important;
		padding-left: 0 !important;
		/* Extra bottom gap so the rounded card isn’t flush on the next section. */
		padding-bottom: 4.5rem !important;
	}

	.elementor-widget-pp_home_bundle,
	.elementor-element.elementor-widget-pp_home_bundle {
		margin-bottom: 3rem !important;
	}

	.pp-bundle__media,
	.elementor .pp-bundle__media,
	.elementor-element.elementor-widget-pp_home_bundle .pp-bundle__media {
		margin-bottom: 1.5rem !important;
	}
}

.pp-bundle__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 900px) {
	.pp-bundle__inner {
		grid-template-columns: 1fr 1.05fr;
		gap: 3.5rem;
	}
}

.pp-bundle__eyebrow {
	font-family: var(--pp-font-primary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #c5a059;
	margin: 0 0 0.75rem;
}

.pp-bundle__title {
	font-family: var(--pp-font-primary);
	font-size: clamp(2rem, 1.5rem + 1.8vw, 2.9rem);
	font-weight: 700;
	margin: 0 0 0.85rem;
}

.pp-bundle__text {
	color: #4a4a4a;
	font-size: 1rem;
	line-height: 1.6;
	max-width: 28rem;
	margin: 0 0 1.75rem;
}

.pp-bundle__perks {
	display: flex;
	flex-direction: column;
	gap: 1.35rem;
}

.pp-bundle__perk {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 0;
	background: transparent;
	border: none;
}

.pp-bundle__perk-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: #f3e08a;
	color: var(--pp-black);
	flex-shrink: 0;
}

.pp-bundle__perk-title {
	font-family: var(--pp-font-primary);
	font-weight: 700;
	font-size: 1.02rem;
	margin: 0 0 0.2em;
	color: var(--pp-black);
}

.pp-bundle__perk-text {
	color: #666;
	font-size: 0.9rem;
	margin: 0;
}

/*
 * Media card — same fill pattern as Next Gen:
 * rounded frame + purple fill + image covers edge-to-edge (no gray gap).
 */
.pp-bundle__media,
.elementor .pp-bundle__media,
.elementor-element.elementor-widget-pp_home_bundle .pp-bundle__media {
	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden !important;
	border-radius: 48px !important;
	isolation: isolate;
	background: linear-gradient(165deg, #7a5aad 0%, #4f3670 45%, #1f122e 100%);
	min-height: 360px;
	aspect-ratio: 1 / 1;
}

@media (min-width: 900px) {
	.pp-bundle__media,
	.elementor .pp-bundle__media,
	.elementor-element.elementor-widget-pp_home_bundle .pp-bundle__media {
		/* Reference peeper: 658 × 639, radius 48px */
		width: 658px;
		max-width: 100%;
		height: 639px;
		min-height: 639px;
		aspect-ratio: auto;
		border-radius: 48px !important;
	}
}

.pp-bundle__media img,
.elementor .pp-bundle__media img,
.elementor-element.elementor-widget-pp_home_bundle .pp-bundle__media img,
.elementor-widget-pp_home_bundle img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 0 !important;
	aspect-ratio: auto !important;
	object-fit: cover !important;
	object-position: center center !important;
	transform: none;
	filter: none;
}

@media (max-width: 899px) {
	.pp-bundle__media,
	.elementor .pp-bundle__media,
	.elementor-element.elementor-widget-pp_home_bundle .pp-bundle__media {
		border-radius: 40px !important;
		min-height: 0 !important;
	}
}

.pp-bundle__cta {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
	margin-top: 1.75rem;
	min-height: 52px;
	padding: 0.35rem 0.35rem 0.35rem 1.35rem;
	border-radius: 999px;
	background: var(--pp-mobile-menu-bg, #64419b) !important;
	color: #fff !important;
	font-family: var(--pp-font-primary);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none !important;
	box-shadow: 0 6px 18px rgba(100, 65, 155, 0.28);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pp-bundle__cta-label {
	flex: 1 1 auto;
	line-height: 1.2;
	white-space: nowrap;
}

.pp-bundle__cta-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.55rem;
	height: 2.55rem;
	border-radius: 50%;
	background: #3d2a5c;
	color: #fff;
}

.pp-bundle__cta-icon svg {
	display: block;
}

.pp-bundle__cta:hover,
.pp-bundle__cta:focus-visible {
	background: #56358a !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(100, 65, 155, 0.34);
}

.pp-bundle__cta:hover .pp-bundle__cta-icon,
.pp-bundle__cta:focus-visible .pp-bundle__cta-icon {
	background: #2f2048;
}

/* Signature Collections */
.pp-collections {
	padding: 5rem 0 5.5rem;
	background: #000b2e;
	color: var(--pp-white);
	max-width: 100%;
	overflow-x: clip;
}

.pp-collections__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 2.75rem;
}

.pp-collections__eyebrow {
	font-family: var(--pp-font-primary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #f6d87a;
	margin: 0 0 0.85rem;
}

.pp-collections__title {
	font-family: var(--pp-font-primary);
	font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
	font-weight: 700;
	color: var(--pp-white);
	margin: 0;
	line-height: 1.15;
}

.pp-collections__carousel {
	max-width: 100%;
	min-width: 0;
}

.pp-collections__track {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	max-width: 100%;
	min-width: 0;
	-webkit-overflow-scrolling: touch;
}

.pp-collections__track::-webkit-scrollbar {
	display: none;
}

.pp-collections__card {
	position: relative;
	display: block;
	flex: 0 0 100%;
	overflow: hidden;
	border-radius: 40px;
	min-height: 420px;
	height: 420px;
	background-color: #1a2744;
	background-image: var(--pp-collection-bg, none);
	background-size: cover;
	background-position: center;
	color: var(--pp-white);
	text-decoration: none;
	isolation: isolate;
	scroll-snap-align: start;
}

@media (min-width: 900px) {
	.pp-collections__track {
		display: grid;
		grid-template-columns: 1.05fr 1fr;
		grid-template-rows: minmax(260px, 1fr) minmax(260px, 1fr) auto;
		gap: 1.25rem;
		min-height: 720px;
		overflow: visible;
		scroll-snap-type: none;
	}

	.pp-collections__card {
		flex: none;
		height: auto;
		min-height: 260px;
		scroll-snap-align: none;
	}

	.pp-collections__card--tall {
		grid-row: 1 / span 2;
		min-height: 560px;
	}

	.pp-collections__card--half {
		min-height: 260px;
	}

	.pp-collections__card--wide {
		grid-column: 1 / -1;
		min-height: 320px;
	}

	.pp-collections__nav {
		display: none;
	}
}

.pp-collections__card:hover {
	color: var(--pp-white);
	text-decoration: none;
}

.pp-collections__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 12, 40, 0.15) 0%, rgba(0, 12, 40, 0.35) 45%, rgba(0, 8, 28, 0.72) 100%),
		linear-gradient(90deg, rgba(0, 10, 35, 0.45) 0%, transparent 55%);
	z-index: 0;
}

.pp-collections__card--wide .pp-collections__shade {
	background:
		linear-gradient(90deg, rgba(0, 12, 40, 0.55) 0%, rgba(0, 12, 40, 0.2) 42%, transparent 70%);
}

.pp-collections__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
	padding: 1.75rem 1.75rem 1.5rem;
	box-sizing: border-box;
}

@media (min-width: 900px) {
	.pp-collections__content {
		padding: 2.25rem 2.25rem 1.75rem;
	}

	.pp-collections__card--wide .pp-collections__content {
		max-width: 48%;
		padding: 2.5rem 2.5rem 2rem;
	}
}

.pp-collections__badge {
	display: inline-block;
	font-family: var(--pp-font-primary);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #f6d87a;
	margin-bottom: 0.75rem;
	background: none;
	padding: 0;
	position: static;
}

.pp-collections__category {
	font-family: var(--pp-font-primary);
	font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.35rem);
	font-weight: 600;
	line-height: 1.25;
	color: var(--pp-white);
	margin: 0 0 0.85rem;
	min-height: 0;
	max-width: 16ch;
}

.pp-collections__name,
.pp-collections__price {
	font-family: var(--pp-font-primary);
	font-size: clamp(1.35rem, 1.15rem + 0.8vw, 1.75rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--pp-white);
	margin: 0;
}

.pp-collections__price {
	margin-top: 0.15rem;
}

.pp-collections__price .woocommerce-Price-amount,
.pp-collections__price .amount {
	font-weight: 700;
	color: inherit;
}

.pp-collections__cta {
	display: inline-flex;
	align-items: center;
	gap: 0;
	margin-top: auto;
	font-family: var(--pp-font-primary);
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: #f6d87a;
	border-radius: 999px;
	padding: 0.35em 0.35em 0.35em 1.35em;
	color: var(--pp-black);
	transition: background 0.2s ease, transform 0.2s ease;
}

.pp-collections__cta-label {
	display: inline-flex;
	align-items: center;
	padding: 0.5em 0.85em 0.5em 0.15em;
	border-radius: 999px;
	background: transparent;
	color: var(--pp-black);
}

.pp-collections__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #000b2e;
	color: var(--pp-white);
	flex-shrink: 0;
}

.pp-collections__card:hover .pp-collections__cta,
.pp-collections__cta:hover {
	background: var(--pp-gold-dark);
	transform: translateY(-1px);
}

/* Reviews */
.pp-reviews {
	padding: 5rem 0;
	background: var(--pp-white);
}

.pp-reviews__head {
	max-width: 640px;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.pp-reviews__intro {
	margin: 0.85rem auto 0;
	max-width: 560px;
	color: var(--pp-gray-700);
	font-size: 0.98rem;
	line-height: 1.65;
}

.pp-reviews__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 700px) {
	.pp-reviews__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.pp-reviews__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.pp-reviews__card {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	padding: 1.5rem;
	background: var(--pp-bg);
	border-radius: var(--pp-radius-lg);
	border: 1px solid var(--pp-gray-300);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pp-reviews__card:hover {
	box-shadow: var(--pp-shadow);
	transform: translateY(-2px);
}

.pp-reviews__top {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.pp-reviews__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: #00153d;
	color: var(--pp-gold);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--pp-font-primary);
	font-weight: 700;
	font-size: 0.85rem;
}

.pp-reviews__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pp-reviews__name {
	margin: 0;
	font-family: var(--pp-font-primary);
	font-weight: 700;
	font-size: 0.98rem;
	color: var(--pp-black);
}

.pp-reviews__stars {
	margin: 0.2rem 0 0;
	line-height: 1;
	letter-spacing: 0.05em;
}

.pp-reviews__star {
	color: var(--pp-gray-300);
	font-size: 0.95rem;
}

.pp-reviews__star.is-on {
	color: var(--pp-gold);
}

.pp-reviews__text {
	margin: 0;
	flex: 1;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--pp-gray-700);
}

.pp-reviews__product {
	display: inline-flex;
	align-self: flex-start;
	margin-top: auto;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: rgba(246, 219, 123, 0.28);
	color: #00153d;
	font-family: var(--pp-font-primary);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
}

a.pp-reviews__product:hover {
	background: var(--pp-gold);
	text-decoration: none;
}

/* Home FAQ */
.pp-home-faq {
	padding: 5rem 0;
	background: #f7f7f7;
}

.pp-home-faq__head {
	max-width: 640px;
	margin: 0 auto 2.25rem;
	text-align: center;
}

.pp-home-faq__head .pp-eyebrow {
	letter-spacing: 0.35em;
	font-size: 0.78rem;
	color: #c9a84a;
}

.pp-home-faq__text {
	color: var(--pp-gray-700);
	font-size: 0.98rem;
	line-height: 1.65;
	margin: 0.85rem auto 0;
	max-width: 560px;
}

.pp-home-faq__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	margin-bottom: 2.25rem;
}

.pp-home-faq__tab {
	background: var(--pp-white);
	border: 1px solid var(--pp-gray-300);
	border-radius: 999px;
	padding: 0.65em 1.35em;
	font-family: var(--pp-font-primary);
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--pp-black);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pp-home-faq__tab:hover {
	border-color: var(--pp-gold-dark);
}

.pp-home-faq__tab.is-active {
	background: var(--pp-gold);
	color: var(--pp-black);
	border-color: var(--pp-gold);
}

.pp-home-faq__panels {
	max-width: 820px;
	margin: 0;
}

.pp-home-faq__panel {
	display: none;
}

.pp-home-faq__panel.is-active {
	display: block;
}

.pp-home-faq__item {
	border-bottom: 1px solid #e6e6e6;
}

.pp-home-faq__question {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 1.2rem 0;
	font-family: var(--pp-font-primary);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	list-style: none;
}

.pp-home-faq__q-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 50%;
	background: var(--pp-gold);
	color: var(--pp-black);
	font-family: var(--pp-font-primary);
	font-weight: 700;
	font-size: 0.85rem;
	line-height: 1;
}

.pp-home-faq__q-icon i,
.pp-home-faq__q-icon svg {
	width: 0.85em;
	height: 0.85em;
	fill: currentColor;
}

.pp-home-faq__q-text {
	flex: 1;
	min-width: 0;
	text-align: left;
}

.pp-home-faq__chevron {
	margin-left: auto;
}

.pp-home-faq__chevron.has-custom-icons {
	display: inline-flex;
	width: auto;
	height: auto;
	border: 0;
	transform: none;
	font-size: 0.9rem;
}

.pp-home-faq__chevron.has-custom-icons svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.pp-home-faq__collapse-icon {
	display: none;
}

details[open] > summary .pp-home-faq__chevron.has-custom-icons {
	transform: none;
}

details[open] > summary .pp-home-faq__expand-icon {
	display: none;
}

details[open] > summary .pp-home-faq__collapse-icon {
	display: inline-flex;
}

.pp-home-faq__answer {
	padding: 0 0 1.25rem 2.45rem;
	color: var(--pp-gray-700);
	font-size: 0.95rem;
	line-height: 1.65;
}

/* Resources */
.pp-resources {
	padding: 4.5rem 0;
	background: #f7f7f7;
}

.pp-resources__head {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 2.5rem;
	position: relative;
}

.pp-resources__view-all {
	display: inline-flex;
	align-items: center;
	margin-top: 0.85rem;
	padding: 0.65em 1.25em;
	border-radius: 999px;
	background: #ececec;
	font-family: var(--pp-font-primary);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pp-black);
}

.pp-resources__view-all:hover {
	background: #e0e0e0;
	text-decoration: none;
}

.pp-resources__carousel {
	max-width: 100%;
	min-width: 0;
}

.pp-resources__grid,
.pp-resources__track {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 782px) {
	.pp-resources__grid,
	.pp-resources__track:not([data-pp-selections-track]) {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pp-resources__slide {
	min-width: 0;
	height: 100%;
}

.pp-resources__carousel--slider .pp-resources__track {
	display: grid;
	grid-template-columns: none;
	grid-template-rows: auto;
	grid-auto-flow: column;
	grid-auto-columns: minmax(240px, 100%);
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}

.pp-resources__carousel--slider .pp-resources__track::-webkit-scrollbar {
	display: none;
}

.pp-resources__carousel--slider .pp-resources__slide {
	scroll-snap-align: start;
}

@media (min-width: 782px) {
	.pp-resources__carousel--slider .pp-resources__track {
		grid-auto-columns: calc((100% - 3rem) / 3);
	}
}

.pp-resources__nav {
	margin-top: 1.75rem;
}

.pp-resources__empty {
	text-align: center;
	color: var(--pp-gray-500);
	padding: 1rem 0 0.5rem;
}

.pp-resources__card {
	display: flex;
	flex-direction: column;
	background: var(--pp-white);
	border: 1px solid #e6e6e6;
	border-radius: 24px;
	padding: 2.5rem;
	min-height: 100%;
	height: 100%;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pp-resources__card:hover {
	box-shadow: var(--pp-shadow);
	transform: translateY(-3px);
}

.pp-resources__title {
	font-size: 1.1rem;
	margin-bottom: 0.6em;
}

.pp-resources__text {
	font-size: 0.88rem;
	color: var(--pp-gray-500);
	margin-bottom: 1.25rem;
	flex: 1;
}

.pp-resources__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 14px;
	margin-bottom: 1.15rem;
}

.pp-resources__card .pp-link-arrow {
	margin-top: auto;
}
