/*
Theme Name: Astra Child
Template: astra
Description: Astra child theme with a custom single-product landing page template.
Author: Codex
Version: 1.0.0
Text Domain: astra-child
*/

:root {
	--lp-bg: #f9fafb;
	--lp-surface: #ffffff;
	--lp-surface-soft: #f3f4f6;
	--lp-text: #111827;
	--lp-muted: #6b7280;
	--lp-border: #e5e7eb;
	--lp-accent: #0f766e;
	--lp-accent-dark: #115e59;
	--lp-gold: #f59e0b;
	--lp-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
	--lp-radius: 24px;
	--lp-container: 1200px;
}

body {
	background: var(--lp-bg);
	color: var(--lp-text);
}

.page-template-page-landing-php .ast-above-header-wrap,
.page-template-page-landing .ast-above-header-wrap {
	display: block !important;
}

.page-template-page-landing-php .ast-primary-header-bar,
.page-template-page-landing .ast-primary-header-bar {
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.page-template-page-landing-php .ast-primary-header-bar .ast-builder-menu,
.page-template-page-landing-php .ast-primary-header-bar .main-header-menu,
.page-template-page-landing-php .ast-primary-header-bar .ast-header-navigation,
.page-template-page-landing-php .ast-primary-header-bar .ast-site-header-cart,
.page-template-page-landing-php .ast-primary-header-bar .ast-header-account-link,
.page-template-page-landing-php .ast-primary-header-bar .ast-header-search,
.page-template-page-landing-php .ast-primary-header-bar .ast-mobile-menu-buttons,
.page-template-page-landing .ast-primary-header-bar .ast-builder-menu,
.page-template-page-landing .ast-primary-header-bar .main-header-menu,
.page-template-page-landing .ast-primary-header-bar .ast-header-navigation,
.page-template-page-landing .ast-primary-header-bar .ast-site-header-cart,
.page-template-page-landing .ast-primary-header-bar .ast-header-account-link,
.page-template-page-landing .ast-primary-header-bar .ast-header-search,
.page-template-page-landing .ast-primary-header-bar .ast-mobile-menu-buttons {
	display: none !important;
}

.page-template-page-landing-php .ast-primary-header-bar .ast-site-identity,
.page-template-page-landing .ast-primary-header-bar .ast-site-identity,
.page-template-page-landing-php .ast-primary-header-bar .site-branding,
.page-template-page-landing .ast-primary-header-bar .site-branding {
	margin-inline: auto;
}

.page-template-page-landing-php .ast-below-header-wrap,
.page-template-page-landing .ast-below-header-wrap,
.page-template-page-landing-php .ast-below-header-bar,
.page-template-page-landing .ast-below-header-bar {
	display: none !important;
}

.landing-page {
	font-family: inherit;
}

.landing-container {
	width: min(100%, var(--lp-container));
	padding-inline: 20px;
	margin-inline: auto;
}

.landing-hero,
.landing-trust-badges,
.landing-features,
.landing-social-proof,
.landing-faq {
	padding: 72px 0;
}

.landing-hero {
	padding-top: 56px;
}

.landing-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
	gap: clamp(40px, 5vw, 60px);
	align-items: center;
}

.landing-hero-media {
	position: relative;
	justify-self: stretch;
	width: 100%;
	max-width: none;
}

.landing-hero-content {
	align-self: flex-start;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 8px 0 12px;
}

.product-hero-image-wrap {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #f8f9fa;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	padding: 18px;
	box-shadow: var(--lp-shadow);
	overflow: hidden;
}

.product-hero-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: calc(var(--lp-radius) - 8px);
}

.product-hero-svg {
	display: block;
	width: 100%;
	height: auto;
}

.hero-eyebrow,
.section-kicker {
	margin: 0 0 12px;
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--lp-accent);
}

.hero-title,
.section-title {
	margin: 0;
	color: var(--lp-text);
	line-height: 1.05;
}

.hero-title {
	font-size: clamp(32px, 3.2vw, 38px);
	font-weight: 800;
	line-height: 1.2;
	max-width: 14ch;
}

.hero-subtitle,
.section-subtitle {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #555;
}

.hero-rating {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 2px;
}

.hero-stars,
.review-stars {
	color: var(--lp-gold);
	letter-spacing: 0.08em;
	font-size: 1rem;
}

.hero-rating-text {
	color: var(--lp-muted);
	font-size: 0.95rem;
}

.hero-bullets {
	margin: 6px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 14px;
}

.hero-bullets li {
	position: relative;
	padding-left: 30px;
	line-height: 1.65;
	color: var(--lp-text);
}

.hero-bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: rgba(15, 118, 110, 0.12);
	box-shadow: inset 0 0 0 6px var(--lp-accent);
}

.hero-price-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 12px;
}

.hero-price {
	display: grid;
	gap: 4px;
}

.hero-price-label,
.hero-price-note {
	font-size: 0.92rem;
	color: var(--lp-muted);
}

.hero-price-value {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 800;
	color: var(--lp-text);
}

.hero-cta.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	width: 100%;
	padding: 0 28px;
	border-radius: 8px;
	background: #111111;
	color: #fff;
	text-decoration: none;
	font-weight: 800;
	font-size: 18px;
	box-shadow: 0 12px 24px rgba(17, 17, 17, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.hero-cta.button:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 28px rgba(17, 17, 17, 0.24);
	color: #fff;
}

.hero-trust-note {
	margin: 2px 0 0;
	font-size: 0.92rem;
	color: var(--lp-muted);
}

.landing-trust-badges {
	padding-top: 28px;
}

.trust-badges-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	background: var(--lp-surface);
	border: 1px solid var(--lp-border);
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
}

.trust-badge-icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: var(--lp-surface-soft);
	color: var(--lp-accent);
	font-weight: 800;
	font-size: 0.92rem;
	flex: 0 0 auto;
}

.trust-badge-text {
	font-weight: 700;
	line-height: 1.3;
}

.section-heading {
	max-width: 720px;
	margin-bottom: 28px;
}

.section-title {
	font-size: clamp(1.8rem, 3vw, 3rem);
}

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

.feature-card,
.review-card,
.faq-item {
	background: var(--lp-surface);
	border: 1px solid var(--lp-border);
	border-radius: 22px;
	box-shadow: var(--lp-shadow);
}

.feature-card {
	padding: 24px;
	text-align: left;
}

.feature-card-img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 18px;
	background: var(--lp-surface-soft);
	margin-bottom: 18px;
}

.feature-card-title,
.review-name {
	margin: 0;
	font-size: 1.05rem;
}

.feature-card-text,
.review-text,
.faq-answer {
	margin: 10px 0 0;
	color: var(--lp-muted);
	line-height: 1.7;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.review-card {
	padding: 22px;
}

.review-header {
	display: flex;
	align-items: center;
	gap: 14px;
}

.review-avatar {
	width: 54px;
	height: 54px;
	border-radius: 999px;
	object-fit: cover;
	border: 3px solid rgba(15, 118, 110, 0.12);
}

.review-image {
	width: 100%;
	height: 220px;
	margin-top: 18px;
	border-radius: 16px;
	object-fit: cover;
	background: var(--lp-surface-soft);
}

.faq-list {
	display: grid;
	gap: 14px;
}

.faq-item {
	padding: 0;
	overflow: hidden;
}

.faq-question {
	list-style: none;
	cursor: pointer;
	padding: 20px 22px;
	font-weight: 700;
	color: var(--lp-text);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.faq-question::-webkit-details-marker {
	display: none;
}

.faq-question::after {
	content: "+";
	font-size: 1.4rem;
	line-height: 1;
	color: var(--lp-accent);
}

.faq-item[open] .faq-question::after {
	content: "–";
}

.faq-answer {
	padding: 0 22px 22px;
}

.landing-guarantee {
	padding: 0 0 72px;
}

.guarantee-panel {
	padding: 28px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid var(--lp-border);
	border-radius: 28px;
	box-shadow: var(--lp-shadow);
}

.section-heading-tight {
	margin-bottom: 20px;
}

.guarantee-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.guarantee-card {
	padding: 20px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--lp-border);
	border-radius: 20px;
}

.guarantee-card-title {
	margin: 0;
	font-size: 1.02rem;
}

.guarantee-card-text {
	margin: 10px 0 0;
	color: var(--lp-muted);
	line-height: 1.7;
}

.woocommerce-checkout .checkout-trust-badges {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 12px;
	margin-top: 12px;
	padding: 10px 4px;
	background: #f8f9fa;
	border: 1px solid var(--lp-border);
	border-radius: 8px;
}

.woocommerce-checkout .checkout-trust-badge {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1 1 0;
	min-width: 0;
	padding: 6px 2px;
	text-align: center;
	justify-content: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.woocommerce-checkout .checkout-trust-badge-icon {
	display: grid;
	place-items: center;
	width: 16px;
	height: 16px;
	border-radius: 999px;
	background: rgba(15, 118, 110, 0.12);
	color: var(--lp-accent);
	flex: 0 0 auto;
}

.woocommerce-checkout .checkout-trust-badge-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.woocommerce-checkout .checkout-trust-badge-copy {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.woocommerce-checkout .checkout-trust-badge-copy strong {
	display: block;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
}

.woocommerce-checkout .checkout-trust-badge-copy span {
	display: none;
}

.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_comments_field,
.woocommerce-checkout #order_comments {
	display: none !important;
}

.woocommerce-checkout .place-order {
	margin-bottom: 12px;
}

.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-form-coupon-toggle {
	display: none !important;
}

.woocommerce-checkout .site-header,
.woocommerce-checkout .ast-header-break-point .ast-header-break-point,
.woocommerce-checkout #masthead,
.woocommerce-checkout .ast-primary-header-bar,
.woocommerce-checkout .main-header-bar,
.woocommerce-checkout .ast-mobile-header-wrap,
.woocommerce-checkout .ast-below-header-wrap,
.woocommerce-checkout .ast-above-header-wrap,
.woocommerce-checkout .main-header-menu-toggle,
.woocommerce-checkout .ast-main-header-menu,
.woocommerce-checkout .ast-header-sections,
.woocommerce-checkout .ast-builder-menu,
.woocommerce-checkout .ast-builder-layout-element {
	display: none !important;
}

.woocommerce-order-received .site-header,
.woocommerce-order-received .ast-header-break-point .ast-header-break-point,
.woocommerce-order-received #masthead,
.woocommerce-order-received .ast-primary-header-bar,
.woocommerce-order-received .main-header-bar,
.woocommerce-order-received .ast-mobile-header-wrap,
.woocommerce-order-received .ast-below-header-wrap,
.woocommerce-order-received .ast-above-header-wrap,
.woocommerce-order-received .main-header-menu-toggle,
.woocommerce-order-received .ast-main-header-menu,
.woocommerce-order-received .ast-header-sections,
.woocommerce-order-received .ast-builder-menu,
.woocommerce-order-received .ast-builder-layout-element {
	display: none !important;
}

.woocommerce-checkout .site-content,
.woocommerce-checkout .content-area,
.woocommerce-checkout .ast-container {
	margin-top: 0;
	padding-top: 0;
}

.woocommerce-order-received .site-content,
.woocommerce-order-received .content-area,
.woocommerce-order-received .ast-container {
	margin-top: 0;
	padding-top: 0;
}

.thankyou-support-box {
	margin-top: 18px;
	padding: 16px 18px;
	background: #f8f9fa;
	border: 1px solid var(--lp-border);
	border-radius: 10px;
}

.thankyou-support-box-text {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--lp-muted);
	text-align: center;
}

.landing-sticky-buy {
	display: none;
}

body.page-template-page-landing-php .ast-above-header-wrap,
body.page-template-page-landing .ast-above-header-wrap {
	display: block !important;
}

body.page-template-page-landing-php .ast-primary-header-bar,
body.page-template-page-landing .ast-primary-header-bar {
	display: flex !important;
	align-items: center;
	justify-content: center;
}

body.page-template-page-landing-php .ast-primary-header-bar .ast-builder-menu,
body.page-template-page-landing-php .ast-primary-header-bar .main-header-menu,
body.page-template-page-landing-php .ast-primary-header-bar .ast-header-navigation,
body.page-template-page-landing-php .ast-primary-header-bar .ast-site-header-cart,
body.page-template-page-landing-php .ast-primary-header-bar .ast-header-account-link,
body.page-template-page-landing-php .ast-primary-header-bar .ast-header-search,
body.page-template-page-landing-php .ast-primary-header-bar .ast-mobile-menu-buttons,
body.page-template-page-landing .ast-primary-header-bar .ast-builder-menu,
body.page-template-page-landing .ast-primary-header-bar .main-header-menu,
body.page-template-page-landing .ast-primary-header-bar .ast-header-navigation,
body.page-template-page-landing .ast-primary-header-bar .ast-site-header-cart,
body.page-template-page-landing .ast-primary-header-bar .ast-header-account-link,
body.page-template-page-landing .ast-primary-header-bar .ast-header-search,
body.page-template-page-landing .ast-primary-header-bar .ast-mobile-menu-buttons {
	display: none !important;
}

body.page-template-page-landing-php .ast-primary-header-bar .ast-site-identity,
body.page-template-page-landing .ast-primary-header-bar .ast-site-identity,
body.page-template-page-landing-php .ast-primary-header-bar .site-branding,
body.page-template-page-landing .ast-primary-header-bar .site-branding {
	margin-inline: auto;
}

body.page-template-page-landing-php .ast-below-header-wrap,
body.page-template-page-landing .ast-below-header-wrap,
body.page-template-page-landing-php .ast-below-header-bar,
body.page-template-page-landing .ast-below-header-bar {
	display: none !important;
}

body.page-template-page-landing-php,
body.page-template-page-landing {
	padding-bottom: 132px;
}

.landing-hero-media {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.landing-thumbnail-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.landing-thumbnail {
	padding: 0;
	border: 1px solid var(--lp-border);
	border-radius: 18px;
	background: var(--lp-surface);
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-thumbnail:hover,
.landing-thumbnail.is-active {
	transform: translateY(-1px);
	border-color: rgba(15, 118, 110, 0.35);
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.landing-thumbnail img {
	display: block;
	width: 100%;
	height: 80px;
	object-fit: cover;
	background: var(--lp-surface-soft);
}

.landing-media-trust {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	width: 100%;
	padding: 16px 20px;
	background: var(--lp-surface);
	border: 1px solid var(--lp-border);
	border-radius: 20px;
	box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
}

.landing-media-trust > span {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lp-muted);
}

.media-logo-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.media-logo-pill,
.media-marquee-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--lp-border);
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--lp-text);
	white-space: nowrap;
}

.hero-price-strip {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	padding: 16px 18px;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: 20px;
	box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
}

.hero-compare-price {
	font-size: 1rem;
	color: var(--lp-muted);
	text-decoration: line-through;
}

.hero-sale-price {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 800;
	color: var(--lp-text);
}

.hero-save-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: #111827;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bundle-selector {
	display: grid;
	gap: 14px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--lp-border);
	border-radius: 24px;
	box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
}

.bundle-selector-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.bundle-selector-label {
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lp-muted);
}

.bundle-selector-note {
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--lp-accent);
}

.bundle-options {
	display: grid;
	gap: 12px;
}

.bundle-option {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 12px;
	padding: 16px 20px;
	border: 1px solid var(--lp-border);
	border-radius: 18px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bundle-option:hover {
	transform: translateY(-1px);
	border-color: rgba(15, 118, 110, 0.28);
	box-shadow: 0 12px 24px rgba(17, 24, 39, 0.05);
}

.bundle-option.is-recommended {
	position: relative;
	border-color: #000;
	border-width: 2px;
	background: linear-gradient(180deg, rgba(236, 253, 245, 0.92), #ffffff);
}

.bundle-option input {
	margin-top: 4px;
	accent-color: var(--lp-accent);
}

.bundle-option-body {
	display: grid;
	gap: 8px;
}

.bundle-option-topline {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
}

.bundle-option-topline strong {
	font-size: 0.98rem;
	line-height: 1.3;
}

.bundle-option-topline span {
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--lp-accent);
	white-space: nowrap;
}

.bundle-option-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	color: var(--lp-muted);
	font-size: 0.88rem;
}

.bundle-option-badge {
	padding: 4px 8px;
	border-radius: 999px;
	background: #111827;
	color: #fff;
	font-size: 0.74rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.landing-autorefill {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--lp-text);
}

.landing-autorefill input {
	accent-color: var(--lp-accent);
	width: 18px;
	height: 18px;
}

.landing-buy-cta {
	width: 100%;
	min-height: 56px;
	background: #111111;
	border: 0;
	box-shadow: 0 14px 24px rgba(17, 17, 17, 0.18);
}

.landing-buy-cta:hover {
	box-shadow: 0 18px 28px rgba(17, 17, 17, 0.22);
}

.hero-stock-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.in-stock-pill {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: #ecfdf5;
	color: #047857;
	font-size: 0.82rem;
	font-weight: 800;
}

.payment-icon-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.payment-icon-row span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 56px;
	padding: 8px 10px;
	border-radius: 10px;
	border: 1px solid var(--lp-border);
	background: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.03em;
}

.media-marquee {
	padding: 0 0 48px;
	overflow: hidden;
}

.media-marquee-track {
	display: flex;
	align-items: center;
	gap: 12px;
	width: max-content;
	animation: landing-marquee 22s linear infinite;
}

@keyframes landing-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

.landing-transform {
	padding: 28px 0 72px;
}

.transform-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 22px;
}

.transform-compare {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.transform-card,
.ingredient-card,
.stat-card {
	background: var(--lp-surface);
	border: 1px solid var(--lp-border);
	border-radius: 24px;
	box-shadow: var(--lp-shadow);
}

.transform-card {
	padding: 18px;
}

.transform-card-media {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: var(--lp-surface-soft);
}

.transform-card-media img {
	display: block;
	width: 100%;
	height: auto;
}

.transform-week {
	position: absolute;
	left: 14px;
	top: 14px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.82);
	color: #fff;
	font-size: 0.74rem;
	font-weight: 800;
}

.transform-card h3,
.ingredient-card h3,
.stat-copy h3 {
	margin: 14px 0 0;
	font-size: 1.02rem;
}

.transform-card p,
.ingredient-card p,
.stat-copy p {
	margin: 8px 0 0;
	line-height: 1.65;
	color: var(--lp-muted);
}

.transform-reviews {
	display: grid;
	gap: 18px;
}

.review-card-featured {
	padding: 22px;
}

.landing-ingredients {
	padding: 0 0 72px;
}

.ingredient-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.ingredient-card {
	padding: 22px;
	text-align: left;
}

.ingredient-icon {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: 16px;
	margin-bottom: 4px;
	background: var(--lp-surface-soft);
}

.landing-stats {
	padding: 70px 0;
	background: #0b0f19;
	color: #fff;
}

.landing-stats-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
	gap: 24px;
	align-items: center;
}

.section-heading-light {
	max-width: 520px;
	margin-bottom: 0;
}

.section-kicker-light,
.section-title-light,
.section-subtitle-light {
	color: #fff;
}

.section-subtitle-light {
	opacity: 0.78;
}

.stats-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.stat-card {
	display: grid;
	gap: 16px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: none;
	backdrop-filter: blur(8px);
}

.stat-ring {
	--percent: 0;
	position: relative;
	display: grid;
	place-items: center;
	width: 132px;
	height: 132px;
	margin: 0 auto;
	border-radius: 50%;
	background:
		conic-gradient(var(--lp-accent) calc(var(--percent) * 1%), rgba(255, 255, 255, 0.12) 0);
}

.stat-ring::before {
	content: "";
	position: absolute;
	inset: 14px;
	border-radius: 50%;
	background: #0b0f19;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-ring span {
	position: relative;
	z-index: 1;
	font-size: 1.6rem;
	font-weight: 900;
}

.stat-copy {
	text-align: center;
}

.stat-copy h3,
.stat-copy p {
	color: #fff;
}

.stat-copy p {
	opacity: 0.78;
}

.landing-faq {
	padding-bottom: 88px;
}

.landing-sticky-buy {
	display: block;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
	background: rgba(249, 250, 251, 0.88);
	backdrop-filter: blur(16px);
	border-top: 1px solid rgba(229, 231, 235, 0.88);
	box-shadow: 0 -10px 30px rgba(17, 24, 39, 0.08);
}

.landing-sticky-buy-inner {
	width: min(100% - 24px, 1180px);
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.landing-sticky-product {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.landing-sticky-thumb {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 12px;
	background: #fff;
	border: 1px solid var(--lp-border);
	flex: 0 0 auto;
}

.landing-sticky-copy {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.landing-sticky-copy strong,
.landing-sticky-copy span {
	display: block;
	line-height: 1.25;
}

.landing-sticky-copy strong {
	font-size: 0.96rem;
	font-weight: 800;
	color: var(--lp-text);
}

.landing-sticky-copy span {
	font-size: 0.88rem;
	color: var(--lp-muted);
}

.landing-sticky-buy-button {
	min-width: 220px;
	background: #111111;
	border: 0;
	box-shadow: 0 12px 24px rgba(17, 17, 17, 0.18);
}

@media (max-width: 1024px) {
	.landing-hero-grid,
	.transform-grid,
	.landing-stats-grid {
		grid-template-columns: 1fr;
	}

	.landing-hero-media {
		max-width: 720px;
		margin-inline: auto;
	}

	.stats-cards,
	.ingredient-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	body.page-template-page-landing-php,
	body.page-template-page-landing {
		padding-bottom: 156px;
	}

	.landing-hero,
	.landing-trust-badges,
	.landing-features,
	.landing-social-proof,
	.landing-faq,
	.landing-transform,
	.landing-ingredients,
	.landing-stats {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.landing-hero-grid,
	.transform-compare,
	.stats-cards,
	.ingredient-grid {
		grid-template-columns: 1fr;
	}

	.landing-hero-media {
		max-width: none;
	}

	.landing-thumbnail img {
		height: 80px;
	}

	.hero-title {
		max-width: none;
	}

	.hero-price-row,
	.hero-stock-row,
	.bundle-selector-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.bundle-option {
		grid-template-columns: 16px minmax(0, 1fr);
		padding: 14px 16px;
	}

	.hero-cta.button,
	.landing-sticky-buy-button {
		width: 100%;
		min-width: 0;
	}

	.landing-sticky-buy-inner {
		flex-direction: column;
		align-items: stretch;
	}

	.landing-sticky-product {
		width: 100%;
	}

	.payment-icon-row {
		width: 100%;
	}

	.payment-icon-row span {
		flex: 1;
	}
}

@media (max-width: 1024px) {
	.landing-hero-grid,
	.features-grid,
	.reviews-grid,
	.trust-badges-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.landing-hero-grid {
		gap: 40px;
	}
}

@media (max-width: 767px) {
	.landing-hero,
	.landing-trust-badges,
	.landing-features,
	.landing-social-proof,
	.landing-faq {
		padding: 48px 0;
	}

	.landing-hero-grid,
	.features-grid,
	.reviews-grid,
	.trust-badges-grid {
		grid-template-columns: 1fr;
	}

	.landing-hero-grid {
		gap: 24px;
	}

	.landing-hero-media {
		max-width: none;
	}

	.product-hero-image-wrap {
		aspect-ratio: 4 / 3;
	}

	.hero-title {
		max-width: none;
	}

	.hero-price-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-cta.button {
		width: 100%;
		font-size: 16px;
	}

	.feature-card,
	.review-card {
		padding: 20px;
	}

	.faq-question,
	.faq-answer {
		padding-left: 18px;
		padding-right: 18px;
	}

	.guarantee-panel {
		padding: 22px;
	}

	.guarantee-grid {
		grid-template-columns: 1fr;
	}

	.woocommerce-checkout .checkout-trust-badges {
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 8px;
		padding: 10px 4px;
		overflow: hidden;
	}

	.woocommerce-checkout .checkout-trust-badge {
		padding: 6px 2px;
		gap: 6px;
	}

	.landing-sticky-buy {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 999;
		display: block;
		padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
		background: linear-gradient(180deg, rgba(249, 250, 251, 0.68), rgba(249, 250, 251, 0.96));
		backdrop-filter: blur(14px);
		border-top: 1px solid rgba(229, 231, 235, 0.88);
		box-shadow: 0 -10px 30px rgba(17, 24, 39, 0.08);
	}

	.landing-sticky-buy-button {
		width: 100%;
		min-height: 56px;
	}

	body {
		padding-bottom: 92px;
	}
}
