
.xb-product-template-wrapper {
	width: 100%;
	min-height: 100vh;
	background: var(--xb-premium-bg);
}

.xb-premium-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	background: #fff;
	border-bottom: 1px solid #eaeaea;
}

.xb-premium-header .xb-logo {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 2px;
	color: var(--xb-premium-accent);
}

.xb-premium-header .xb-nav {
	display: flex;
	gap: 30px;
}

.xb-premium-header .xb-nav a {
	text-decoration: none;
	color: #111;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
}

.xb-premium-header .xb-header-icons {
	display: flex;
	gap: 15px;
	font-size: 18px;
}

.xb-promo-banner {
	background: var(--xb-premium-accent);
	color: #fff;
	text-align: center;
	padding: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
}

/* Hero Section */
.xb-hero-container {
	max-width: 1200px;
	margin: 40px auto;
	display: flex;
	justify-content: center;
	gap: 60px;
	padding: 0 20px;
	align-items: flex-start;
}

/* Both columns get the same flex-basis/max-width so the gallery and the
   text+form column stay visually balanced instead of the form column
   stretching to fill whatever space the capped gallery leaves behind. */
.xb-hero-gallery {
	flex: 1 1 460px;
	max-width: 480px;
	position: sticky;
	top: 20px;
}

/* Thumb rail on the left, main image filling the rest — matches the
   reference layout instead of a horizontal thumb row under the image. */
.xb-gallery-flex {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.xb-main-image {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.xb-main-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.xb-gallery-thumbs {
	display: flex;
	flex-direction: row;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	padding-bottom: 4px;
}
.xb-gallery-thumbs::-webkit-scrollbar {
	display: none;
}

.xb-gallery-thumbs img {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: 6px;
	border: 2px solid #e5e0d8;
	cursor: pointer;
	transition: border-color 0.15s ease, opacity 0.15s ease;
	opacity: 0.85;
}

.xb-gallery-thumbs img:hover {
	opacity: 1;
}

.xb-gallery-thumbs img.active {
	border-color: var(--xb-premium-accent);
	opacity: 1;
}

/* Small decorative benefit-icon column between the gallery and the form. */
.xb-hero-benefits {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding-top: 8px;
}

.xb-hero-benefit {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 84px;
	text-align: center;
}

.xb-hero-benefit-icon {
	width: 48px;
	height: 48px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: color-mix(in srgb, var(--xb-premium-accent) 10%, #fff);
	display: flex;
	align-items: center;
	justify-content: center;
}

.xb-hero-benefit-label {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
}

.xb-hero-content {
	flex: 1 1 460px;
	max-width: 520px;
	min-width: 0;
	align-self: flex-start;
	position: sticky;
	top: 24px;
}

/* inline-flex, not flex: a block-level flex container stretches to the
   parent's full width even though its children (stars + count) only need a
   fraction of it, leaving a large invisible clickable/selectable strip after
   the text. inline-flex shrinks the box down to exactly what the content needs. */
.xb-hero-reviews-stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: var(--xb-premium-accent);
	margin-bottom: 10px;
}

.xb-hero-reviews-stars svg {
	width: 15px;
	height: 15px;
}

.xb-review-count {
	color: #666;
	font-size: 13px;
	margin-left: 6px;
}

.xb-hero-title {
	font-family: 'Cairo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	/* Fixed, not vw-based: this column tops out at 520px (see
	   .xb-hero-content above) regardless of viewport width, so scaling off
	   the viewport overshot and made the title look oversized for its box. */
	font-size: 21px;
	font-weight: 700;
	margin: 0 0 14px 0;
	line-height: 1.4;
	word-break: break-word;
}

.xb-hero-price {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.xb-hero-price del {
	color: #999;
	font-size: 18px;
	text-decoration: line-through;
	font-weight: 400;
}
.xb-hero-price ins {
	color: var(--xb-premium-text);
	font-weight: 800;
	text-decoration: none;
}

/* Offers */
.xb-hero-offers {
	display: flex;
	gap: 10px;
	margin-bottom: 25px;
}

.xb-offer-box {
	flex: 1;
	border: 2px solid #eaeaea;
	padding: 15px;
	text-align: center;
	border-radius: 8px;
	cursor: pointer;
	background: #fff;
}

.xb-offer-box.active {
	border-color: var(--xb-premium-accent);
	background: rgba(198, 156, 109, 0.05);
}

.xb-offer-title {
	font-weight: 700;
	font-size: 16px;
}

.xb-offer-price {
	color: #555;
	font-size: 14px;
}

/* Trust Badges */
.xb-hero-trust-badges {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	padding-top: 20px;
	border-top: 1px solid #eaeaea;
}

.xb-badge {
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	color: #444;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

/* Featured Review */
.xb-hero-featured-review,
.xb-hero-testimonial {
	background: #fff;
	padding: 16px;
	border-radius: 10px;
	margin: 20px 0 0;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.xb-testimonial-slide {
	display: none;
}

.xb-testimonial-slide.active {
	display: block;
}

.xb-review-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 10px;
}

.xb-review-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.xb-review-name {
	font-weight: 700;
	font-size: 14px;
}

.xb-review-name span {
	display: block;
	color: var(--xb-premium-accent);
	font-size: 12px;
	font-weight: normal;
	margin-top: 2px;
}

.xb-review-stars {
	display: flex;
	align-items: center;
	gap: 2px;
	color: var(--xb-premium-accent);
	margin-bottom: 8px;
}

.xb-review-text {
	font-style: italic;
	font-size: 14px;
	line-height: 1.5;
	color: #555;
	margin: 0 0 10px;
}

/* Small inline pagination dots for the hero testimonial and ingredient
   spotlight carousels — deliberately not reusing `.xb-carousel-dots` /
   `.xb-dot` (the unrelated mobile-carousel overlay defined above, which is
   absolutely positioned and would break this inline layout). */
.xb-mini-dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 12px;
}

.xb-mini-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #e5e0d8;
	cursor: pointer;
}

.xb-mini-dot.active {
	background: var(--xb-premium-accent);
}

/* Cosmetic refill checkbox — purely visual, doesn't affect price/order. */
.xb-refill-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #444;
	margin-bottom: 12px;
	cursor: default;
}

/* Timeline */
.xb-hero-timeline {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	position: relative;
}

.xb-hero-timeline::before {
	content: '';
	position: absolute;
	top: 15px;
	left: 30px;
	right: 30px;
	height: 2px;
	background: var(--xb-premium-accent);
	z-index: 0;
}

.xb-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	z-index: 1;
}

.xb-step span {
	width: 32px;
	height: 32px;
	background: var(--xb-premium-accent);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

/* Wide variant used by the results_timeline section, which sits on a
   brand-colored full-bleed background — the default accent-colored circle
   and connector line would disappear against a same-color background, so
   both flip to white/translucent-white here for contrast. */
.xb-timeline-wide {
	max-width: 900px;
	margin: 0 auto 30px;
	padding: 0 20px;
}

.xb-timeline-wide::before {
	background: rgba(255, 255, 255, 0.4);
}

.xb-timeline-wide .xb-step span {
	background: #fff;
}

.xb-timeline-wide .xb-step-timeframe {
	color: rgba(255, 255, 255, 0.7);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.5px;
}

.xb-timeline-wide .xb-step-title {
	color: #fff;
	max-width: 140px;
}

/* Accordion */
.xb-hero-accordion details {
	border-bottom: 1px solid #eaeaea;
	padding: 15px 0;
}

.xb-hero-accordion summary {
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
}

.xb-hero-accordion summary::after {
	content: '+';
	font-size: 20px;
}

.xb-hero-accordion details[open] summary::after {
	content: '-';
}

.xb-hero-accordion .details-content {
	padding-top: 15px;
	color: #555;
	line-height: 1.6;
	font-size: 14px;
}

.xb-faq-grid {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 60px;
}

.xb-faq-grid details {
	break-inside: avoid;
}

/* Sections */
.xb-marquee {
	background: var(--xb-brand-color, var(--xb-premium-brown));
	color: #fff;
	padding: 15px 0;
	overflow: hidden;
	white-space: nowrap;
}

.xb-marquee-content {
	display: inline-block;
	animation: marquee 20s linear infinite;
	font-weight: 600;
	letter-spacing: 2px;
	font-size: 14px;
}

.xb-marquee-content span {
	margin: 0 30px;
}

@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Shared "label + heading [+ subheading]" header used by every narrative
   section below (problem grid, solution split, ingredients, timeline,
   reviews, proof, FAQ) so they read as one consistent system. */
.xb-narrative-header {
	max-width: 700px;
	margin: 0 auto 40px;
	padding: 0 20px;
	text-align: center;
}

.xb-narrative-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--xb-premium-accent);
	margin-bottom: 10px;
}

.xb-narrative-label--light {
	color: rgba(255, 255, 255, 0.75);
}

.xb-narrative-heading {
	font-family: 'Cairo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 30px;
	font-weight: 800;
	margin: 0 0 10px;
	line-height: 1.3;
}

.xb-narrative-heading--light {
	color: #fff;
}

.xb-narrative-sub {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* Problem / signs grid */
.xb-problem-section {
	padding: 60px 20px;
	background: #fff;
}

.xb-problem-grid {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.xb-problem-card {
	text-align: center;
	padding: 24px 16px;
	border: 1px solid #eee;
	border-radius: 10px;
}

.xb-problem-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--xb-premium-accent) 10%, #fff);
	margin-bottom: 14px;
}

.xb-problem-card h4 {
	margin: 0 0 8px;
	font-size: 15px;
}

.xb-problem-card p {
	margin: 0;
	font-size: 13px;
	color: #666;
	line-height: 1.5;
}

/* Solution split (icon list + image, brand-color full-bleed) */
.xb-solution-section {
	padding: 60px 20px;
	color: #fff;
}

.xb-solution-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 60px;
}

.xb-solution-text {
	flex: 1 1 460px;
}

.xb-solution-inner .xb-narrative-heading {
	text-align: left;
}

.xb-solution-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin: 24px 0;
}

.xb-solution-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.xb-solution-icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}

.xb-solution-item h4 {
	margin: 0 0 4px;
	font-size: 15px;
}

.xb-solution-item p {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.5;
}

.xb-solution-guarantee {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	margin: 10px 0 0;
	text-align: center;
}

.xb-solution-image {
	flex: 1 1 380px;
}

.xb-solution-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
}

/* Ingredients diagram */
.xb-ingredients-section {
	padding: 60px 20px;
	background: #fff;
}

.xb-ingredients-grid {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 60px;
}

.xb-ingredient-card {
	flex: 1 1 360px;
	background: var(--xb-premium-bg);
	border-radius: 12px;
	padding: 24px;
}

.xb-ingredient-slide {
	display: none;
}

.xb-ingredient-slide.active {
	display: block;
}

.xb-ingredient-card h4 {
	margin: 0 0 8px;
	font-size: 17px;
}

.xb-ingredient-card p {
	margin: 0;
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

.xb-ingredient-card .xb-submit-btn {
	margin-top: 18px;
}

.xb-ingredients-visual {
	flex: 1 1 360px;
	text-align: center;
}

.xb-ingredients-visual img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.xb-ingredient-labels {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 16px;
}

.xb-ingredient-pill {
	font-size: 12px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--xb-premium-accent) 10%, #fff);
	color: var(--xb-premium-accent);
}

/* Reviews grid */
.xb-reviews-section {
	padding: 60px 20px;
	background: var(--xb-premium-bg);
}

.xb-reviews-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.xb-review-card {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.xb-review-card h4 {
	font-size: 14px;
	margin: 0 0 8px;
}

.xb-review-card .xb-review-name span {
	display: inline;
	margin-top: 0;
	margin-left: 6px;
}

.xb-review-stat {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid #eee;
	font-size: 12px;
	color: #666;
}

.xb-review-stat strong {
	color: var(--xb-premium-accent);
	font-size: 14px;
}

/* Proof / stats */
.xb-proof-section {
	padding: 60px 20px;
	color: #fff;
}

.xb-proof-grid {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 60px;
}

.xb-proof-stats {
	flex: 1 1 420px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.xb-proof-stat {
	display: flex;
	align-items: baseline;
	gap: 16px;
}

.xb-proof-percent {
	font-size: 36px;
	font-weight: 800;
	flex: 0 0 auto;
}

.xb-proof-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
}

.xb-proof-section .xb-submit-btn {
	max-width: 260px;
	margin-top: 10px;
}

.xb-proof-image {
	flex: 1 1 340px;
}

.xb-proof-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
}

/* FAQ */
.xb-faq-section {
	padding: 60px 20px;
	background: #fff;
}

/* Footer */
.xb-premium-footer {
	background: #111111;
	color: rgba(255, 255, 255, 0.9);
	padding: 80px 40px 30px;
	position: relative;
	overflow: hidden;
}

/* Subtle gradient glow using brand color */
.xb-premium-footer::before {
	content: '';
	position: absolute;
	top: -150px;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 300px;
	background: radial-gradient(ellipse at center, var(--xb-brand-color) 0%, transparent 70%);
	opacity: 0.15;
	pointer-events: none;
}

.xb-footer-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 50px;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.xb-footer-brand h2 {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 2px;
	color: #fff;
	margin: 0 0 20px;
}

.xb-footer-desc {
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.65);
	max-width: 380px;
}

.xb-footer-links h4,
.xb-footer-contact h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #fff;
	margin: 0 0 24px;
	font-weight: 700;
}

.xb-footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.xb-footer-links li {
	margin-bottom: 16px;
}

.xb-footer-links a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	font-size: 15px;
	transition: all 0.2s ease;
	display: inline-block;
}

.xb-footer-links a:hover {
	color: var(--xb-brand-color, #f47290);
	transform: translateX(4px);
}

.xb-footer-contact p {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.65);
	margin: 0 0 16px;
}

.xb-footer-contact-icon {
	flex: 0 0 auto;
	display: flex;
	color: var(--xb-brand-color, #f47290);
	background: rgba(255,255,255,0.05);
	padding: 8px;
	border-radius: 50%;
}

.xb-footer-bottom {
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	position: relative;
	z-index: 1;
}

@media (max-width: 768px) {
	.xb-premium-header {
		flex-direction: column;
		gap: 15px;
	}

	.xb-promo-banner {
		font-size: 11px;
		padding: 8px;
	}

	/* Hero: stack gallery above content, full width, no sticky (sticky only
	   makes sense while the gallery scrolls past a shorter sidebar next to
	   it — once they're stacked in one column it just traps the form). */
	.xb-hero-container {
		flex-direction: column;
		gap: 20px;
		margin: 20px auto;
		padding: 0 12px;
	}
	.xb-hero-gallery {
		width: 100%;
		max-width: 100%;
		position: static; /* disable sticky on mobile */
	}

	.xb-hero-content {
		position: static;
		top: auto;
		width: 100%;
	}
	.xb-hero-title {
		font-size: 19px;
		margin-bottom: 10px;
	}
	.xb-hero-price {
		font-size: 18px;
		margin-bottom: 16px;
	}
	.xb-gallery-thumbs img {
		width: 48px;
		height: 48px;
	}

	/* Benefit icons: horizontal compact row under the gallery instead of a
	   vertical column, so it doesn't eat into the stacked mobile layout. */
	.xb-hero-benefits {
		flex-direction: row;
		justify-content: center;
		gap: 18px;
		padding-top: 0;
	}
	.xb-hero-benefit {
		width: auto;
	}
	.xb-hero-benefit-icon {
		width: 38px;
		height: 38px;
	}
	.xb-hero-benefit-label {
		font-size: 10px;
	}

	.xb-narrative-header {
		margin-bottom: 24px;
	}
	.xb-narrative-heading {
		font-size: 22px;
	}
	.xb-narrative-sub {
		font-size: 13px;
	}

	.xb-problem-section,
	.xb-solution-section,
	.xb-ingredients-section,
	.xb-timeline-section,
	.xb-reviews-section,
	.xb-proof-section,
	.xb-faq-section {
		padding: 36px 16px;
	}

	.xb-problem-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
	.xb-problem-card {
		padding: 16px 10px;
	}
	.xb-problem-icon {
		width: 44px;
		height: 44px;
		margin-bottom: 10px;
	}

	.xb-solution-inner,
	.xb-ingredients-grid,
	.xb-proof-grid {
		flex-direction: column;
		gap: 24px;
	}
	.xb-solution-inner .xb-narrative-heading,
	.xb-solution-guarantee {
		text-align: center;
	}

	.xb-timeline-wide {
		padding: 0;
	}
	.xb-timeline-wide .xb-step-title {
		max-width: 90px;
		font-size: 11px;
	}

	.xb-reviews-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.xb-faq-grid {
		grid-template-columns: 1fr;
	}

	/* Footer: single column, tighter spacing */
	.xb-premium-footer {
		padding: 36px 16px 16px;
	}
	.xb-footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-bottom: 24px;
	}
}

/* =========================================
   Expert Endorsements Section
   ========================================= */
.xb-expert-section {
	padding: 60px 20px;
	background-color: transparent; /* Very light pink background matching the image */
	text-align: center;
}

.xb-expert-header {
	margin-bottom: 40px;
}

.xb-expert-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #333; /* Dark text for contrast */
	margin: 0;
	line-height: 1.2;
}

.xb-expert-title span {
	color: var(--xb-brand-color); /* Highlight color for "Health Experts" */
}

.xb-expert-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto 40px;
}

.xb-expert-card {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.xb-expert-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 16px;
	overflow: hidden;
	background-color: #f0f0f0;
}

.xb-expert-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.xb-expert-info {
	padding: 0 4px;
	text-align: center; /* Center aligning text as per the image */
}

.xb-expert-name {
	font-size: 1.15rem;
	font-weight: 700;
	color: #333;
	margin: 0 0 4px 0;
	font-family: Georgia, serif; /* Elegant serif font for names */
}

.xb-expert-subtitle {
	font-size: 0.85rem;
	color: #777;
	margin: 0;
	line-height: 1.4;
}

.xb-expert-footer {
	display: flex;
	justify-content: center;
}

.xb-expert-btn {
	padding: 16px 40px;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 700;
	background-color: var(--xb-brand-color); /* Pinkish color for the button */
	background: linear-gradient(135deg, var(--xb-brand-color), color-mix(in srgb, var(--xb-brand-color) 85%, black));
	color: #fff;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
	width: auto;
	max-width: 100%;
	box-shadow: none !important;
	transform: none !important;
}

.xb-expert-btn:hover {
	opacity: 0.9;
	transform: none !important;
}

@media (max-width: 992px) {
	.xb-expert-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.xb-expert-grid {
		display: flex;
		flex-direction: row;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 16px;
		padding-bottom: 20px;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
	}
	.xb-expert-grid::-webkit-scrollbar {
		display: none;
	}
	.xb-expert-card {
		flex: 0 0 75%;
		scroll-snap-align: center;
	}
	.xb-expert-title {
		font-size: 1.75rem;
	}
}

/* =========================================
   How To Use Section
   ========================================= */
.xb-how-to-use-section {
	padding: 60px 20px;
	background-color: #ffffff; /* White background matching image */
	text-align: center;
	width: 100%;
}

.xb-htu-header {
	margin-bottom: 50px;
}

.xb-htu-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #333;
	margin: 0;
	font-family: Georgia, serif;
}

.xb-htu-title span {
	color: var(--xb-brand-color);
}

/* Progress Line Container */
.xb-htu-progress-container {
	position: relative;
	max-width: 800px;
	margin: 0 auto 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.xb-htu-progress-line {
	position: absolute;
	top: 50%;
	left: 10%;
	right: 10%;
	height: 2px;
	background-color: var(--xb-brand-color);
	z-index: 1;
	transform: translateY(-50%);
}

.xb-htu-progress-dots {
	display: flex;
	justify-content: space-between;
	width: 100%;
	position: relative;
	z-index: 2;
	padding: 0 10%;
}

.xb-htu-dot {
	width: 40px;
	height: 40px;
	background-color: var(--xb-brand-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	box-shadow: 0 2px 10px rgba(244, 114, 144, 0.4);
}

/* Grid Layout */
.xb-htu-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.xb-htu-card {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.xb-htu-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 16px;
	overflow: hidden;
	background-color: #f0f0f0;
}

.xb-htu-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.xb-htu-info {
	padding: 0;
}

.xb-htu-step-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #333;
	margin: 0 0 8px 0;
}

.xb-htu-step-desc {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 992px) {
	.xb-htu-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.xb-htu-grid {
		display: flex;
		flex-direction: row;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 16px;
		padding-bottom: 20px;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
	}
	.xb-htu-grid::-webkit-scrollbar {
		display: none;
	}
	.xb-htu-card {
		flex: 0 0 85%;
		scroll-snap-align: center;
	}
	.xb-htu-title {
		font-size: 1.75rem;
	}
	.xb-htu-dot {
		width: 30px;
		height: 30px;
		font-size: 1rem;
	}
	.xb-htu-progress-container {
		margin-bottom: 25px;
	}
}

/* =========================================
   Image Split Section
   ========================================= */
.xb-image-split-section {
	padding: 40px 20px;
	background-color: transparent; /* Unified background */
	width: 100%;
}

.xb-image-split-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	align-items: stretch;
}

.xb-split-col {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	background-color: #fcfcfc;
	display: flex;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Subtle shadow like in the design */
}

.xb-split-col img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 768px) {
	.xb-image-split-grid {
		grid-template-columns: 1fr;
	}
}

/* =========================================
   Benefits Grid Section
   ========================================= */
.xb-benefits-grid-section {
	padding: 60px 20px;
	background-color: #ffffff;
	text-align: center;
	width: 100%;
}

.xb-bg-header {
	margin-bottom: 50px;
}

.xb-bg-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #333;
	margin: 0;
	font-family: Georgia, serif;
	line-height: 1.3;
}

.xb-bg-title span {
	color: var(--xb-brand-color);
}

.xb-bg-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.xb-bg-card {
	background-color: color-mix(in srgb, var(--xb-brand-color) 10%, white); /* Soft pink matching the design */
	border-radius: 12px;
	padding: 30px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.3s ease;
}

.xb-bg-card:nth-child(even) {
	background-color: color-mix(in srgb, var(--xb-brand-color) 10%, white); /* Slightly peachier pink for alternating look if desired, though image is solid. I'll stick close to color-mix(in srgb, var(--xb-brand-color) 10%, white) */
}

.xb-bg-card:hover {
	transform: translateY(-5px);
}

.xb-bg-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.xb-bg-icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.xb-bg-icon-placeholder {
	width: 40px;
	height: 40px;
	background-color: var(--xb-brand-color);
	border-radius: 50%;
	opacity: 0.5;
}

.xb-bg-card-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #222;
	margin: 0 0 10px 0;
}

.xb-bg-card-desc {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 992px) {
	.xb-bg-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.xb-bg-grid {
		grid-template-columns: 1fr;
	}
	.xb-bg-title {
		font-size: 1.75rem;
	}
}

