/**
 * Homepage styles.
 *
 * Loaded only on the front page (see inc/enqueue.php) so the shop and blog
 * do not pay for it. Depends on the tokens declared in style.css.
 */

.homepage-sections {
	display: flex;
	flex-direction: column;
	overflow-x: clip;
	width: 100%;
}

/* ---------------------------------------------------------------- Hero --- */

.homepage-hero-slider {
	position: relative;
	background: var(--color-surface);
	overflow: hidden;
}

.homepage-hero-slider__track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	max-width: 100%;
	position: relative;
}

.homepage-hero-slider__track::-webkit-scrollbar {
	display: none;
}

.homepage-hero-slide {
	position: relative;
	flex: 0 0 100%;
	min-width: 0;
	scroll-snap-align: start;
	display: flex;
}

.homepage-hero-slide__link,
.homepage-hero-slide__media {
	display: block;
	width: 100%;
}

/*
 * Fixed-ratio media boxes: every slide is exactly the same height, so the
 * track never sizes to the tallest slide and shorter artwork can never leave
 * a "cut in half" band. The image fills the box with object-fit: cover, so
 * any aspect mismatch crops instead of leaving gaps or squishing.
 * Desktop artwork is 1792x592; mobile artwork is 16:9.
 */
.homepage-hero-slide__media {
	aspect-ratio: 1792 / 592;
	overflow: hidden;
}

.homepage-hero-slide__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-user-drag: none;
	user-select: none;
}

@media (max-width: 47.99em) {
	.homepage-hero-slide__media {
		aspect-ratio: 16 / 9;
	}
}

/* Slider controls */
.homepage-hero-slider__controls {
	position: absolute;
	z-index: 2;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: var(--shadow-sm);
}

.homepage-hero-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: var(--color-text);
	box-shadow: var(--shadow-sm);
	cursor: pointer;
	transition:
		background var(--transition-fast),
		color var(--transition-fast),
		transform var(--transition-fast);
}

.homepage-hero-slider__arrow--prev {
	left: 20px;
}

.homepage-hero-slider__arrow--next {
	right: 20px;
}

.homepage-hero-slider__arrow:hover {
	background: var(--color-primary);
	color: #fff;
	transform: translateY(-50%) scale(1.05);
}

.homepage-hero-slider__arrow:focus-visible {
	outline: 2px solid var(--color-swoosh-green);
	outline-offset: 2px;
}

.homepage-hero-slider__dots {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.homepage-hero-slider__dot {
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--color-border);
	cursor: pointer;
	transition:
		background var(--transition-fast),
		transform var(--transition-fast),
		width var(--transition-fast);
}

.homepage-hero-slider__dot[aria-current="true"] {
	background: var(--color-primary);
	width: 24px;
	border-radius: var(--radius-pill);
}

.homepage-hero-slider__dot:focus-visible {
	outline: 2px solid var(--color-swoosh-green);
	outline-offset: 3px;
}

/* ------------------------------------------------------------- Marquee --- */

.vpure-marquee {
	overflow: hidden;
	background: var(--color-primary);
	color: var(--color-white);
	width: 100%;
	max-width: 100%;
	position: relative;
}

.vpure-marquee__viewport {
	overflow: hidden;
	width: 100%;
	max-width: 100%;
}

.vpure-marquee__track {
	display: flex;
	width: max-content;
	animation: vpure-marquee-scroll 5s linear infinite;
}

.vpure-marquee__group {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 28px;
	padding-right: 28px;
	min-height: 64px;
}

.vpure-marquee__text {
	font-size: 28px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.vpure-marquee__leaf {
	width: 34px;
	height: 34px;
	object-fit: contain;
}

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

@media (max-width: 47.99em) {
	.vpure-marquee__group {
		min-height: 52px;
		gap: 20px;
		padding-right: 20px;
	}

	.vpure-marquee__text {
		font-size: 20px;
	}

	.vpure-marquee__leaf {
		width: 26px;
		height: 26px;
	}
}

/* -------------------------------------------------------- Trust Benefits --- */

.homepage-trust-benefits {
	padding: 40px 16px;
	background: var(--color-background);
}

.homepage-trust-benefits__container {
	max-width: var(--ct-max-width, 1140px);
	margin: 0 auto;
}

.homepage-trust-benefits__grid {
	display: grid;
	grid-template-columns: repeat(4, 195px);
	justify-content: center;
	gap: 16px;
}

.homepage-trust-card {
	background: transparent;
	border: 1px solid transparent;
	border-radius: var(--radius-md);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 24px 16px;
	height: 180px;
	justify-content: center;
	transition:
		background-color var(--transition-normal),
		border-color var(--transition-normal);
}

.homepage-trust-card--green {
	border-color: var(--color-accent-green);
}

.homepage-trust-card--green:hover {
	background-color: var(--color-accent-green-soft);
}

.homepage-trust-card--red {
	border-color: var(--color-primary);
}

.homepage-trust-card--red:hover {
	background-color: var(--color-primary-soft);
}

.homepage-trust-card__icon-wrapper {
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.homepage-trust-card__icon {
	width: 68px;
	height: 68px;
	object-fit: contain;
}

.homepage-trust-card__title {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--color-text);
	margin: 0;
}

@media (max-width: 61.99em) {
	.homepage-trust-benefits__grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 480px;
		margin: 0 auto;
		gap: 16px;
	}

	.homepage-trust-card {
		height: auto;
		min-height: 150px;
	}
}

@media (max-width: 47.99em) {
	.homepage-trust-benefits {
		padding: 28px 16px;
	}

	.homepage-trust-card__icon-wrapper {
		margin-bottom: 12px;
	}

	.homepage-trust-card__icon {
		width: 56px;
		height: 56px;
	}

	.homepage-trust-card__title {
		font-size: 15px;
	}
}

/* ---------------------------------------------------------- Best Sellers --- */

.homepage-best-sellers {
	padding: 48px 0;
	background: var(--color-background);
	overflow: hidden;
}

.homepage-best-sellers__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto 24px auto;
	max-width: var(--ct-max-width, 1140px);
	padding: 0 16px;
}

/* .homepage-best-sellers__title {
	font-size: 24px;
	font-weight: 600;
	margin: 0;
	color: var(--color-text);
} */

.homepage-best-sellers__navigation {
	display: flex;
	gap: 12px;
}

.homepage-best-sellers__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	color: var(--color-text);
	cursor: pointer;
	padding: 0;
	transition:
		background var(--transition-fast),
		color var(--transition-fast);
	z-index: 2;
}

.homepage-best-sellers__arrow:hover {
	background: var(--color-primary);
	color: var(--color-white);
}

.homepage-best-sellers__slider {
	position: relative;
	overflow: hidden;
}

.homepage-best-sellers__track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 24px; /* Room for shadow */
	padding-left: max(16px, calc((100% - var(--ct-max-width, 1140px)) / 2));
	padding-right: max(16px, calc((100% - var(--ct-max-width, 1140px)) / 2));
	/* Prevent track from creating horizontal page overflow */
	box-sizing: border-box;
	max-width: 100%;
	padding-top: 16px;
	position: relative;
}

.homepage-best-sellers__track::-webkit-scrollbar {
	display: none;
}

/* Card Design matching reference image */
.product-card {
	position: relative;
	min-width: 0;
	flex: 0 0 clamp(220px, calc(100vw / 5.5), 360px);
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	background: #ffffff; /* pure white card */
	border-radius: 24px;
	padding: 12px;
	box-shadow: 0px 0px 25px -5px rgb(0 0 0 / 12%);
	transition: box-shadow var(--transition-normal);
	height: auto;
	gap: 10px;
}

.product-card:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.product-card__image-link {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 16px;
	overflow: hidden;
	background: var(--color-surface);
	margin-bottom: 16px;
}

.product-card__image {
	width: 100%;
	height: 100%;
}

.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	object-position: center;
	transition: transform var(--transition-normal);
}

.product-card:hover .product-card__image img {
	transform: scale(1.025);
}

.product-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
	padding: 0 4px;
}

.product-card__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 6px 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-card__title a {
	color: var(--color-text);
	text-decoration: none;
}

.product-card__title a:hover {
	color: var(--color-primary);
}

.product-card__excerpt {
	font-size: 13px;
	color: var(--color-text-muted);
	line-height: 1.4;
	margin-bottom: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.product-card__excerpt p {
	margin: 0;
}

.product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: auto; /* push to bottom */
	gap: 8px;
	min-width: 0;
}

.product-card__price {
	background: #f0f3f5;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 15px;
	font-weight: 700;
	color: var(--color-text);
}

.product-card__price del {
	display: none; /* Hide regular price in this minimal view */
}

.product-card__price ins {
	text-decoration: none;
}

.product-card__action .add_to_cart_button,
.product-card__action .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #111111; /* Dark premium button */
	color: #ffffff;
	padding: 8px 18px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition:
		background var(--transition-fast),
		transform var(--transition-fast);
}

.product-card__action .add_to_cart_button:hover,
.product-card__action .button:hover {
	background: var(--color-primary); /* Brand color on hover */
	transform: scale(1.02);
}

/* Arrow inside button using CSS ::after (mimicking Buy Now arrow) */
.product-card__action .add_to_cart_button::after,
.product-card__action .button::after {
	content: "↗";
	display: inline-block;
	margin-left: 6px;
	font-size: 14px;
	font-weight: bold;
	background: #ffffff;
	color: #111111;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
}

.product-card__action .add_to_cart_button:hover::after,
.product-card__action .button:hover::after {
	color: var(--color-primary);
}

@media (max-width: 63.99em) {
	.product-card {
		flex: 0 0 calc(33.333% - 16px);
	}
}

@media (max-width: 47.99em) {
	.homepage-best-sellers {
		padding: 32px 0;
	}

	.homepage-best-sellers__track {
		gap: 16px;
		padding-left: 16px;
		padding-right: 16px;
	}

	/* Show ~1 card + a peek of the next to hint at scrolling */
	.product-card {
		flex: 0 0 80vw;
		max-width: 300px;
	}

	.homepage-best-sellers__navigation {
		display: none;
	}

	.product-card__action .add_to_cart_button,
	.product-card__action .button {
		padding: 6px 14px;
		font-size: 13px;
	}
	.product-card__price {
		padding: 6px 12px;
		font-size: 14px;
	}
}

/* --------------------------------------------------------------- Promo --- */

.homepage-promo {
	margin-block: 40px;
}

.homepage-promo__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 32px;
	padding: 32px;
	border-radius: var(--radius-md);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.homepage-promo__media img,
.homepage-promo__image {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 320px;
	object-fit: cover;
	border-radius: var(--radius-sm);
}

.homepage-promo__title {
	margin: 0 0 12px;
	font-size: clamp(1.375rem, 1.1rem + 1.2vw, 2rem);
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-text);
}

.homepage-promo__description {
	margin: 0 0 22px;
	color: var(--color-text-muted);
}

/* ---------------------------------------------------------- Text block --- */

.homepage-text {
	margin-block: 40px;
}

.homepage-text__inner {
	max-width: 800px;
	margin-inline: auto;
	padding: 32px;
	border-radius: var(--radius-md);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
}

.homepage-text__title {
	margin: 0 0 16px;
	font-size: clamp(1.375rem, 1.1rem + 1.2vw, 2rem);
	font-weight: 800;
	line-height: 1.2;
}

.homepage-text__content > :last-child {
	margin-bottom: 0;
}

/* ----------------------------------------------------------- Grids ------- */

/*
 * Featured products: the slider clips the track exactly like the
 * best-sellers slider does. `position: relative` on both makes them the
 * containing block for absolutely-positioned descendants (e.g. WooCommerce's
 * `.screen-reader-text` inside price / add-to-cart markup), so those can no
 * longer escape a horizontal scroller and stretch `html` on small screens.
 */
.homepage-featured-products {
	overflow: hidden;
}

.homepage-featured-products__slider {
	position: relative;
	overflow: hidden;
}

.homepage-product-grid {
	display: grid;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Desktop: 4 columns. Tablet lands on 3 via the 61.99em breakpoint below. */
@media (max-width: 61.99em) {
	.homepage-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 47.99em) {
	.homepage-product-grid {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-ms-overflow-style: none;
		padding-bottom: 20px;
		padding-left: 16px;
		padding-right: 16px;
		box-sizing: border-box;
		max-width: 100%;
		position: relative;
	}
	.homepage-product-grid::-webkit-scrollbar {
		display: none;
	}
	/* Featured products: show 2 per row via ~45vw cards */
	.homepage-product-grid .product-card {
		flex: 0 0 44vw;
		max-width: 200px;
	}
}

/* -------------------------------------------------- Category card ------- */

.homepage-categories {
	padding: 10px 0 15px;
	overflow: hidden;
}

.homepage-categories__slider {
	position: relative;
	overflow: hidden;
	min-width: 0;
}

.homepage-category-strip {
	display: flex;
	justify-content: center;
	gap: clamp(12px, 2vw, 24px);
	margin: 0;
	padding: 0;
	position: relative;
	min-width: 0;
	max-width: 100%;
}

.homepage-category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
	transition: transform var(--transition-fast);
	flex: 0 0 auto;
}

.homepage-category-card:hover,
.homepage-category-card:focus-visible {
	transform: translateY(-3px);
	color: var(--color-primary);
}

.homepage-category-card:focus-visible {
	outline: 2px solid var(--color-swoosh-green);
	outline-offset: 4px;
}

.homepage-category-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(70px, 12vw, 100px);
	height: clamp(70px, 12vw, 100px);
	border-radius: 50%;
	background: var(--color-surface);
	overflow: hidden;
	margin-bottom: 12px;
	box-shadow:
		0 0 0 1px var(--color-border),
		var(--shadow-sm);
	transition: box-shadow var(--transition-fast);
}

.homepage-category-card:hover .homepage-category-card__media {
	box-shadow:
		0 0 0 1px var(--color-border),
		var(--shadow-md);
}

.homepage-category-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.homepage-category-card__placeholder {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--color-primary);
}

.homepage-category-card__title {
	font-size: clamp(0.75rem, 2vw, 0.875rem);
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
	max-width: clamp(80px, 15vw, 110px);
}

/* --------------------------------------------------- Product card ------- */

/* Removed old product-card__inner classes as they are now global product-card */

.homepage-featured-products__more {
	margin: 36px 0 0;
	text-align: center;
}

/* --------------------------------------------------------- Responsive --- */

@media (max-width: 47.99em) {
	.homepage-promo__inner {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px;
	}

	.homepage-text__inner {
		padding: 24px 20px;
	}

	/* Mobile categories - horizontal scroll */
	.homepage-category-strip {
		justify-content: flex-start;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-ms-overflow-style: none;
		padding-bottom: 8px; /* Room for shadow */
	}

	.homepage-category-strip::-webkit-scrollbar {
		display: none;
	}

	.homepage-category-card {
		scroll-snap-align: start;
		flex: 0 0 110px;
	}

	.homepage-category-card__media {
		width: 85px;
		height: 85px;
	}
}

@media (max-width: 29.99em) {
	.homepage-product-grid {
		gap: 14px;
	}

	.product-card__body {
		padding: 12px 12px 16px;
	}
}

/* Honour reduced-motion: no smooth scrolling, no hover lift, no continuous marquee. */
@media (prefers-reduced-motion: reduce) {
	.homepage-hero-slider__track,
	.homepage-category-strip {
		scroll-behavior: auto;
	}

	.homepage-category-card:hover,
	.product-card__inner:hover,
	.homepage-promo__button:hover,
	.homepage-button:hover {
		transform: none;
	}

	.product-card__inner:hover .product-card__media img {
		transform: none;
	}

	.homepage-trust-card {
		transition: none;
	}

	.vpure-marquee__track {
		animation: none;
		width: 100%;
		justify-content: center;
	}

	.vpure-marquee__group {
		padding-right: 0;
	}

	.vpure-marquee__group:nth-child(n + 2) {
		display: none;
	}
}

/* ----------------------------------------------------------- About VPure ------- */

.homepage-about {
	padding-top: clamp(40px, 8vw, 80px);
	padding-bottom: clamp(40px, 8vw, 80px);
	background: #fafafa; /* Subtle tint */
}

.homepage-about__layout {
	display: grid;
	gap: 40px;
	align-items: center;
}

.homepage-about__creative {
	width: 100%;
	max-width: 560px;
	margin-inline: auto;
	text-align: center;
}

.homepage-about__creative img {
	display: block;
	width: 100%;
	height: auto;
}

.homepage-about__header {
	margin-bottom: 32px;
}

.homepage-about__title {
	font-size: clamp(1.5rem, 6vw, 2.75rem);
	font-weight: 800;
	color: var(--color-text);
	margin: 0 0 8px;
	line-height: 1.2;
}

/* Subtle red accent under the title, as requested */
.homepage-about__title::after {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	background: var(--color-primary);
	margin-top: 12px;
	border-radius: var(--radius-pill);
}

.homepage-about__intro {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--color-text-muted);
	margin: 0;
}

.homepage-about__features {
	display: grid;
	gap: 24px;
	margin-bottom: 32px;
}

.homepage-about__feature {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.homepage-about__feature-icon {
	flex: 0 0 auto;
	width: clamp(52px, 8vw, 72px);
	height: clamp(52px, 8vw, 72px);
	object-fit: contain;
}

.homepage-about__feature-content {
	flex: 1;
}

.homepage-about__feature-title {
	font-size: clamp(1rem, 2vw, 1.125rem); /* ~16px-18px */
	font-weight: 600;
	color: var(--color-text);
	margin: 0 0 6px;
	line-height: 1.3;
}

.homepage-about__feature-description {
	font-size: clamp(0.875rem, 1.5vw, 0.9375rem); /* ~14px-15px */
	line-height: 1.5;
	color: var(--color-text-muted);
	margin: 0;
}

.homepage-about__cta {
	margin-top: 32px;
}

.homepage-about__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	background: var(--color-primary);
	color: var(--color-white);
	font-weight: 600;
	border-radius: var(--radius-pill);
	text-decoration: none;
	transition: background var(--transition-fast);
}

.homepage-about__btn:hover,
.homepage-about__btn:focus-visible {
	background: var(--color-primary-dark);
	color: var(--color-white);
}

@media (min-width: 48em) {
	.homepage-about__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px;
	}
}

@media (min-width: 62em) {
	.homepage-about__layout {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: 60px;
	}
}

/* --------------------------------------------------- VPure Comparison ------- */

.vpure-comparison {
	background: linear-gradient(
		90deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.vpure-comparison__bg-leaf {
	position: absolute;
	top: 85%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: clamp(300px, 50vw, 600px);
	height: clamp(300px, 50vw, 600px);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.2;
	pointer-events: none;
	/* filter: brightness(0) invert(1); */
	z-index: 1;
}

.vpure-comparison .container {
	position: relative;
	z-index: 2;
}

.vpure-comparison__panel {
	color: var(--color-white);
	padding: 0; /* Remove inner panel padding since outer section has padding */
}

.vpure-comparison__header {
	/* text-align: center; */
	margin-bottom: 48px;
	color: var(--color-white);
}

.vpure-comparison__title {
	font-size: clamp(28px, 4vw, 36px);
	margin: 0 0 12px;
	color: var(--color-white);
}

.vpure-comparison__subtitle {
	font-size: 16px;
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
}

.vpure-comparison__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(80px, 0.2fr) minmax(0, 1fr);
	align-items: center;
	gap: 24px;
}

.vpure-comparison__card {
	background: var(--color-white);
	border-radius: 16px;
	padding: 40px 32px 32px;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative; /* for badge */
}

.vpure-comparison__badge {
	position: absolute;
	top: -24px;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--color-white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 2;
}

.vpure-comparison__badge--vpure {
	background: var(--color-swoosh-green);
}

.vpure-comparison__badge--traditional {
	background: var(--color-primary-dark);
}

.vpure-comparison__card--vpure {
	background: var(--color-accent-green-soft);
	border: 2px solid var(--color-swoosh-green);
	color: var(--color-text);
}

.vpure-comparison__card--traditional {
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--color-white);
}

.vpure-comparison__card-title {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 24px;
	text-align: center;
}

.vpure-comparison__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 16px;
}

.vpure-comparison__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.vpure-comparison__item-icon {
	flex-shrink: 0;
	display: inline-flex;
	margin-top: 2px;
}

.vpure-comparison__card--vpure .vpure-comparison__item-icon {
	color: var(--color-primary);
}

.vpure-comparison__card--traditional .vpure-comparison__item-icon {
	color: var(--color-white);
	margin-top: 5px; /* align dot */
}

.vpure-comparison__item-text {
	font-size: 15px;
	line-height: 1.45;
}

.vpure-comparison__center {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.vpure-comparison__vs {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-white);
	background: rgba(255, 255, 255, 0.2);
	padding: 12px;
	border-radius: 50%;
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vpure-comparison__visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.vpure-comparison__leaf-icon {
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

@media (max-width: 61.99em) {
	.vpure-comparison__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.vpure-comparison__center {
		flex-direction: row;
		justify-content: center;
	}

	.vpure-comparison__vs {
		width: 44px;
		height: 44px;
		font-size: 20px;
	}
}

@media (max-width: 47.99em) {
	.vpure-comparison {
		padding: 48px 0;
	}

	.vpure-comparison__panel {
		padding: 0;
	}

	.vpure-comparison__card {
		padding: 32px 24px 24px;
	}
}

/* --------------------------------------------------- Expert Blogs ------- */

.expert-blogs {
	background: var(--color-white);
}

.expert-blogs__header {
	margin-bottom: 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.expert-blogs__title {
	color: var(--color-primary);
	margin-bottom: 24px;
}

.expert-blogs__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	background: var(--color-primary);
	color: var(--color-white);
	border-radius: var(--radius-pill, 100px);
	text-decoration: none;
	font-weight: 500;
	transition: background var(--transition-fast, 0.2s ease);
}

.expert-blogs__cta:hover,
.expert-blogs__cta:focus-visible {
	background: var(--color-primary-dark);
	color: var(--color-white);
}

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

.blog-card {
	background: transparent;
	display: flex;
	flex-direction: column;
}

.blog-card__image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: var(--radius-md, 12px);
}

.blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-normal, 0.3s ease);
}

.blog-card:hover .blog-card__image img {
	transform: scale(1.025);
}

.blog-card__content {
	padding-top: 20px;
}

.blog-card__date {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-text-muted);
	margin-bottom: 8px;
}

.blog-card__title {
	margin: 0;
	font-size: clamp(18px, 1.5vw, 20px);
	line-height: 1.35;
	font-weight: 600;
}

.blog-card__title a {
	color: var(--color-text);
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color var(--transition-fast, 0.2s ease);
}

.blog-card__title a:hover,
.blog-card__title a:focus-visible {
	color: var(--color-primary);
}

@media (max-width: 56.25em) {
	/* 900px */
	.expert-blogs__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 47.99em) {
	.expert-blogs__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}
