/* =========================================================
   Luxacent — main stylesheet
   ========================================================= */

:root {
	--c123-primary: #1a6bf2;
	--c123-primary-dark: #0f55cc;
	--c123-secondary: #8b5cf6;
	--c123-heading: #0f1f3d;
	--c123-body: #5b6b83;
	--c123-muted: #8b98ad;
	--c123-line: #e6ecf5;
	--c123-soft: #f3f7fc;
	--c123-softer: #f8fafd;
	--c123-white: #ffffff;
	--c123-green: #16a34a;
	--c123-amber: #f5a623;
	--c123-pink: #f7d9e8;
	--c123-radius: 16px;
	--c123-radius-lg: 24px;
	--c123-shadow: 0 10px 40px rgba(15, 31, 61, 0.08);
	--c123-shadow-soft: 0 6px 22px rgba(15, 31, 61, 0.06);
	--c123-font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
	--c123-font-body: 'Inter', system-ui, sans-serif;
	--c123-grad: linear-gradient(120deg, var(--c123-primary), var(--c123-secondary));
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--c123-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--c123-body);
	background: var(--c123-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: clip; /* guard against decorative overflow; keeps sticky header working */
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--c123-font-head);
	color: var(--c123-heading);
	line-height: 1.2;
	margin: 0 0 0.5em;
	font-weight: 800;
}

p { margin: 0 0 1em; }

a { color: var(--c123-primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--c123-primary-dark); }

ul { padding: 0; margin: 0; }

button { font-family: inherit; cursor: pointer; }

.c123-container {
	width: min(1200px, calc(100% - 40px));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: 0;
}

.skip-link {
	position: absolute;
	top: -48px; left: 12px;
	z-index: 999;
	background: var(--c123-heading);
	color: #fff;
	padding: 10px 18px;
	border-radius: 8px;
	transition: top 0.2s;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Typography helpers ---------- */
.c123-h2 {
	font-size: clamp(1.7rem, 3.4vw, 2.4rem);
	letter-spacing: -0.02em;
}
.c123-h2-accent { color: var(--c123-primary); }
.c123-accent { color: var(--c123-primary); }

.c123-eyebrow {
	display: inline-block;
	color: var(--c123-primary);
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.c123-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 26px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1;
	border: 1.5px solid transparent;
	transition: all 0.22s ease;
	white-space: nowrap;
}
.c123-btn-primary {
	background: var(--c123-primary);
	color: #fff;
	box-shadow: 0 8px 20px color-mix(in srgb, var(--c123-primary) 30%, transparent);
}
.c123-btn-primary:hover {
	background: var(--c123-primary-dark);
	color: #fff;
	transform: translateY(-2px);
}
.c123-btn-outline {
	border-color: color-mix(in srgb, var(--c123-primary) 40%, transparent);
	color: var(--c123-primary);
	background: #fff;
}
.c123-btn-outline:hover { background: var(--c123-primary); color: #fff; }
.c123-btn-ghost {
	border-color: var(--c123-line);
	color: var(--c123-heading);
	background: #fff;
}
.c123-btn-ghost:hover { border-color: var(--c123-primary); color: var(--c123-primary); }
.c123-btn-light { background: #fff; color: var(--c123-primary); }
.c123-btn-light:hover { background: var(--c123-heading); color: #fff; transform: translateY(-2px); }

.c123-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 0.95rem;
}
.c123-link-arrow .c123-icon { transition: transform 0.2s ease; }
.c123-link-arrow:hover .c123-icon { transform: translateX(4px); }

.c123-badge-pill {
	display: inline-flex;
	align-items: center;
	padding: 7px 16px;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--c123-primary) 30%, transparent);
	background: color-mix(in srgb, var(--c123-primary) 6%, #fff);
	color: var(--c123-primary);
	font-size: 0.82rem;
	font-weight: 600;
	margin-bottom: 22px;
}

/* ---------- Header ---------- */
.c123-header {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--c123-line);
	position: relative;
	z-index: 100;
}
.has-sticky-header .c123-header {
	position: sticky;
	top: 0;
}
.c123-header.is-scrolled { box-shadow: var(--c123-shadow-soft); }

.c123-header-inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 74px;
}

.c123-logo {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--c123-font-head);
	font-weight: 800;
	font-size: 1.35rem;
	color: var(--c123-primary);
	letter-spacing: -0.02em;
}
.c123-logo:hover { color: var(--c123-primary-dark); }

/* Uploaded custom logo (Appearance → Customize → Site Identity) */
.custom-logo-link { display: inline-flex; align-items: center; }
.c123-header-brand .custom-logo {
	height: 36px;
	width: auto;
	max-width: 210px;
	object-fit: contain;
}
.c123-footer .custom-logo {
	height: 34px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}
.c123-logo-mark {
	display: inline-flex;
	align-items: flex-end;
	gap: 2.5px;
	height: 20px;
}
.c123-logo-mark i {
	width: 5px;
	border-radius: 3px;
	background: var(--c123-primary);
	display: block;
}
.c123-logo-mark i:nth-child(1) { height: 10px; opacity: 0.55; }
.c123-logo-mark i:nth-child(2) { height: 15px; opacity: 0.75; }
.c123-logo-mark i:nth-child(3) { height: 20px; }

.c123-nav { margin-left: auto; }
.c123-nav-list {
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0;
}
.c123-nav-list li { position: relative; }
.c123-nav-list a {
	display: block;
	padding: 10px 13px;
	color: var(--c123-heading);
	font-weight: 500;
	font-size: 0.95rem;
	border-radius: 8px;
}
.c123-nav-list a:hover { color: var(--c123-primary); background: var(--c123-soft); }
.c123-nav-list .current-menu-item > a,
.c123-nav-list .current_page_item > a { color: var(--c123-primary); }

/* dropdown */
.c123-nav-list .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 210px;
	background: #fff;
	border: 1px solid var(--c123-line);
	border-radius: 12px;
	box-shadow: var(--c123-shadow);
	padding: 8px;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all 0.2s ease;
	z-index: 50;
}
.c123-nav-list li:hover > .sub-menu,
.c123-nav-list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.c123-header-actions {
	display: flex;
	align-items: center;
	gap: 6px;
}
.c123-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: 10px;
	border: none;
	background: transparent;
	color: var(--c123-heading);
	position: relative;
	transition: all 0.2s ease;
}
.c123-icon-btn:hover { background: var(--c123-soft); color: var(--c123-primary); }
.c123-cart-count {
	position: absolute;
	top: 2px; right: 2px;
	min-width: 17px; height: 17px;
	border-radius: 999px;
	background: var(--c123-primary);
	color: #fff;
	font-size: 0.66rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}
.c123-header-cta { margin-left: 8px; padding: 11px 20px; }

/* ---------- Language selector ---------- */
.c123-lang { position: relative; margin-left: 8px; }
.c123-lang-toggle {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	height: 40px;
	padding: 0 10px;
	border: 1.5px solid var(--c123-line);
	border-radius: 10px;
	background: #fff;
	color: var(--c123-heading);
	font-weight: 600;
	font-size: 0.85rem;
	transition: all 0.2s ease;
}
.c123-lang-toggle:hover { border-color: var(--c123-primary); color: var(--c123-primary); }
.c123-lang-caret { transition: transform 0.2s ease; }
.c123-lang.is-open .c123-lang-caret { transform: rotate(180deg); }
.c123-lang-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 60;
	min-width: 84px;
	max-height: 244px;
	overflow-y: auto;
	list-style: none;
	margin: 0;
	padding: 6px;
	background: #fff;
	border: 1px solid var(--c123-line);
	border-radius: 12px;
	box-shadow: var(--c123-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all 0.18s ease;
}
.c123-lang.is-open .c123-lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.c123-lang-menu a {
	display: block;
	padding: 8px 12px;
	border-radius: 8px;
	color: var(--c123-heading);
	font-weight: 600;
	font-size: 0.85rem;
}
.c123-lang-menu a:hover { background: var(--c123-soft); color: var(--c123-primary); }
.c123-lang-menu a.is-current { background: var(--c123-primary); color: #fff; }

.c123-nav-toggle { display: none; }
.c123-nav-toggle-close { display: none; }
.c123-nav-open .c123-nav-toggle-open { display: none; }
.c123-nav-open .c123-nav-toggle-close { display: inline-flex; }

.c123-search-drawer {
	border-top: 1px solid var(--c123-line);
	padding: 16px 0;
	background: #fff;
}
.c123-search-drawer[hidden] { display: none; }
.c123-searchform {
	display: flex;
	gap: 8px;
	max-width: 560px;
}
.c123-searchform input {
	flex: 1;
	padding: 12px 18px;
	border: 1.5px solid var(--c123-line);
	border-radius: 10px;
	font: inherit;
	outline: none;
}
.c123-searchform input:focus { border-color: var(--c123-primary); }
.c123-searchform button {
	border: none;
	background: var(--c123-primary);
	color: #fff;
	border-radius: 10px;
	width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ---------- Hero ---------- */
.c123-hero {
	position: relative;
	overflow: hidden;
	padding: 70px 0 90px;
}
.c123-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.c123-hero-dots {
	position: absolute;
	left: 0; top: 10%;
	width: 300px; height: 300px;
	background-image: radial-gradient(color-mix(in srgb, var(--c123-primary) 18%, transparent) 2px, transparent 2px);
	background-size: 22px 22px;
	mask-image: radial-gradient(closest-side, #000, transparent);
}
.c123-hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.35;
}
.c123-hero-glow-1 {
	width: 480px; height: 480px;
	right: -80px; top: -120px;
	background: var(--c123-secondary);
}
.c123-hero-glow-2 {
	width: 380px; height: 380px;
	right: 25%; bottom: -180px;
	background: var(--c123-primary);
}

.c123-hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: center;
}

.c123-hero-title {
	font-size: clamp(2.4rem, 5.2vw, 3.9rem);
	letter-spacing: -0.03em;
	margin-bottom: 20px;
}

.c123-hero-text {
	font-size: 1.08rem;
	max-width: 460px;
	margin-bottom: 26px;
}

.c123-hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 26px;
	list-style: none;
	margin-bottom: 30px;
}
.c123-hero-features li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--c123-heading);
}
.c123-hero-feature-icon {
	display: inline-flex;
	color: var(--c123-primary);
}

.c123-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.c123-play-dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px; height: 28px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--c123-primary) 12%, #fff);
	color: var(--c123-primary);
}

.c123-hero-visual { position: relative; }
.c123-hero-blob {
	position: absolute;
	inset: 4% 2% 6% 6%;
	background: var(--c123-grad);
	border-radius: 58% 42% 55% 45% / 50% 55% 45% 50%;
	opacity: 0.85;
	animation: c123-blob 12s ease-in-out infinite alternate;
}
@keyframes c123-blob {
	from { border-radius: 58% 42% 55% 45% / 50% 55% 45% 50%; }
	to { border-radius: 45% 55% 48% 52% / 55% 45% 55% 45%; }
}
.c123-hero-img {
	position: relative;
	border-radius: 46% 54% 50% 50% / 48% 48% 52% 52%;
	aspect-ratio: 0.88;
	object-fit: cover;
	width: 100%;
	max-width: 480px;
	margin-inline: auto;
}

.c123-float-card {
	position: absolute;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	border-radius: 14px;
	box-shadow: var(--c123-shadow);
	padding: 14px 20px;
	display: flex;
	flex-direction: column;
	animation: c123-float 5s ease-in-out infinite;
}
.c123-float-card strong {
	font-family: var(--c123-font-head);
	font-size: 1.35rem;
	color: var(--c123-heading);
	line-height: 1.1;
}
.c123-float-card span { font-size: 0.8rem; }
.c123-float-card.is-label-only {
	max-width: 170px;
}
.c123-float-card.is-label-only span {
	font-family: var(--c123-font-head);
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--c123-heading);
	line-height: 1.3;
}
.c123-float-stat1 { top: 8%; right: 0; }
.c123-float-stat2 { bottom: 14%; left: -12px; animation-delay: 2.5s; }
@keyframes c123-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.c123-hero-stamp {
	position: absolute;
	right: 4%;
	bottom: 4%;
	width: 110px; height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
	box-shadow: var(--c123-shadow);
}
.c123-hero-stamp svg {
	position: absolute;
	inset: 0;
	animation: c123-spin 16s linear infinite;
}
.c123-hero-stamp text {
	font-size: 8.5px;
	font-weight: 700;
	letter-spacing: 1.4px;
	fill: var(--c123-heading);
}
.c123-hero-stamp-icon { color: var(--c123-primary); }
@keyframes c123-spin { to { transform: rotate(360deg); } }

/* ---------- Showcase ---------- */
.c123-showcase {
	background: linear-gradient(180deg, var(--c123-softer), var(--c123-soft));
	padding: 60px 0 0;
	overflow: hidden;
}
.c123-showcase-inner {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 40px;
	align-items: center;
}
.c123-showcase-copy .c123-h2 { margin-bottom: 12px; }
.c123-showcase-stage { position: relative; padding-bottom: 40px; }
.c123-showcase-stage img {
	position: relative;
	z-index: 2;
	border-radius: var(--c123-radius-lg) var(--c123-radius-lg) 0 0;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
.c123-showcase-podium {
	position: absolute;
	left: 50%; bottom: 8px;
	transform: translateX(-50%);
	width: 120%;
	height: 60px;
	background: radial-gradient(ellipse at center, rgba(26, 107, 242, 0.22), transparent 65%);
}

/* ---------- Route cards (Oral / Injection) ---------- */
.c123-route-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	padding-bottom: 40px;
}
.c123-route-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--c123-line);
	border-radius: var(--c123-radius-lg);
	overflow: hidden;
	transition: all 0.25s ease;
}
.c123-route-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--c123-shadow);
	border-color: transparent;
}
.c123-route-media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 10;
	background: linear-gradient(140deg, color-mix(in srgb, var(--c123-primary) 10%, #fff), color-mix(in srgb, var(--c123-secondary) 12%, #fff));
	overflow: hidden;
}
.c123-route-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.c123-route-card:hover .c123-route-media img { transform: scale(1.05); }
.c123-route-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 74px; height: 74px;
	border-radius: 50%;
	background: #fff;
	color: var(--c123-primary);
	box-shadow: var(--c123-shadow-soft);
}
.c123-route-body {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 4px 12px;
	padding: 18px 20px;
}
.c123-route-body strong {
	grid-column: 1;
	font-family: var(--c123-font-head);
	font-size: 1.05rem;
	color: var(--c123-heading);
}
.c123-route-body small { grid-column: 1; font-size: 0.85rem; color: var(--c123-body); }
.c123-route-arrow {
	grid-column: 2;
	grid-row: 1 / span 2;
	display: inline-flex;
	color: var(--c123-muted);
}
.c123-route-card:hover .c123-route-arrow { color: var(--c123-primary); }

/* ---------- Why Choose Luxacent ---------- */
.c123-why { background: var(--c123-softer); }
.c123-why-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.c123-why-head p { font-size: 1.05rem; margin: 0; }
.c123-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.c123-why-card {
	background: #fff;
	border: 1px solid var(--c123-line);
	border-radius: var(--c123-radius);
	padding: 30px 26px;
	transition: all 0.25s ease;
}
.c123-why-card:hover { transform: translateY(-5px); box-shadow: var(--c123-shadow); }
.c123-why-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px; height: 56px;
	border-radius: 16px;
	background: var(--c123-grad);
	color: #fff;
	margin-bottom: 16px;
}
.c123-why-card strong {
	display: block;
	font-family: var(--c123-font-head);
	font-size: 1.08rem;
	color: var(--c123-heading);
	margin-bottom: 8px;
}
.c123-why-card p { margin: 0; font-size: 0.93rem; }

/* ---------- Sections ---------- */
.c123-section { padding: 90px 0; }

.c123-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 42px;
}
.c123-section-head p { margin: 6px 0 0; }
.c123-section-head.is-centered {
	justify-content: center;
	text-align: center;
}

/* ---------- Treatments ---------- */
.c123-treatments-grid {
	display: grid;
	grid-template-columns: 1.25fr repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
}
.c123-treatments-intro {
	padding-right: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.c123-treatments-intro p { margin-bottom: 22px; }

.c123-treatment-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--c123-line);
	border-radius: var(--c123-radius);
	background: #fff;
	overflow: hidden;
	transition: all 0.25s ease;
}
.c123-treatment-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--c123-shadow);
	border-color: transparent;
}
.c123-treatment-photo {
	aspect-ratio: 3 / 3.4;
	overflow: hidden;
}
.c123-treatment-photo img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.c123-treatment-card:hover .c123-treatment-photo img { transform: scale(1.06); }
.c123-treatment-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%; height: 100%;
	background: linear-gradient(140deg, color-mix(in srgb, var(--c123-primary) 10%, #fff), color-mix(in srgb, var(--c123-secondary) 14%, #fff));
	color: var(--c123-primary);
}
.c123-treatment-meta {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: start;
	gap: 10px;
	padding: 14px;
}
.c123-treatment-copy { display: flex; flex-direction: column; gap: 4px; }
.c123-treatment-desc {
	font-size: 0.82rem;
	color: var(--c123-body);
	line-height: 1.45;
}
.c123-treatment-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: var(--c123-grad);
	color: #fff;
	flex: none;
}
.c123-treatment-title {
	font-family: var(--c123-font-head);
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--c123-heading);
	line-height: 1.3;
}
.c123-treatment-arrow { color: var(--c123-muted); display: inline-flex; }
.c123-treatment-card:hover .c123-treatment-arrow { color: var(--c123-primary); }

/* ---------- Plans ---------- */
.c123-plans { padding: 20px 0 90px; }
.c123-plans-panel {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 0.9fr 1fr;
	gap: 30px;
	align-items: center;
	background: linear-gradient(115deg, #3f8cfd 0%, var(--c123-primary) 35%, var(--c123-secondary) 100%);
	border-radius: 28px;
	padding: 54px 48px;
	overflow: hidden;
	color: #fff;
}
.c123-plans-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 20%, rgba(255,255,255,0.16), transparent 32%),
		radial-gradient(circle at 80% 90%, rgba(255,255,255,0.12), transparent 30%);
	pointer-events: none;
}
.c123-plans-copy { position: relative; }
.c123-plans-copy .c123-h2 { color: #fff; }
.c123-plans-copy > p { color: rgba(255,255,255,0.85); margin-bottom: 22px; }
.c123-plans-features {
	list-style: none;
	display: grid;
	gap: 12px;
	margin-bottom: 28px;
}
.c123-plans-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.92rem;
	font-weight: 500;
}
.c123-plans-features li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px; height: 32px;
	border-radius: 9px;
	background: rgba(255,255,255,0.18);
	flex: none;
}
.c123-plans-photo {
	position: relative;
	align-self: stretch;
	min-height: 300px;
}
.c123-plans-photo img {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	border-radius: 50% 50% 46% 54% / 55% 55% 45% 45%;
	border: 5px solid rgba(255,255,255,0.35);
}
.c123-plans-cards {
	position: relative;
	display: grid;
	gap: 14px;
}
.c123-plan-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 16px;
	padding: 16px 18px;
	transition: all 0.22s ease;
}
.c123-plan-card:hover { transform: translateX(6px); background: #fff; }
.c123-plan-card.is-featured {
	background: #fff;
	box-shadow: 0 14px 34px rgba(10, 20, 60, 0.25);
	transform: scale(1.03);
}
.c123-plan-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: 12px;
	background: color-mix(in srgb, var(--c123-primary) 10%, #fff);
	color: var(--c123-primary);
}
.c123-plan-copy { display: flex; flex-direction: column; }
.c123-plan-copy strong {
	font-family: var(--c123-font-head);
	color: var(--c123-heading);
	font-size: 1rem;
}
.c123-plan-copy small { color: var(--c123-body); font-size: 0.82rem; }
.c123-plan-copy em.c123-plan-kind {
	font-style: normal;
	color: var(--c123-primary);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 2px;
}
.c123-plan-arrow { color: var(--c123-muted); display: inline-flex; }
.c123-plan-card:hover .c123-plan-arrow { color: var(--c123-primary); }

/* ---------- Trusted ---------- */
.c123-trusted-grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 56px;
	align-items: center;
}
.c123-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 26px;
	margin-top: 28px;
}
.c123-stat strong {
	display: block;
	font-family: var(--c123-font-head);
	font-size: clamp(1.9rem, 3vw, 2.5rem);
	font-weight: 800;
	color: var(--c123-primary);
	line-height: 1.1;
}
.c123-stat span { font-size: 0.9rem; }

.c123-trusted-media { position: relative; }
.c123-video-thumb {
	position: relative;
	display: block;
	border-radius: 50% 50% 48% 52% / 52% 52% 48% 48%;
	overflow: hidden;
	aspect-ratio: 1.15;
	max-width: 480px;
}
.c123-video-thumb img {
	width: 100%; height: 100%;
	object-fit: cover;
}
.c123-video-thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 25, 60, 0.18);
	transition: background 0.25s ease;
}
.c123-video-thumb:hover::after { background: rgba(10, 25, 60, 0.05); }
.c123-video-play {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 76px; height: 76px;
	border-radius: 50%;
	background: #fff;
	color: var(--c123-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.3);
	transition: transform 0.25s ease;
}
.c123-video-thumb:hover .c123-video-play { transform: translate(-50%, -50%) scale(1.08); }

.c123-quote-card {
	position: absolute;
	right: -10px;
	bottom: 6%;
	max-width: 300px;
	margin: 0;
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--c123-shadow);
	padding: 20px 22px;
}
.c123-quote-card blockquote {
	margin: 0 0 14px;
	font-size: 0.9rem;
	color: var(--c123-heading);
	line-height: 1.55;
}
.c123-quote-card figcaption {
	display: flex;
	align-items: center;
	gap: 11px;
}
.c123-quote-card figcaption img {
	width: 42px; height: 42px;
	border-radius: 50%;
	object-fit: cover;
}
.c123-quote-card strong {
	display: block;
	font-size: 0.88rem;
	color: var(--c123-heading);
	font-family: var(--c123-font-head);
}
.c123-quote-card small { font-size: 0.76rem; }

/* ---------- Press ---------- */
.c123-press {
	border-block: 1px solid var(--c123-line);
	padding: 26px 0;
	background: #fff;
}
.c123-press-inner {
	display: flex;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}
.c123-press-label {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--c123-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	flex: none;
}
.c123-press-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1;
	gap: 26px;
	list-style: none;
	flex-wrap: wrap;
}
.c123-press-list li {
	font-family: Georgia, 'Times New Roman', serif;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--c123-heading);
	opacity: 0.75;
	transition: opacity 0.2s ease;
	letter-spacing: 0.04em;
}
.c123-press-list li:nth-child(even) {
	font-family: var(--c123-font-head);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 1.05rem;
}
.c123-press-list li:hover { opacity: 1; }

/* ---------- Ingredients ---------- */
.c123-ingredients {
	background: linear-gradient(100deg, #fdf1e7 0%, #fceef3 100%);
	padding: 70px 0;
}
.c123-ingredients-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.4fr;
	gap: 48px;
	align-items: center;
}
.c123-ingredients-copy .c123-h2 { margin-bottom: 12px; }
.c123-ingredients-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	list-style: none;
}
.c123-ingredient { text-align: center; }
.c123-ingredient-link { display: block; color: inherit; }
.c123-ingredient-link:hover strong { color: var(--c123-primary); }
.c123-ingredient-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%; height: 100%;
	background: linear-gradient(140deg, #fff, color-mix(in srgb, var(--c123-primary) 12%, #fff));
	color: var(--c123-primary);
}
.c123-ingredient-photo {
	display: block;
	width: min(120px, 100%);
	aspect-ratio: 1;
	margin: 0 auto 14px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid #fff;
	box-shadow: var(--c123-shadow-soft);
}
.c123-ingredient-photo img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}
.c123-ingredient:hover .c123-ingredient-photo img { transform: scale(1.1); }
.c123-ingredient strong {
	display: block;
	font-family: var(--c123-font-head);
	color: var(--c123-heading);
	font-size: 0.98rem;
}
.c123-ingredient small { font-size: 0.8rem; }

/* ---------- Products ---------- */
.c123-products { background: var(--c123-softer); }
.c123-carousel { position: relative; }
.c123-carousel-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc(25% - 15px);
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 4px;
}
.c123-carousel-track::-webkit-scrollbar { display: none; }

.c123-product-card {
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid var(--c123-line);
	border-radius: var(--c123-radius);
	padding: 14px;
	display: flex;
	flex-direction: column;
	transition: all 0.25s ease;
}
.c123-product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--c123-shadow);
}
.c123-product-photo {
	display: block;
	border-radius: 12px;
	overflow: hidden;
	background: var(--c123-soft);
	aspect-ratio: 1.25;
	margin-bottom: 14px;
}
.c123-product-photo img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}
.c123-product-card:hover .c123-product-photo img { transform: scale(1.05); }
.c123-product-title {
	font-size: 0.98rem;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.4;
}
.c123-product-title a { color: var(--c123-heading); }
.c123-product-title a:hover { color: var(--c123-primary); }

.c123-product-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}
.c123-stars { display: inline-flex; gap: 1px; }
.c123-star { display: inline-flex; }
.c123-star.is-on { color: var(--c123-amber); }
.c123-star.is-off { color: #dbe3ee; }
.c123-rating-num { font-size: 0.8rem; font-weight: 600; color: var(--c123-heading); }

.c123-product-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}
.c123-product-price {
	font-family: var(--c123-font-head);
	font-weight: 800;
	font-size: 1.1rem;
	color: var(--c123-primary);
}
.c123-product-price del { color: var(--c123-muted); font-weight: 500; font-size: 0.85em; margin-right: 6px; }
.c123-product-add {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px; height: 38px;
	border-radius: 50%;
	background: var(--c123-primary);
	color: #fff;
	transition: all 0.2s ease;
}
.c123-product-add:hover { background: var(--c123-primary-dark); color: #fff; transform: scale(1.08); }

.c123-carousel-nav {
	position: absolute;
	top: 38%;
	z-index: 5;
	width: 42px; height: 42px;
	border-radius: 50%;
	border: 1px solid var(--c123-line);
	background: #fff;
	color: var(--c123-heading);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--c123-shadow-soft);
	transition: all 0.2s ease;
}
.c123-carousel-nav:hover { background: var(--c123-primary); color: #fff; border-color: var(--c123-primary); }
.c123-carousel-prev { left: -18px; }
.c123-carousel-next { right: -18px; }

/* ---------- Testimonials ---------- */
.c123-testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.c123-testi-card {
	margin: 0;
	background: #fff;
	border: 1px solid var(--c123-line);
	border-radius: var(--c123-radius);
	padding: 26px;
	transition: all 0.25s ease;
}
.c123-testi-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--c123-shadow);
}
.c123-testi-card blockquote {
	margin: 14px 0 20px;
	color: var(--c123-heading);
	font-size: 0.97rem;
	line-height: 1.65;
}
.c123-testi-card figcaption {
	display: flex;
	align-items: center;
	gap: 12px;
}
.c123-testi-card figcaption img {
	width: 46px; height: 46px;
	border-radius: 50%;
	object-fit: cover;
}
.c123-testi-card strong {
	display: block;
	font-family: var(--c123-font-head);
	color: var(--c123-heading);
	font-size: 0.92rem;
}
.c123-testi-card small { font-size: 0.78rem; }

/* ---------- Newsletter ---------- */
.c123-newsletter { padding: 0 0 70px; }
.c123-newsletter-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	background: var(--c123-soft);
	border: 1px solid var(--c123-line);
	border-radius: 20px;
	padding: 30px 36px;
	flex-wrap: wrap;
}
.c123-newsletter-copy {
	display: flex;
	align-items: center;
	gap: 18px;
}
.c123-newsletter-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px; height: 58px;
	border-radius: 16px;
	background: #fff;
	color: var(--c123-primary);
	box-shadow: var(--c123-shadow-soft);
	flex: none;
}
.c123-newsletter-copy h2 { font-size: 1.35rem; margin-bottom: 2px; }
.c123-newsletter-copy p { margin: 0; font-size: 0.92rem; }
.c123-newsletter-form {
	display: flex;
	gap: 10px;
	flex: 1;
	max-width: 480px;
	min-width: 280px;
}
.c123-newsletter-form input {
	flex: 1;
	padding: 13px 18px;
	border: 1.5px solid var(--c123-line);
	border-radius: 10px;
	font: inherit;
	outline: none;
	background: #fff;
}
.c123-newsletter-form input:focus { border-color: var(--c123-primary); }
.c123-newsletter-done {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-weight: 600;
	color: var(--c123-green);
}
.c123-newsletter-error {
	margin: 8px 0 0;
	font-size: 0.85rem;
	color: #dc2626;
	width: 100%;
}

/* ---------- Trust bar ---------- */
.c123-trustbar {
	border-top: 1px solid var(--c123-line);
	background: #fff;
	padding: 28px 0;
}
.c123-trustbar-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.c123-trustbar-item {
	display: flex;
	align-items: center;
	gap: 14px;
	justify-content: center;
}
.c123-trustbar-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	border-radius: 50%;
	border: 1.5px solid color-mix(in srgb, var(--c123-primary) 25%, transparent);
	color: var(--c123-primary);
	flex: none;
}
.c123-trustbar-copy { display: flex; flex-direction: column; }
.c123-trustbar-copy strong {
	font-family: var(--c123-font-head);
	color: var(--c123-heading);
	font-size: 0.95rem;
}
.c123-trustbar-copy small { font-size: 0.8rem; }

/* ---------- Footer ---------- */
.c123-footer {
	background: var(--c123-softer);
	border-top: 1px solid var(--c123-line);
	padding: 64px 0 0;
	position: relative;
}
.c123-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
	gap: 36px;
	padding-bottom: 44px;
}
.c123-footer-col h3 {
	font-size: 1rem;
	margin-bottom: 18px;
}
.c123-footer-about p {
	font-size: 0.92rem;
	margin: 16px 0 20px;
	max-width: 250px;
}
.c123-socials { display: flex; gap: 10px; }
.c123-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	border-radius: 50%;
	border: 1px solid var(--c123-line);
	background: #fff;
	color: var(--c123-heading);
	transition: all 0.2s ease;
}
.c123-socials a:hover {
	background: var(--c123-primary);
	border-color: var(--c123-primary);
	color: #fff;
	transform: translateY(-3px);
}
.c123-footer-menu {
	list-style: none;
	display: grid;
	gap: 10px;
}
.c123-footer-menu a {
	color: var(--c123-body);
	font-size: 0.92rem;
}
.c123-footer-menu a:hover { color: var(--c123-primary); }
.c123-footer-contact {
	list-style: none;
	display: grid;
	gap: 13px;
}
.c123-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.92rem;
}
.c123-footer-contact .c123-icon { color: var(--c123-primary); margin-top: 3px; flex: none; }
.c123-footer-contact a { color: var(--c123-body); }
.c123-footer-contact a:hover { color: var(--c123-primary); }
.c123-footer-cta p { font-size: 0.92rem; margin-bottom: 18px; }

.c123-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	border-top: 1px solid var(--c123-line);
	padding: 20px 0;
}
.c123-footer-bottom p { margin: 0; font-size: 0.85rem; }
.c123-payments { display: flex; gap: 8px; }
.c123-payments span {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--c123-heading);
	border: 1px solid var(--c123-line);
	background: #fff;
	border-radius: 6px;
	padding: 4px 9px;
}

.c123-backtop {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	width: 44px; height: 44px;
	border-radius: 50%;
	border: none;
	background: var(--c123-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--c123-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.25s ease;
}
.c123-backtop .c123-icon { transform: rotate(-90deg); }
.c123-backtop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.c123-backtop:hover { background: var(--c123-primary-dark); }

/* ---------- Blog / entry ---------- */
.c123-page-hero {
	background: linear-gradient(180deg, var(--c123-soft), var(--c123-white));
	padding: 54px 0 40px;
}
.c123-page-hero h1 { margin: 0; }
.c123-blog-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 40px;
	padding: 50px 0 80px;
}
.c123-blog-layout:has(.c123-blog-sidebar:empty) { grid-template-columns: 1fr; }
.c123-post-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.c123-post-card {
	background: #fff;
	border: 1px solid var(--c123-line);
	border-radius: var(--c123-radius);
	overflow: hidden;
	transition: all 0.25s ease;
}
.c123-post-card:hover { transform: translateY(-5px); box-shadow: var(--c123-shadow); }
.c123-post-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.c123-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.c123-post-body { padding: 20px 22px 24px; }
.c123-post-meta { font-size: 0.8rem; color: var(--c123-muted); }
.c123-post-title { font-size: 1.15rem; margin: 8px 0 10px; }
.c123-post-title a { color: var(--c123-heading); }
.c123-post-title a:hover { color: var(--c123-primary); }

.c123-entry { padding: 46px 0 80px; max-width: 820px; }
.c123-entry-thumb { border-radius: var(--c123-radius); overflow: hidden; margin-bottom: 30px; }
.c123-entry-content { font-size: 1.02rem; }
.c123-entry-content h2, .c123-entry-content h3 { margin-top: 1.6em; }
.c123-entry-content img { border-radius: 12px; }
.c123-entry-nav {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--c123-line);
	font-weight: 600;
}
.c123-pagination { margin-top: 40px; }
.c123-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.c123-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px; height: 40px;
	padding: 0 12px;
	border-radius: 10px;
	border: 1px solid var(--c123-line);
	color: var(--c123-heading);
	font-weight: 600;
	font-size: 0.9rem;
}
.c123-pagination .page-numbers.current,
.c123-pagination .page-numbers:hover {
	background: var(--c123-primary);
	border-color: var(--c123-primary);
	color: #fff;
}

.c123-404 {
	text-align: center;
	padding: 100px 0 120px;
}
.c123-404-code {
	font-family: var(--c123-font-head);
	font-size: clamp(5rem, 14vw, 9rem);
	font-weight: 800;
	line-height: 1;
	background: var(--c123-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: block;
	margin-bottom: 10px;
}

/* comments */
.c123-comments { margin-top: 50px; }
.c123-comment-list { list-style: none; display: grid; gap: 18px; }
.c123-comment-list .comment-body {
	background: var(--c123-softer);
	border: 1px solid var(--c123-line);
	border-radius: 14px;
	padding: 18px 20px;
}
.c123-comment-list .avatar { border-radius: 50%; }
.c123-comments input[type="text"],
.c123-comments input[type="email"],
.c123-comments input[type="url"],
.c123-comments textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid var(--c123-line);
	border-radius: 10px;
	font: inherit;
	outline: none;
}
.c123-comments input:focus, .c123-comments textarea:focus { border-color: var(--c123-primary); }
.c123-comments .submit {
	background: var(--c123-primary);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 13px 28px;
	font-weight: 600;
}
.c123-comments .submit:hover { background: var(--c123-primary-dark); }

/* video modal */
.c123-modal {
	position: fixed;
	inset: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(8, 15, 34, 0.82);
	padding: 24px;
}
.c123-modal[hidden] { display: none; }
.c123-modal-body {
	position: relative;
	width: min(920px, 100%);
	aspect-ratio: 16/9;
	background: #000;
	border-radius: 14px;
	overflow: hidden;
}
.c123-modal-body iframe {
	width: 100%; height: 100%;
	border: 0;
	display: block;
}
.c123-modal-close {
	position: absolute;
	top: -46px; right: 0;
	background: transparent;
	border: none;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
}

/* reveal on scroll */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
	.c123-hero-blob, .c123-float-card, .c123-hero-stamp svg { animation: none; }
	html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
	.c123-treatments-grid { grid-template-columns: repeat(3, 1fr); }
	.c123-treatments-intro { grid-column: 1 / -1; padding-right: 0; text-align: left; }
	.c123-why-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
	.c123-carousel-track { grid-auto-columns: calc(33.333% - 14px); }
	.c123-plans-panel { grid-template-columns: 1fr 1fr; }
	.c123-plans-photo { display: none; }
	.c123-footer-grid { grid-template-columns: repeat(3, 1fr); }
	.c123-ingredients-grid { grid-template-columns: 1fr; }
	.c123-header-cta { display: none; }
}

@media (max-width: 820px) {
	.c123-hero { padding: 44px 0 60px; }
	.c123-hero-grid { grid-template-columns: 1fr; gap: 40px; }
	.c123-hero-text { max-width: none; }
	.c123-showcase-inner { grid-template-columns: 1fr; }
	.c123-trusted-grid { grid-template-columns: 1fr; gap: 40px; }
	.c123-quote-card { position: static; max-width: none; margin-top: 18px; }
	.c123-video-thumb { max-width: none; border-radius: var(--c123-radius-lg); aspect-ratio: 16/10; }
	.c123-testi-grid { grid-template-columns: 1fr; }
	.c123-carousel-track { grid-auto-columns: calc(50% - 10px); }
	/* Client: list the goal cards vertically, one by one, on mobile */
	.c123-treatments-grid { grid-template-columns: 1fr; }
	.c123-treatment-photo { aspect-ratio: 16 / 9; }
	.c123-route-cards { grid-template-columns: 1fr; padding-bottom: 30px; }
	.c123-why-grid { grid-template-columns: 1fr; }
	.c123-why-head { margin-bottom: 28px; }
	.c123-trustbar-grid { grid-template-columns: repeat(2, 1fr); }
	.c123-trustbar-item { justify-content: flex-start; }
	.c123-blog-layout { grid-template-columns: 1fr; }
	.c123-post-grid { grid-template-columns: 1fr; }
	.c123-section { padding: 60px 0; }
	.c123-section-head { flex-direction: column; align-items: flex-start; }
	.c123-section-head.is-centered { align-items: center; }
	.c123-plans-panel { grid-template-columns: 1fr; padding: 36px 26px; }

	/* header spacing tightens as the CTA is gone and the toggle appears.
	   The nav is now an absolute drawer (out of flow), so the action
	   icons carry the margin-left:auto that pushes them to the right. */
	.c123-header-inner { gap: 14px; min-height: 62px; }
	.c123-nav { margin-left: 0; }
	.c123-header-actions { margin-left: auto; }

	/* mobile nav */
	.c123-nav-toggle { display: inline-flex; }
	.c123-nav {
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: #fff;
		border-bottom: 1px solid var(--c123-line);
		box-shadow: var(--c123-shadow);
		padding: 14px 20px 22px;
		display: none;
		max-height: calc(100vh - 74px);
		overflow-y: auto;
	}
	.c123-nav-open .c123-nav { display: block; }
	.c123-nav-list { flex-direction: column; gap: 2px; }
	.c123-nav-list a { padding: 12px 14px; font-size: 1rem; }
	.c123-nav-list .sub-menu {
		position: static;
		min-width: 0;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		padding-left: 18px;
	}
}

/* Small phones: keep the header on one tidy row */
@media (max-width: 420px) {
	.c123-container { width: calc(100% - 28px); }
	.c123-header-inner { gap: 8px; }
	.c123-logo { font-size: 1.15rem; }
	.c123-header-brand .custom-logo { height: 30px; max-width: 150px; }
	.c123-header-actions { gap: 0; }
	.c123-icon-btn { width: 38px; height: 38px; }
}

@media (max-width: 560px) {
	/* Client: fit 2 plan cards side by side on mobile */
	.c123-carousel-track { grid-auto-columns: calc(50% - 8px); gap: 12px; }
	.c123-product-title { font-size: 0.88rem; }
	.c123-carousel-prev { left: -6px; }
	.c123-carousel-next { right: -6px; }
	.c123-ingredients-list { grid-template-columns: repeat(2, 1fr); }
	.c123-footer-grid { grid-template-columns: 1fr 1fr; }
	.c123-footer-about { grid-column: 1 / -1; }
	.c123-lang { margin-left: 4px; }
	.c123-lang-toggle { height: 38px; padding: 0 8px; font-size: 0.8rem; }
	.c123-trustbar-grid { grid-template-columns: 1fr; }
	.c123-float-stat2 { left: 0; }
	.c123-newsletter-inner { padding: 24px; }
	.c123-newsletter-form { flex-direction: column; }
	.c123-hero-actions .c123-btn { width: 100%; justify-content: center; }
}

/* ---------- WooCommerce basics ----------
   NOTE: never add padding to `.woocommerce .c123-container` — that class
   is also the header/footer inner wrapper, so it would bloat the header
   on shop/cart/product pages. All WooCommerce layout spacing lives in
   woocommerce.css scoped under `.c123-wc`. */
.woocommerce span.onsale { background: var(--c123-primary); }
