/* ═══════════════════════════════════════
   Beldad IA — Design System
   Based on beldad-ia-pro React SPA (Tailwind v4 tokens)
   ═══════════════════════════════════════ */

:root {
	/* Brand colors */
	--sky-primary: #009BDB;
	--sky-primary-dark: #0073A8;
	--sky-primary-light: #E0F2FA;
	--sun-secondary: #EDCF56;
	--sun-secondary-light: #F8EDC0;
	--warm-gray: #9DA3A8;
	--soft-gray: #F5F6F8;
	--base: #FAFBFC;
	--contrast: #2B3440;

	/* Slate palette */
	--slate-900: #0F172A;
	--slate-800: #1E293B;
	--slate-700: #334155;
	--slate-600: #475569;
	--slate-500: #64748B;
	--slate-400: #94A3B8;
	--slate-300: #CBD5E1;
	--slate-200: #E2E8F0;
	--slate-100: #F1F5F9;

	/* Semantic */
	--emerald-500: #10B981;
	--emerald-50: #ECFDF5;

	/* Typography */
	--font-display: "Cormorant Garamond", "Georgia", serif;
	--font-sans: "Inter", system-ui, -apple-system, sans-serif;

	/* Spacing */
	--spacing: 0.25rem;
	--radius-lg: 0.5rem;
}

/* ═══════════════════════════════════════
   Base
   ═══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	color: var(--slate-800);
	background: var(--base);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

a {
	color: var(--sky-primary-dark);
	text-decoration: underline;
	transition: opacity 0.2s;
}

a:hover, a:focus { opacity: 0.85; }

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ═══════════════════════════════════════
   Layout & Sections
   ═══════════════════════════════════════ */

.wp-site-blocks {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.wp-site-blocks > * { margin-block: 0; }

.wp-site-blocks > main { flex: 1; }

.wrapper {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

@media (min-width: 1024px) {
	.wrapper { padding: 0 48px; }
}

.section {
	padding: 80px 0;
}
@media (min-width: 1024px) {
	.section { padding: 112px 0; }
}

.section--white { background: #fff; }
.section--gray { background: var(--soft-gray); }
.section--gradient {
	background: linear-gradient(135deg, var(--sky-primary-light) 0%, #fff 50%, var(--sun-secondary-light) 100%);
}

.section--soft { background: var(--soft-gray); }

#especialidades,
#blog,
#reviews,
#brands,
#why-us {
	padding: 24px 0 48px;
}

@media (min-width: 1024px) {
	#especialidades,
	#blog,
	#reviews,
	#brands,
	#why-us { padding: 112px 0; }
}

#especialidades .cat-grid,
#blog .blog-carousel,
#reviews .reviews-grid,
#brands .brands,
#why-us .why-grid {
	margin-top: 40px;
}

#why-us .why-media {
	display: none;
}

#why-us .section-header {
	text-align: center;
	margin: 0 auto 24px;
}

@media (min-width: 1024px) {
	#why-us .why-media {
		display: block;
		width: 400px;
		justify-self: end;
	}
	#why-us .section-header {
		text-align: left;
		margin-left: 0;
	}
}

.section-header {
	max-width: 768px;
	margin-bottom: 56px;
}


.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--sky-primary-dark);
	font-weight: 600;
	margin-bottom: 16px;
}

.section-eyebrow::before {
	content: "";
	height: 1px;
	width: 32px;
	background: var(--sky-primary-dark);
}

.section-eyebrow--divider {
	display: flex;
	width: 100%;
	gap: 16px;
}

.section-eyebrow--divider::before,
.section-eyebrow--divider::after {
	content: "";
	flex: 1;
	height: 1px;
	width: auto;
	background: var(--sky-primary-dark);
	align-self: center;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	color: var(--slate-800);
	margin: 0;
	line-height: 1.1;
}


@media (min-width: 1024px) {
	.section-title { font-size: 3rem; }
}

.section-subtitle {
	font-size: 1.125rem;
	color: var(--slate-600);
	line-height: 1.7;
	margin: 0;
}

/* ═══════════════════════════════════════
   Buttons
   ═══════════════════════════════════════ */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: 9999px;
	font-weight: 500;
	font-size: 0.9375rem;
	line-height: 1;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
}

.btn--primary {
	background: var(--sky-primary-dark);
	color: #fff;
	box-shadow: 0 8px 24px rgba(79, 169, 211, 0.3);
}

.btn--primary:hover, .btn--primary:focus {
	background: var(--slate-800);
	color: #fff;
	opacity: 1;
}

.btn--secondary {
	background: #fff;
	color: var(--slate-800);
	border: 1px solid var(--slate-200);
}

.btn--secondary:hover, .btn--secondary:focus {
	background: var(--soft-gray);
	opacity: 1;
}

.btn--dark {
	background: var(--slate-800);
	color: #fff;
}

.btn--dark:hover, .btn--dark:focus {
	background: var(--sky-primary-dark);
	opacity: 1;
}

.btn--sm {
	padding: 8px 20px;
	font-size: 0.8125rem;
}

.btn--link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--sky-primary-dark);
	text-decoration: none;
	transition: gap 0.3s;
}

.btn--link:hover, .btn--link:focus {
	gap: 10px;
	opacity: 1;
}

/* ═══════════════════════════════════════
   Cards
   ═══════════════════════════════════════ */

.card {
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid var(--slate-100);
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
	transition: all 0.3s;
	text-decoration: none;
	color: inherit;
	display: block;
}

.card:hover, .card:focus {
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	transform: translateY(-2px);
	opacity: 1;
}

.card--sm { border-radius: 16px; }

.card--flat { border-radius: 16px; border: 1px solid var(--slate-100); box-shadow: none; }

.card--flat:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
	border-color: rgba(124, 196, 232, 0.3);
}

.card--form {
	border-radius: 24px;
	padding: 24px;
	border: 1px solid var(--slate-100);
	box-shadow: 0 8px 24px rgba(241, 245, 249, 0.5);
}

@media (min-width: 1024px) {
	.card--form { padding: 32px; }
}

/* ═══════════════════════════════════════
   Treatment Card
   ═══════════════════════════════════════ */

.treat-card {
	display: block;
	border-radius: 24px;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--slate-100);
	box-shadow: 0 8px 24px rgba(241,245,249,0.5);
	transition: all 0.3s ease;
	text-decoration: none;
}

.treat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(15,23,42,0.08);
	border-color: rgba(124,196,232,0.2);
}

.treat-card__img {
	overflow: hidden;
	height: 200px;
	position: relative;
}

.treat-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.treat-card:hover .treat-card__img img { transform: scale(1.05); }

.treat-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(4px);
	padding: 4px 12px;
	border-radius: 100px;
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--sky-primary-dark);
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.treat-card__body {
	padding: 16px 20px 20px;
}

@media (min-width: 768px) { .treat-card__body { padding: 20px 24px 24px; } }

.treat-card h3 {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--slate-800);
	margin: 8px 0 12px;
	transition: color 0.3s ease;
}

.treat-card:hover h3 { color: var(--sky-primary-dark); }

.treat-card__meta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 16px;
}

.treat-card__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8125rem;
	color: var(--slate-500);
}

.treat-card__meta-item svg { flex-shrink: 0; 	color: var(--slate-800);
}

.treat-card__meta-item--price {
	font-weight: 700;
	color: var(--sky-primary-dark);
	font-size: 0.9375rem;
}

.treat-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--sky-primary-dark);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: gap 0.3s ease;
}

.treat-card:hover .treat-card__link { gap: 10px; }

.treat-card__link svg { transition: transform 0.3s ease; }

.treat-card:hover .treat-card__link svg { transform: translateX(2px); }

/* ═══════════════════════════════════════
   Tags / Pills / Chips
   ═══════════════════════════════════════ */

.tag {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-decoration: none;
	transition: all 0.3s;
}

.tag--primary {
	background: var(--sky-primary-light);
	color: var(--sky-primary-dark);
	border: 1px solid rgba(79, 169, 211, 0.1);
}

.tag--outline {
	background: var(--soft-gray);
	color: var(--slate-600);
	border: 1px solid var(--slate-100);
}

.tag--outline:hover, .tag--outline:focus {
	background: var(--sky-primary-light);
	opacity: 1;
}

.tag--active {
	background: var(--sky-primary);
	color: #fff;
}

.tag--white {
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(4px);
	color: var(--sky-primary-dark);
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 9999px;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255,255,255,0.2);
	color: #fff;
	font-size: 0.75rem;
	white-space: nowrap;
}

/* ═══════════════════════════════════════
   Grids
   ═══════════════════════════════════════ */

.grid-2 { display: grid; gap: 24px; }
.grid-3 { display: grid; gap: 20px; }

@media (min-width: 640px) {
	.grid-2 { grid-template-columns: repeat(2, 1fr); }
	.grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
	.grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-auto {
	display: grid;
	gap: 20px;
}

@media (min-width: 640px) {
	.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

.grid-auto--wide {
	display: grid;
	gap: 24px;
}

@media (min-width: 640px) {
	.grid-auto--wide { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
}

/* ═══════════════════════════════════════
   Hero
   ═══════════════════════════════════════ */

.hero {
	position: relative;
	overflow: hidden;
	padding-top: 56px;
}

@media (min-width: 1024px) {
	.hero { padding-top: 0; }
}

.hero__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--sky-primary-light) 0%, #fff 50%, var(--sun-secondary-light) 100%);
	z-index: 0;
}

.hero__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(64px);
	pointer-events: none;
}

.hero__blob--top { top: -160px; right: -80px; width: 400px; height: 400px; background: rgba(124,196,232,0.15); }

.hero__blob--bottom { bottom: -120px; left: -80px; width: 300px; height: 300px; background: rgba(255,233,163,0.3); }

.hero--tax { padding-top: 56px; }
.hero--tax .wrapper { position: relative; z-index: 1; padding: 24px; }
@media (min-width: 1024px) { .hero--tax { padding-top: 0; } .hero--tax .wrapper { padding: 48px 48px 32px; } }

.hero__section {
	position: relative;
	z-index: 1;
	padding: 24px 24px;
}

.hero__section--text { padding-bottom: 24px; }

.hero__container {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
}

.hero__text-content {
	text-align: center;
}

@media (min-width: 1024px) {
	.hero__text-content { text-align: center; }
	.hero__section--text { padding: 24px 24px 48px; }
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px 6px 12px;
	border-radius: 9999px;
	background: rgba(255,255,255,0.8);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(124,196,232,0.3);
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--sky-primary-dark);
	font-weight: 600;
	margin-bottom: 16px;
}

.hero__badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sun-secondary);
}

.hero__title {
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--slate-800);
	line-height: 1.08;
	margin: 0 0 20px;
}

@media (min-width: 640px) { .hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero__title { font-size: 4.5rem; } }

.hero__title em {
	font-style: normal;
	color: var(--sky-primary-dark);
}

.hero__subtitle {
	font-size: 1rem;
	color: var(--slate-600);
	line-height: 1.7;
	max-width: 576px;
	margin: 0 auto 32px;
}

@media (min-width: 640px) { .hero__subtitle { font-size: 1.125rem; } }

.hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.hero__visual {
	position: relative;
	width: 100%;
	padding: 24px 0 40px;
}

[data-component="before-after"] {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.hero__subtitle { margin: 0 auto 32px; }
}

/* ═══════════════════════════════════════
   Before/After Slider
   ═══════════════════════════════════════ */

.ba-slider {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 16px 40px rgba(79, 169, 211, 0.15);
	width: 100%;
	margin: 0 auto;
	aspect-ratio: 780 / 183;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media (min-width: 640px) { .ba-slider { border-radius: 32px; } }

.ba-slider__figure {
	height: 100%;
	margin: 0;
	position: relative;
	width: 100%;
}

.ba-slider__after {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	max-width: 99%;
	min-width: 1%;
	overflow: hidden;
	background-size: cover;
	background-position: left center;
	background-repeat: no-repeat;
	border-right: 3px solid rgba(255,255,255,0.9);
}

.ba-slider__range {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	cursor: col-resize;
	height: 100%;
	left: 0;
	margin: 0;
	outline: none;
	padding: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10;
}

.ba-slider__range::-webkit-slider-track { background: transparent; }
.ba-slider__range::-moz-range-track { background: transparent; border: none; }
.ba-slider__range::-ms-track {
	background: transparent; border: none; color: transparent;
}

.ba-slider__range::-webkit-slider-thumb {
	-webkit-appearance: none;
	height: 100%;
	width: 6px;
	opacity: 0;
}

.ba-slider__range::-moz-range-thumb {
	height: 100%;
	width: 6px;
	opacity: 0;
	border: none;
	border-radius: 0;
}

.ba-slider__range::-ms-thumb {
	height: 100%;
	width: 6px;
	opacity: 0;
}

.ba-slider__range::-ms-tooltip { display: none; }

.ba-slider__label {
	position: absolute;
	padding: 4px 10px;
	border-radius: 8px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	z-index: 5;
	display: none;
}

@media (min-width: 640px) { .ba-slider__label { display: block; font-size: 11px; } }

.ba-slider__label--before {
	top: 12px;
	left: 12px;
	right: auto;
	background: rgba(0, 155, 219, 0.9);
	backdrop-filter: blur(4px);
	color: #fff;
	box-shadow: 0 2px 8px rgba(0,155,219,0.25);
}

.ba-slider__label--after {
	bottom: 12px;
	right: 12px;
	left: auto;
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(4px);
	color: var(--slate-700);
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* ═══════════════════════════════════════
   Hero Rating Badge
   ═══════════════════════════════════════ */

.hero__badge-stats {
	position: absolute;
	bottom: 12px;
	left: 12px;
	z-index: 15;
	display: none;
	align-items: stretch;
	gap: 0;
	padding: 0;
	border-radius: 14px;
	overflow: hidden;
	background: rgba(30, 35, 48, 0.82);
	backdrop-filter: blur(16px);
	box-shadow: 0 8px 32px rgba(0,0,0,0.3);
	border: 1px solid rgba(255,255,255,0.06);
}

.hero__badge-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 8px 14px;
	position: relative;
}

.hero__badge-stat + .hero__badge-stat::before {
	content: "";
	position: absolute;
	left: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: rgba(255,255,255,0.08);
}

.hero__badge-stat:first-child {
	padding-left: 16px;
}

.hero__badge-stat:last-child {
	padding-right: 16px;
}

.hero__badge-stat-value {
	font-family: var(--font-display);
	font-size: 0.9375rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero__badge-stat-value svg {
	color: var(--sun-secondary);
	filter: drop-shadow(0 1px 2px rgba(237,207,86,0.3));
}

.hero__badge-stat-label {
	font-size: 0.5rem;
	color: rgba(255,255,255,0.5);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	line-height: 1.2;
	white-space: nowrap;
	font-weight: 500;
}

@media (min-width: 640px) {
	.hero__badge-stats {
		display: flex;
		bottom: 16px;
		left: 16px;
		border-radius: 16px;
	}
	.hero__badge-stat { padding: 10px 18px; }
	.hero__badge-stat:first-child { padding-left: 22px; }
	.hero__badge-stat:last-child { padding-right: 22px; }
	.hero__badge-stat-value { font-size: 1.0625rem; }
	.hero__badge-stat-label { font-size: 0.5625rem; letter-spacing: 0.1em; }
}

/* ═══════════════════════════════════════
   Floating cards (Hero)
   ═══════════════════════════════════════ */

.floating-card {
	position: absolute;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 16px 40px rgba(15,23,42,0.1);
	border: 1px solid var(--slate-100);
	padding: 16px;
	display: none;
	backdrop-filter: blur(8px);
}

@media (min-width: 1024px) { .floating-card { display: flex; gap: 12px; align-items: center; } }

.floating-card--bottom {
	bottom: -24px;
	left: -24px;
	max-width: 240px;
}

.floating-card--top {
	top: -24px;
	right: -24px;
}

.floating-card__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--sky-primary-light), #fff);
	display: flex;
	align-items: center;
	justify-content: center;
}

.floating-card__title {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--slate-800);
	margin: 0 0 2px;
}

.floating-card__text {
	font-size: 0.6875rem;
	color: var(--slate-500);
	margin: 0;
}

.floating-card__status {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--slate-700);
}

.treat-card__badge {
	margin-bottom: 8px;
	display: inline-block;
}

.floating-card--top {
	padding: 10px 16px;
}


.floating-card__dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--emerald-500);
	margin-right: 6px;
	animation: pulse 2s infinite;
}

/* ═══════════════════════════════════════
   Sidebar Navigation
   ═══════════════════════════════════════ */

.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	width: 288px;
	height: 100vh;
	background: #fff;
	border-right: 1px solid var(--slate-100);
	display: flex;
	flex-direction: column;
	transform: translateX(-100%);
	transition: transform 0.3s;
}

@media (min-width: 1024px) {
	.sidebar { transform: translateX(0); }
}

.sidebar.open { transform: translateX(0); }

.sidebar-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15,23,42,0.4);
	z-index: 40;
	display: none;
}

@media (min-width: 1024px) { .sidebar-overlay { display: none !important; } }

.sidebar-overlay.visible { display: block; }

.top-bar {
	position: fixed;
	top: 0;
	inset-inline: 0;
	z-index: 45;
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--slate-200);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 16px;
	height: 56px;
}

@media (min-width: 1024px) { .top-bar { display: none; } }

.has-sidebar { padding-top: 0; }

@media (min-width: 1024px) {
	.has-sidebar { margin-left: 288px; }
}

/* Brand */
.sidebar__brand {
	padding: 0 24px;
	border-bottom: 1px solid var(--slate-100);
	flex-shrink: 0;
}

.sidebar__brand-link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: inherit;
}

.sidebar__brand-link:hover { opacity: 1; }

.sidebar__logo-img {
	display: block;
	width: 100%;
	max-width: 200px;
	height: auto;
}

.sidebar__brand-name {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--slate-800);
	line-height: 1;
}

.sidebar__brand-tagline {
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--slate-400);
	margin-top: 2px;
}

/* Nav */
.sidebar__nav {
	flex: 1;
	overflow-y: auto;
	padding: 24px 16px;
}

.sidebar__label {
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--slate-400);
	padding: 0 8px;
	margin-bottom: 8px;
	display: block;
}

.sidebar__nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.sidebar__link {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 8px 12px;
	border-radius: 12px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--slate-600);
	text-decoration: none;
	transition: all 0.2s;
	border: none;
	background: none;
	cursor: pointer;
	text-align: left;
}

.sidebar__link:hover { background: var(--soft-gray); color: var(--slate-900); opacity: 1; }

.sidebar__link--active {
	background: var(--sky-primary-light);
	color: var(--sky-primary-dark);
	font-weight: 600;
}

.sidebar__group-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 8px 12px;
	border-radius: 12px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--slate-700);
	transition: all 0.2s;
	border: none;
	background: none;
	cursor: pointer;
	text-align: left;
}

.sidebar__group-toggle:hover { background: var(--soft-gray); }

.sidebar__group-toggle--active {
	background: rgba(230, 244, 251, 0.4);
	color: var(--sky-primary-dark);
	font-weight: 600;
}

.sidebar__chevron {
	width: 16px;
	height: 16px;
	color: var(--slate-400);
	flex-shrink: 0;
	transition: transform 0.2s;
}

.sidebar__chevron--open { transform: rotate(180deg); }

.sidebar__submenu {
	padding: 4px 8px 4px 16px;
	border-left: 1px solid var(--slate-100);
	margin-left: 20px;
	display: none;
}

.sidebar__submenu--grouped {
	padding-left: 20px;
}

.sidebar__submenu--open { display: block; }

.sidebar__submenu-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.sidebar__sub-link {
	display: block;
	width: 100%;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--slate-500);
	text-decoration: none;
	transition: all 0.2s;
	border: none;
	background: transparent;
	cursor: pointer;
	padding: 6px 8px 6px 20px;
}

.sidebar__sub-link:hover { color: var(--slate-800); background: rgba(245,246,248,0.5); }

.sidebar__sub-link--active {
	color: var(--sky-primary-dark);
	background: rgba(230, 244, 251, 0.6);
	font-weight: 600;
}

/* Sub-group headings */
.sidebar__subgroup-label {
	list-style: none;
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--slate-400);
	font-weight: 600;
	padding: 0 8px 0 4px;
	margin-bottom: 4px;
	margin-top: 0;
}

/* Contact card */
.sidebar__contact {
	padding: 12px 16px 16px;
	border-top: 1px solid var(--slate-100);
	flex-shrink: 0;
}

.sidebar__contact-label-header {
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--slate-400);
	padding: 0 8px;
	margin-bottom: 12px;
	display: block;
}

.sidebar__contact-inner {
	background: linear-gradient(135deg, var(--sky-primary-light) 0%, #fff 50%, var(--sun-secondary-light) 100%);
	border-radius: 16px;
	padding: 16px;
	border: 1px solid var(--slate-100);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sidebar__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.sidebar__contact-icon { font-size: 16px; flex-shrink: 0; line-height: 1.4; }

.sidebar__contact-name { font-size: 0.75rem; font-weight: 500; color: var(--slate-800); margin: 0; }

.sidebar__contact-detail { font-size: 0.6875rem; color: var(--slate-500); margin: 0; }

.sidebar__contact-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.sidebar__contact-link:hover .sidebar__contact-name,
.sidebar__contact-link:hover .sidebar__contact-detail {
	color: var(--sky-primary);
}

.sidebar__contact-link--wa:hover .sidebar__contact-detail {
	color: #25D366;
}

.sidebar__contact-social {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sidebar__contact-social-label {
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--slate-400);
	letter-spacing: 0.1em;
}

.sidebar__contact-social--bottom {
	justify-content: flex-end;
	gap: 8px;
}

.sidebar__contact-social-link {
	color: var(--slate-400);
	transition: color 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.sidebar__contact-social-link:hover {
	transform: translateY(-2px);
}
.sidebar__contact-social-link[aria-label="WhatsApp"]:hover { color: #25D366; }
.sidebar__contact-social-link[aria-label="Facebook"]:hover { color: #1877F2; }
.sidebar__contact-social-link[aria-label="Instagram"]:hover { color: #E1306C; }

.sidebar__contact-cita {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: transparent;
	color: var(--sky-primary-dark);
	font-size: 0.6875rem;
	font-weight: 600;
	text-decoration: none;
	padding: 3px 10px;
	border-radius: 999px;
	border: 1.5px solid var(--sky-primary);
	transition: background 0.2s, border-color 0.2s;
}

.sidebar__contact-cita:hover {
	background: var(--sky-primary-light);
	border-color: var(--sky-primary-dark);
	color: var(--sky-primary-dark);
}

.sidebar__contact-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 4px;
}

.sidebar__contact-actions-left {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* CTA */
.sidebar__cta {
	padding: 16px;
	border-top: 1px solid var(--slate-100);
	flex-shrink: 0;
}

.sidebar__cta-inner {
	background: linear-gradient(135deg, var(--sky-primary-light), #fff, var(--sun-secondary-light));
	border-radius: 16px;
	padding: 16px;
}

.sidebar__cta-eyebrow {
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--sky-primary-dark);
	font-weight: 600;
}

.sidebar__cta-title {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--slate-800);
	margin: 4px 0;
	line-height: 1.2;
}

.sidebar__cta-link {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--slate-700);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: gap 0.3s;
}

.sidebar__cta-link:hover { gap: 8px; opacity: 1; }

/* Logo (shared) */
.site-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--slate-800);
}

.site-logo:hover { opacity: 1; }

.site-logo__icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--sky-primary), var(--sky-primary-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(79, 169, 211, 0.3);
	position: relative;
}

.site-logo__icon::after {
	content: "";
	position: absolute;
	top: -2px;
	right: -2px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--sun-secondary);
	border: 2px solid #fff;
}

.site-logo__icon svg { fill: #fff; }

.site-logo__text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }

.mobile-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	background: none;
	cursor: pointer;
	color: var(--sky-primary);
}

@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* ═══════════════════════════════════════
   Footer
   ═══════════════════════════════════════ */

.site-footer {
	background: linear-gradient(135deg, var(--sky-primary-light) 0%, #fff 50%, var(--sun-secondary-light) 100%);
	border-top: 1px solid var(--slate-200);
	padding: 32px 0;
	margin-top: auto;
}

@media (min-width: 1024px) {
	.site-footer { margin-left: 288px; }
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

@media (min-width: 768px) { .site-footer__inner { flex-direction: row; } }

.site-footer__copyright {
	font-size: 0.75rem;
	color: var(--slate-500);
}

.site-footer__links {
	display: flex;
	align-items: center;
	gap: 20px;
}

.site-footer__links a {
	font-size: 0.75rem;
	color: var(--slate-500);
	text-decoration: none;
	transition: color 0.2s;
}

.site-footer__links a:hover, .site-footer__links a:focus {
	color: var(--sky-primary-dark);
	opacity: 1;
}

/* ═══════════════════════════════════════
   Carousel
   ═══════════════════════════════════════ */

.carousel { position: relative; overflow: hidden; width: 100%; }
#brands .carousel { padding: 0; }
.blog-carousel { position: relative; }
.blog-carousel .carousel-arrow--prev { left: 8px; }
.blog-carousel .carousel-arrow--next { right: 8px; }
#brands .carousel-arrow--prev { left: 0; }
#brands .carousel-arrow--next { right: 0; }

.carousel-track {
	display: flex;
	transition: transform 0.5s ease-out;
	width: 100%;
}

.carousel-slide { flex: 0 0 100%; min-width: 0; }

.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,.95);
	box-shadow: 0 2px 6px rgba(0,0,0,.15);
	border: none;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	line-height: 1;
	transition: all .15s;
	color: var(--sky-primary, #009BDB);
}

.carousel-arrow:hover { background: #fff; box-shadow: 0 3px 10px rgba(0,0,0,.2); color: var(--sky-primary-dark, #0073A8); }

.carousel-arrow--prev { left: 20px; }
.carousel-arrow--next { right: 20px; }

.carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--slate-300);
	border: none;
	cursor: pointer;
	transition: all 0.3s;
}

.carousel-dot:hover { background: var(--sky-primary); }

.carousel-dot.active {
	width: 24px;
	border-radius: 9999px;
	background: var(--sky-primary-dark);
}

/* ═══════════════════════════════════════
   Treatment page
   ═══════════════════════════════════════ */

.treatment-hero {
	position: relative;
	background: var(--slate-900);
	color: #fff;
	overflow: hidden;
}

.treatment-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}

.treatment-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, var(--slate-900) 0%, rgba(15,23,42,0.5) 50%, rgba(15,23,42,0.15) 100%);
}

.treatment-hero__content {
	position: relative;
	z-index: 1;
	padding: 80px 0;
	min-height: 400px;
	display: flex;
	align-items: center;
}

@media (min-width: 1024px) { .treatment-hero__content { min-height: 500px; } }

.treatment-hero__breadcrumb {
	font-size: 0.625rem;
	color: rgba(255,255,255,0.5);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

.treatment-hero__breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }

.treatment-hero__breadcrumb a:hover { color: #fff; }

.treatment-hero__title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 1.1;
	margin: 0 0 12px;
}

@media (min-width: 640px) { .treatment-hero__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .treatment-hero__title { font-size: 3rem; } }

.treatment-hero__subtitle {
	font-size: 1rem;
	color: rgba(255,255,255,0.8);
	max-width: 768px;
}

@media (min-width: 640px) { .treatment-hero__subtitle { font-size: 1.125rem; } }

.treatment-content {
	display: grid;
	gap: 48px;
	padding: 64px 0;
}

@media (min-width: 1024px) {
	.treatment-content { grid-template-columns: 1fr 360px; }
}

.treatment-content h2 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--slate-800);
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--slate-100);
}

@media (min-width: 640px) { .treatment-content h2 { font-size: 1.875rem; } }

.ingredient-chip {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 12px;
	background: var(--sky-primary-light);
	color: var(--sky-primary-dark);
	font-size: 0.625rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border: 1px solid rgba(79,169,211,0.1);
}

@media (min-width: 640px) { .ingredient-chip { font-size: 0.75rem; } }

.benefit-check {
	display: inline-flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--slate-100);
}

.benefit-check:last-child { border-bottom: none; }

.benefit-check__icon {
	flex-shrink: 0;
	color: var(--emerald-500);
	font-size: 1.125rem;
	line-height: 1.4;
}

.protocol-step {
	display: flex;
	gap: 16px;
	padding: 12px 0;
}

.protocol-step__num {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--sun-secondary-light);
	color: var(--slate-800);
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.protocol-step:hover .protocol-step__num {
	background: var(--sky-primary);
	color: #fff;
}

/* ═══════════════════════════════════════
   Cookie Banner
   ═══════════════════════════════════════ */

.cookie-banner {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(15,23,42,0.3);
	backdrop-filter: blur(4px);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.cookie-banner.visible { display: flex; }

.cookie-banner__modal {
	width: 100%;
	max-width: 512px;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 24px 48px rgba(0,0,0,0.15);
	overflow: hidden;
	animation: fadeInUp 0.4s ease-out;
}

.cookie-banner__header {
	background: linear-gradient(to right, var(--sky-primary-light), #fff, var(--sun-secondary-light));
	padding: 32px 32px 24px;
	text-align: center;
}

.cookie-banner__icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 4px 12px rgba(79,169,211,0.15);
	margin-bottom: 16px;
}

.cookie-banner__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--slate-800);
	margin: 0;
}

.cookie-banner__body { padding: 16px 32px 24px; }

.cookie-banner__text {
	font-size: 0.875rem;
	color: var(--slate-600);
	line-height: 1.6;
	margin: 0 0 20px;
	text-align: center;
}

.cookie-banner__type {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px;
	border-radius: 12px;
	background: var(--soft-gray);
	border: 1px solid var(--slate-100);
	margin-bottom: 8px;
}

.cookie-banner__type-info { display: flex; align-items: center; gap: 12px; }

.cookie-banner__type-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.cookie-banner__type-icon--necessary { background: var(--emerald-50); color: var(--emerald-500); }

.cookie-banner__type-icon--analytics { background: var(--sky-primary-light); color: var(--sky-primary-dark); }

.cookie-banner__type-name { font-size: 0.8125rem; font-weight: 600; 	color: var(--sky-primary);
}

.cookie-banner__type-desc { font-size: 0.75rem; color: var(--slate-500); }

.cookie-banner__type-status {
	font-size: 0.6875rem;
	color: var(--slate-400);
	background: #fff;
	padding: 2px 8px;
	border-radius: 4px;
	white-space: nowrap;
}

.cookie-banner__actions {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.cookie-banner__btn {
	flex: 1;
	padding: 12px 20px;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
	text-align: center;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
}

.cookie-banner__btn--primary {
	background: var(--sky-primary-dark);
	color: #fff;
	box-shadow: 0 4px 16px rgba(79,169,211,0.2);
}

.cookie-banner__btn--primary:hover { background: var(--slate-800); }

.cookie-banner__btn--secondary {
	background: #fff;
	color: var(--slate-700);
	border: 1px solid var(--slate-200);
}

.cookie-banner__btn--secondary:hover { background: var(--soft-gray); }

.cookie-banner__footer {
	border-top: 1px solid var(--slate-100);
	padding: 16px 32px;
	text-align: center;
}

.cookie-banner__footer a {
	font-size: 0.6875rem;
	color: var(--slate-400);
	text-decoration: none;
}

.cookie-banner__footer a:hover { color: var(--sky-primary-dark); }

/* ═══════════════════════════════════════
   Forms
   ═══════════════════════════════════════ */

.form-group { margin-bottom: 16px; }

.form-label {
	display: block;
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--slate-500);
	font-weight: 700;
	margin-bottom: 6px;
}

.form-input {
	width: 100%;
	padding: 10px 16px;
	border-radius: 12px;
	border: 1px solid var(--slate-200);
	background: #fff;
	font-size: 0.875rem;
	color: var(--slate-700);
	font-family: var(--font-sans);
	transition: all 0.3s;
}

.form-input:focus {
	outline: none;
	border-color: transparent;
	box-shadow: 0 0 0 2px var(--sky-primary);
}

.form-input::placeholder { color: var(--slate-400); }

textarea.form-input { min-height: 100px; resize: vertical; }

/* ═══════════════════════════════════════
   Blog
   ═══════════════════════════════════════ */

.blog-post-header {
	background: linear-gradient(135deg, var(--sky-primary-light) 0%, #fff 50%, var(--sun-secondary-light) 100%);
	padding: 64px 0;
	border-bottom: 1px solid var(--slate-100);
}

@media (min-width: 1024px) { .blog-post-header { padding: 96px 0; } }

.blog-post-header h1 {
	font-family: var(--font-display);
	font-size: 2.25rem;
	font-weight: 600;
	color: var(--slate-800);
	margin: 0;
}

@media (min-width: 1024px) { .blog-post-header h1 { font-size: 3rem; } }

.blog-meta {
	font-size: 0.75rem;
	color: var(--slate-400);
	margin-top: 8px;
}

.blog-cat-badge {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 9999px;
	background: var(--sky-primary-light);
	color: var(--sky-primary-dark);
	font-size: 0.5625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

@media (min-width: 640px) { .blog-cat-badge { font-size: 0.625rem; } }

/* ═══════════════════════════════════════
   Reviews
   ═══════════════════════════════════════ */

.stars { color: var(--sun-secondary); }

/* ═══════════════════════════════════════
   Front Page — Category Grid
   ═══════════════════════════════════════ */

.cat-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

@media (min-width: 768px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

@media (min-width: 1024px) { .cat-grid { gap: 32px; } }

.cat-grid__group-heading {
	grid-column: 1 / -1;
	margin: 24px 0 -4px;
}
.cat-grid__group-heading h3 {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--sky-primary-dark);
	margin: 0;
}

.cat-card {
	background: #fff;
	border: 1px solid var(--slate-100);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.cat-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.cat-card__img {
	aspect-ratio: 4/3;
	overflow: hidden;
}

.cat-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.cat-card:hover .cat-card__img img { transform: scale(1.05); }

.cat-card__body {
	padding: 12px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

@media (min-width: 768px) { .cat-card__body { padding: 20px; } }

@media (min-width: 1024px) { .cat-card__body { padding: 24px; } }

.cat-card h3 {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--slate-800);
	font-size: 1rem;
	line-height: 1.2;
	transition: color 0.2s;
	margin: 0;
}

@media (min-width: 768px) { .cat-card h3 { font-size: 1.25rem; } }

@media (min-width: 1024px) { .cat-card h3 { font-size: 1.5rem; } }

.cat-card:hover h3 { color: var(--sky-primary-dark); }

.cat-card p {
	color: var(--slate-600);
	font-size: 11px;
	margin-top: 8px;
	display: none;
	line-height: 1.5;
}

@media (min-width: 640px) { .cat-card p { display: block; } }

@media (min-width: 1024px) { .cat-card p { font-size: 0.75rem; } }

.cat-card__link {
	margin-top: 16px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 600;
	color: var(--sky-primary-dark);
	transition: gap 0.2s;
}

@media (min-width: 768px) { .cat-card__link { font-size: 0.75rem; margin-top: 24px; } }

.cat-card:hover .cat-card__link { gap: 10px; }


/* ═══════════════════════════════════════
   Front Page — Blog Carousel
   ═══════════════════════════════════════ */

.blog-carousel {
	max-width: 768px;
	margin: 0 auto;
}

.blog-card {
	background: #fff;
	border: 1px solid var(--slate-100);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.blog-card__inner {
	display: grid;
}

@media (min-width: 640px) {
	.blog-card__inner { grid-template-columns: 2fr 3fr; }
}

.blog-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/9;
}

@media (min-width: 640px) { .blog-card__media { aspect-ratio: auto; min-height: 220px; } }

.blog-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-card__content {
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media (min-width: 640px) { .blog-card__content { padding: 24px; } }

@media (min-width: 1024px) { .blog-card__content { padding: 32px; } }

.blog-card__tags {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.blog-tag {
	padding: 2px 10px;
	border-radius: 9999px;
	background: var(--sky-primary-light);
	color: var(--sky-primary-dark);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

@media (min-width: 640px) { .blog-tag { font-size: 10px; padding: 2px 10px; } }

.blog-date {
	font-size: 9px;
	color: var(--slate-400);
}

@media (min-width: 640px) { .blog-date { font-size: 10px; } }

.blog-card h3 {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--slate-800);
	font-size: 1.125rem;
	line-height: 1.2;
	margin: 0;
}

@media (min-width: 640px) { .blog-card h3 { font-size: 1.25rem; } }

@media (min-width: 1024px) { .blog-card h3 { font-size: 1.5rem; } }

.blog-card__excerpt {
	font-size: 11px;
	color: var(--slate-600);
	margin-top: 8px;
	line-height: 1.6;
}

@media (min-width: 640px) { .blog-card__excerpt { font-size: 0.75rem; } }

.blog-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
	padding-top: 12px;
	border-top: 1px solid var(--slate-100);
}

.blog-card__read-more {
	font-size: 11px;
	font-weight: 600;
	color: var(--sky-primary-dark);
	display: inline-flex;
	align-items: center;
	gap: 4px;
	text-decoration: none;
	transition: gap 0.3s;
}

.blog-card__read-more:hover { gap: 8px; opacity: 1; }

@media (min-width: 640px) { .blog-card__read-more { font-size: 0.75rem; } }

.blog-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin-top: 16px;
}

.blog-dot {
	height: 6px;
	border-radius: 9999px;
	background: var(--slate-300);
	transition: all 0.3s;
	cursor: pointer;
	border: none;
	padding: 0;
}

.blog-dot.active { width: 20px; background: var(--sky-primary-dark); }

.blog-dot:not(.active) { width: 6px; }

.blog-dot:not(.active):hover { background: var(--sky-primary); }

/* ═══════════════════════════════════════
   Front Page — Reviews
   ═══════════════════════════════════════ */

.reviews-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	max-width: 1024px;
	margin: 0 auto;
	position: relative;
}

@media (min-width: 768px) {
	.reviews-layout {
		grid-template-columns: 25% 75%;
	}
	.reviews-layout .reviews-grid {
		max-width: none;
		margin: 0;
		padding-right: 20px;
	}
}

.reviews-grid .reviews-nav {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 2;
}

.reviews-nav__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,.95);
	box-shadow: 0 2px 6px rgba(0,0,0,.15);
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--sky-primary, #009BDB);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .15s;
	pointer-events: auto;
	z-index: 3;
}

.reviews-nav__btn:hover {
	background: #fff;
	box-shadow: 0 3px 10px rgba(0,0,0,.2);
	color: var(--sky-primary-dark, #0073A8);
}

.reviews-nav__btn--prev { left: -20px; }
.reviews-nav__btn--next { right: 0; }
@media (max-width: 767px) { .reviews-nav__btn--next { right: -20px; } }

.reviews-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; } }

.review-card {
	background: #fff;
	border: 0;
	border-radius: 12px;
	padding: 0 0 10px;
	display: flex;
	flex-direction: column;
	box-shadow: 1px 4px 10px rgba(0,0,0,.1), 0 0 2px rgba(0,0,0,.05);
	position: relative;
}

.review-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px 8px;
	position: relative;
}

.review-card__platform {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 16px;
	right: 16px;
	color: var(--slate-400);
}

.review-card__details {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.review-card__name {
	font-weight: 600;
	font-size: 0.9rem;
	color: #000;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 28px;
}

.review-card__date {
	color: #888;
	font-size: 11px;
	margin-top: 1px;
}

.review-card__stars {
	display: flex;
	align-items: center;
	gap: 2px;
	padding: 0 20px;
	margin-bottom: 4px;
}

.star {
	font-size: 17px;
	line-height: 1;
	display: inline-block;
}

.star--full { color: #f6bb06; }
.star--half { color: #f6bb06; }
.star--empty { color: #ccc; }

.review-card__verified {
	color: #34a853;
	width: 14px;
	height: 14px;
	display: inline-flex;
	margin-left: 4px;
	position: relative;
	top: -1px;
}

.review-card__text {
	color: #333;
	font-size: 0.8rem;
	line-height: 1.55;
	margin: 0;
	padding: 0 20px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ti-row {
	margin-top: 40px;
	background: #fff;
	border-radius: 12px;
	padding: 16px 20px;
	box-shadow: 1px 4px 10px rgba(0,0,0,.1), 0 0 2px rgba(0,0,0,.05);
	width: 100%;
	box-sizing: border-box;
}

.ti-row__bottom {
	display: flex;
	align-items: center;
	gap: 14px;
}

.ti-row__img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.ti-row__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ti-row__info {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.ti-name {
	font-weight: 700;
	font-size: 1rem;
	color: #000;
	text-decoration: none;
}

.ti-name:hover {
	text-decoration: none;
	color: #000;
}

.ti-stars {
	display: flex;
	gap: 2px;
	line-height: 1;
}

.ti-rating-text {
	font-size: 0.8rem;
	color: #555;
}

.ti-rating-text strong {
	color: #222;
}

.ti-header-write-btn-container {
	margin: 26px 0 0;
	display: flex;
	justify-content: center;
}

.reviews-footer {
	text-align: center;
	margin-top: 32px;
}

.reviews-dots {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-top: 16px;
	width: 100%;
}

.reviews-dot {
	height: 8px;
	border-radius: 9999px;
	background: var(--slate-300);
	transition: all 0.3s;
	cursor: pointer;
	border: none;
	padding: 0;
}

.reviews-dot.active { background: var(--sky-primary-dark); }

.reviews-dot { width: 8px; }

.reviews-dot:not(.active):hover { background: var(--sky-primary); }

/* ═══════════════════════════════════════
   Front Page — Why Choose Us
   ═══════════════════════════════════════ */

.why-grid {
	display: grid;
	gap: 32px;
	align-items: center;
}

@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }

.why-copy {
	min-width: auto;
}

@media (min-width: 1024px) { .why-copy { min-width: 400px; } }

.why-copy .section-header {
	text-align: left;
	margin-left: 0;
	margin-bottom: 24px;
}

.feature-list {
	margin-top: 16px;
	list-style: none;
	padding: 0;
}

.feature-item {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}

.feature-check {
	height: 24px;
	width: 24px;
	border-radius: 50%;
	background: var(--sky-primary-light);
	color: var(--sky-primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.75rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.feature-item strong {
	font-size: 0.875rem;
	color: var(--slate-800);
}

.feature-item p {
	font-size: 0.75rem;
	color: var(--slate-500);
	margin-top: 2px;
	line-height: 1.5;
}

.why-media {
	position: relative;
}

.why-media__img {
	aspect-ratio: 4/3;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(15,23,42,0.12);
}

.why-media__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.why-badge {
	display: none;
	position: absolute;
	bottom: -20px;
	left: -16px;
	background: #fff;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 20px 50px rgba(15,23,42,0.12);
	max-width: 240px;
	border: 1px solid var(--slate-100);
}

@media (min-width: 1024px) { .why-badge { display: block; left: -24px; } }

.why-badge strong {
	font-family: var(--font-display);
	font-size: 1.125rem;
	color: var(--slate-800);
}

.why-badge p {
	font-size: 0.75rem;
	color: var(--slate-500);
	margin-top: 4px;
	margin: 4px 0 0;
}

/* ═══════════════════════════════════════
   Brands — Professional Carousel
   ═══════════════════════════════════════ */

.brands {
	margin-top: 40px;
}

.brand-slide {
	flex: 0 0 calc(100% / 3);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	box-sizing: border-box;
}

@media (max-width: 639px) {
	.brand-slide { flex: 0 0 100%; padding: 6px; }
}

@media (min-width: 640px) and (max-width: 1023px) {
	.brand-slide { flex: 0 0 50%; padding: 8px; }
}

.brand-card {
	width: 100%;
	background: #fff;
	border-radius: 20px;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-card:hover {
	box-shadow: 0 12px 32px rgba(0,155,219,0.12);
	transform: translateY(-4px) scale(1.02);
}

.brand-card__img {
	width: 100%;
	max-width: 75%;
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
	display: block;
}

.brands-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-top: 24px;
}

/* ═══════════════════════════════════════
   Treatment Page — Full Design
   ═══════════════════════════════════════ */

.tp-hero {
	position: relative;
	background: var(--slate-900);
	color: #fff;
	overflow: hidden;
}

.tp-hero__bg {
	position: absolute;
	inset: 0;
}

.tp-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}

.tp-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, var(--slate-900), rgba(15,23,42,0.5), rgba(15,23,42,0.2));
}

.tp-hero__inner {
	position: relative;
	max-width: 1024px;
	margin: 0 auto;
	padding: 64px 24px 48px;
}

@media (min-width: 1024px) { .tp-hero__inner { padding: 128px 48px 96px; } }

.tp-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(226,232,240,0.8);
	margin-bottom: 16px;
}

@media (min-width: 640px) { .tp-breadcrumbs { font-size: 0.75rem; gap: 8px; } }

.tp-breadcrumbs a { color: rgba(226,232,240,0.8); text-decoration: none; }

.tp-breadcrumbs a:hover { color: #fff; }

.tp-breadcrumbs .sep { opacity: 0.6; }

.tp-breadcrumbs .current { color: var(--sky-primary-light); }

.tp-hero h1 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.1;
	max-width: 896px;
	font-size: 1.875rem;
	margin: 0;
}

@media (min-width: 1024px) { .tp-hero h1 { font-size: 3.75rem; } }

.tp-hero p {
	margin-top: 12px;
	color: var(--slate-200);
	max-width: 768px;
	font-size: 1rem;
	line-height: 1.6;
}

@media (min-width: 1024px) { .tp-hero p { font-size: 1.25rem; } }

.tp-highlights {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

@media (min-width: 640px) { .tp-highlights { gap: 16px; } }

.tp-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 9999px;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.2);
	font-size: 10px;
}

@media (min-width: 640px) { .tp-chip { font-size: 0.75rem; padding: 8px 16px; } }

.tp-chip b { font-weight: 600; }

.tp-grid {
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px 24px;
	display: grid;
	gap: 32px;
}

@media (min-width: 1024px) { .tp-grid { padding: 96px 48px; grid-template-columns: 1fr 360px; gap: 48px; } }

.tp-main section { margin-bottom: 40px; }

.tp-main h2 {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--slate-800);
	font-size: 1.5rem;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--slate-100);
	margin: 0 0 16px;
}

@media (min-width: 640px) { .tp-main h2 { font-size: 1.875rem; } }

.tp-main p {
	font-size: 0.875rem;
	color: var(--slate-600);
	line-height: 1.7;
	margin: 0;
}

.tp-activos {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.tp-activos span {
	padding: 8px 16px;
	border-radius: 12px;
	background: var(--sky-primary-light);
	color: var(--sky-primary-dark);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border: 1px solid rgba(79,169,211,0.1);
}

@media (min-width: 640px) { .tp-activos span { font-size: 0.75rem; padding: 8px 16px; } }

.tp-benefits {
	background: var(--soft-gray);
	border: 1px solid var(--slate-100);
	border-radius: 24px;
	padding: 20px;
}

@media (min-width: 640px) { .tp-benefits { padding: 32px; } }

.tp-benefits ul {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
}

.tp-benefits li {
	display: flex;
	gap: 12px;
	font-size: 0.8rem;
	color: var(--slate-700);
	margin-bottom: 16px;
	line-height: 1.6;
}

.tp-benefits li:last-child { margin-bottom: 0; }

.tp-benefits li::before {
	content: "✓";
	color: var(--emerald-500);
	font-size: 1.1rem;
	flex-shrink: 0;
}

.tp-protocol {
	margin-top: 24px;
	list-style: none;
	padding: 0;
}

.tp-protocol li {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
}

.tp-protocol li .num {
	flex-shrink: 0;
	height: 40px;
	width: 40px;
	border-radius: 12px;
	background: var(--sun-secondary-light);
	color: var(--slate-800);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.125rem;
	transition: all 0.3s;
}

.tp-protocol li:hover .num {
	background: var(--sky-primary);
	color: #fff;
}

.tp-protocol li p {
	font-size: 0.8rem;
	color: var(--slate-700);
	padding-top: 8px;
	line-height: 1.6;
	margin: 0;
}

.tp-protocol-note {
	font-size: 11px;
	color: var(--slate-500);
	font-style: italic;
	margin-top: 8px;
}

.tp-tipos {
	display: grid;
	gap: 16px;
	margin-top: 16px;
}

@media (min-width: 640px) {
	.tp-tipos { grid-template-columns: repeat(2, 1fr); }
}

.tp-tipo-card {
	background: #fff;
	border: 1px solid var(--slate-200);
	border-radius: 12px;
	padding: 20px;
	transition: box-shadow 0.2s, border-color 0.2s;
}

.tp-tipo-card:hover {
	border-color: var(--sky-primary-light);
	box-shadow: 0 4px 20px rgba(0,155,219,0.08);
}

.tp-tipo-card h4 {
	font-family: var(--font-display);
	font-size: 1.125rem;
	color: var(--contrast);
	margin: 0 0 6px;
	line-height: 1.3;
}

.tp-tipo-card p {
	font-size: 0.8rem;
	color: var(--slate-600);
	line-height: 1.6;
	margin: 0 0 12px;
}

.tp-tipo-card .tp-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.75rem;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--sky-primary-light);
	color: var(--sky-primary-dark);
	font-weight: 600;
	border: none;
}

.tp-seo {
	font-size: 0.8rem;
	color: var(--slate-600);
	line-height: 1.7;
	margin-top: 16px;
}

.tp-seo p { margin-bottom: 16px; }

.tp-seo p:last-child { margin-bottom: 0; }

.tp-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 0.8rem;
}
.tp-table th {
	background: var(--sky-primary);
	color: #fff;
	padding: 10px 12px;
	text-align: left;
	font-weight: 600;
}
.tp-table td {
	padding: 10px 12px;
	border-bottom: 1px solid var(--slate-100);
	vertical-align: top;
}
.tp-table tr:nth-child(even) td {
	background: var(--slate-100);
}
.tp-table-protocol td:first-child {
	font-weight: 700;
	color: var(--sky-primary-dark);
	width: 60px;
	text-align: center;
}
.tp-analysis {
	background: var(--sky-primary-light);
	border-left: 4px solid var(--sky-primary);
	border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
	padding: 20px;
	margin: 24px 0;
	font-size: 0.8rem;
	line-height: 1.7;
}
.tp-analysis p:last-child { margin-bottom: 0; }
.tp-disclaimer {
	font-size: 0.7rem;
	font-style: italic;
	color: var(--slate-400);
	margin-top: 12px;
}
.tp-seo h3 {
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--slate-800);
	margin: 32px 0 12px;
}

.tp-seo[data-collapsible] {
	position: relative;
}

.tp-seo[data-collapsible] .tp-seo__inner {
	max-height: none;
	overflow: visible;
}

@media (max-width: 767px) {
	.tp-seo[data-collapsible]:not(.expanded) .tp-seo__inner {
		max-height: 200px;
		overflow: hidden;
	}

	.tp-seo[data-collapsible]:not(.expanded)::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 60px;
		background: linear-gradient(transparent, #fff);
		pointer-events: none;
	}
}

.tp-seo__toggle {
	display: none;
	margin-top: 8px;
	background: none;
	border: none;
	color: var(--sky-primary-dark);
	font-weight: 600;
	font-size: 0.8rem;
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 2px;
}

@media (max-width: 767px) {
	.tp-seo__toggle { display: inline-block; }
}

.tp-seo__toggle:hover {
	color: var(--sky-primary);
}

.tp-aside {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (min-width: 1024px) {
	.tp-aside { position: sticky; top: 32px; align-self: start; }
}

.tp-aside__card {
	position: relative;
	background: #fff;
	border: 1px solid var(--slate-100);
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 8px 24px rgba(241,245,249,0.5);
}

.tp-aside__card .carousel-arrow--prev { left: -18px; }
.tp-aside__card .carousel-arrow--next { right: -18px; }

@media (min-width: 640px) {
	.tp-aside__card { padding: 32px; }
}

.tp-aside__card h3 {
	font-family: var(--font-display);
	font-size: 1.375rem;
	color: var(--slate-800);
	margin: 0 0 16px;
	font-weight: 600;
}

.tp-aside__related h3 {
	font-size: 1.5rem;
	margin: 0 0 16px;
}

.tp-aside__social-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tp-aside__social-header h3 {
	margin: 0;
}

.tp-aside__social-links {
	display: flex;
	gap: 12px;
}

.tp-aside__social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--soft-gray);
	color: var(--slate-500);
	transition: all 0.2s;
}

.tp-aside__social-links a:hover {
	transform: translateY(-2px);
}

.tp-aside__social-links a[aria-label="WhatsApp"]:hover { background: #25D366; color: #fff; }
.tp-aside__social-links a[aria-label="Facebook"]:hover { background: #1877F2; color: #fff; }
.tp-aside__social-links a[aria-label="Instagram"]:hover { background: #E1306C; color: #fff; }

.tp-aside__related ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tp-aside__related li + li {
	border-top: 1px solid var(--slate-100);
}

.tp-aside__related li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 14px 0;
	text-decoration: none;
	transition: all 0.2s;
}

.tp-aside__related li:first-child a { padding-top: 0; }
.tp-aside__related li:last-child a { padding-bottom: 0; }

.tp-aside__related li a:hover {
	padding-left: 8px;
}

.tp-aside__rel-title {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--slate-700);
	line-height: 1.4;
	transition: color 0.2s;
}

.tp-aside__related li a:hover .tp-aside__rel-title {
	color: var(--sky-primary-dark);
}

.tp-aside__rel-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	flex-shrink: 0;
	font-size: 0.7rem;
	color: var(--slate-400);
}

.tp-aside__rel-meta span:last-child {
	font-weight: 600;
	color: var(--sky-primary-dark);
	font-size: 0.75rem;
}

/* Booking form */
.booking {
	background: #fff;
	border: 1px solid var(--slate-100);
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 8px 24px rgba(241,245,249,0.5);
}

@media (min-width: 640px) { .booking { padding: 32px; } }

.booking h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--slate-800);
	margin: 0;
}

@media (min-width: 640px) { .booking h3 { font-size: 1.875rem; } }

.booking > p {
	font-size: 11px;
	color: var(--slate-500);
	margin: 8px 0 24px;
}

.field { margin-bottom: 16px; }

.field label {
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--slate-500);
	font-weight: 700;
	margin-bottom: 6px;
}

.field input, .field select, .field textarea {
	width: 100%;
	padding: 10px 16px;
	border: 1px solid var(--slate-200);
	border-radius: 12px;
	background: #fff;
	font-size: 0.8rem;
	color: var(--slate-700);
	font-family: inherit;
	transition: all 0.3s;
}

.field input:focus, .field select:focus, .field textarea:focus {
	outline: none;
	border-color: transparent;
	box-shadow: 0 0 0 2px var(--sky-primary);
}

.field textarea { resize: none; min-height: 80px; }

.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}


/* ═══════════════════════════════════════
   Contact Page
   ═══════════════════════════════════════ */

.page-hero {
	background: linear-gradient(135deg, var(--sky-primary-light) 0%, #fff 50%, var(--sun-secondary-light) 100%);
	padding: 64px 0;
	border-bottom: 1px solid var(--slate-100);
}

@media (min-width: 1024px) { .page-hero { padding: 96px 0; } }

.page-hero h1 {
	font-family: var(--font-display);
	font-size: 2.25rem;
	font-weight: 600;
	color: var(--slate-800);
	margin: 0;
}

@media (min-width: 640px) { .page-hero h1 { font-size: 3rem; } }

@media (min-width: 1024px) { .page-hero h1 { font-size: 3.75rem; } }

.page-hero p {
	color: var(--slate-600);
	margin: 16px auto 0;
	max-width: 576px;
	font-size: 1.125rem;
}

.page-hero--with-bg {
	position: relative;
	overflow: hidden;
	padding-top: 40px;
	padding-bottom: 40px;
}

@media (min-width: 1024px) {
	.page-hero--with-bg {
		padding-top: 72px;
		padding-bottom: 72px;
	}
}

.page-hero__bg {
	position: absolute;
	inset: 0;
}

.page-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.12;
}

.page-hero__bg img[src*="beldad-coccon-facial"] {
	object-position: center 25%;
}

.page-hero__bg img[src*="beldad-acne"] {
	object-position: center 75%;
}

.page-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(255,255,255,0.15), transparent);
}

.page-hero .tp-chip {
	background: rgba(0,0,0,0.05);
	border-color: rgba(0,0,0,0.1);
	color: var(--slate-700);
	backdrop-filter: none;
}

.page-hero .tp-chip b {
	color: var(--slate-800);
}

.page-hero .tp-chip[style*="sky-primary-dark"] {
	background: var(--sky-primary);
	border-color: var(--sky-primary);
}

.contact-grid {
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 24px;
	display: grid;
	gap: 32px;
}

@media (min-width: 1024px) { .contact-grid { padding: 96px 48px; grid-template-columns: 7fr 3fr; gap: 32px; align-items: stretch; } }

.contact-info {
	background: #fff;
	border: 1px solid var(--slate-100);
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.contact-info h2 {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 600;
	color: var(--slate-800);
	margin: 0;
}

@media (min-width: 640px) { .contact-info h2 { font-size: 1.875rem; } }


.contact-info__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 24px;
}

@media (max-width: 480px) { .contact-info__grid { grid-template-columns: 1fr; } }

.contact-card-item {
	display: flex;
	gap: 16px;
}

.contact-card-item__icon {
	height: 40px;
	width: 40px;
	border-radius: 12px;
	background: var(--sky-primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.contact-card-item h3 {
	font-weight: 600;
	color: var(--slate-800);
	font-size: 0.875rem;
	margin: 0;
}

.contact-card-item p {
	font-size: 0.75rem;
	color: var(--slate-600);
	margin-top: 2px;
}

.contact-map {
	margin-top: 32px;
	background: var(--sky-primary-light);
	border: 1px solid rgba(124,196,232,0.1);
	border-radius: 24px;
	padding: 24px;
	aspect-ratio: 16/9;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.map-pin {
	background: #fff;
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 8px 24px rgba(15,23,42,0.08);
	max-width: 288px;
	align-self: flex-start;
}

.map-pin strong {
	font-size: 0.875rem;
	color: var(--slate-800);
}

.map-pin p {
	font-size: 11px;
	color: var(--slate-500);
	margin-top: 4px;
}

/* Título de cards de contacto (mismo formato en todas) */
.contact-card-title {
	margin: 0 0 16px;
	font-family: var(--font-display);
	font-size: 1.375rem;
	color: var(--slate-800);
	font-weight: 600;
}

/* Mapa de contacto (no interactivo) */
.contact-map-wrap {
	position: relative;
	width: 100%;
}

.contact-map-iframe {
	width: 100%;
	height: 420px;
	border: 0;
	display: block;
	pointer-events: none;
}

.contact-map-leaflet {
	width: 100%;
	height: 420px;
	border: 0;
	display: block;
	pointer-events: none;
	background: var(--slate-100);
}

.contact-map-leaflet .leaflet-marker-icon {
	pointer-events: none;
}

.contact-map-overlay {
	position: absolute;
	inset: 0;
	background: transparent;
	cursor: default;
	z-index: 400;
}

.contact-map-card {
	position: absolute;
	bottom: 24px;
	left: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border-radius: 14px;
	padding: 12px 16px 12px 12px;
	box-shadow: 0 6px 24px rgba(15, 23, 42, 0.14);
	max-width: 320px;
	font-family: var(--font-sans);
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
	z-index: 500;
}

.contact-map-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 32px rgba(15, 23, 42, 0.2);
}

.contact-map-card__icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.contact-map-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}

.contact-map-card__body {
	display: flex;
	flex-direction: column;
}

.contact-map-card__name {
	display: block;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--slate-800);
	line-height: 1.3;
}

.contact-map-card__addr {
	display: block;
	font-size: 0.75rem;
	color: var(--slate-500);
	margin-top: 2px;
	line-height: 1.4;
}

@media (max-width: 480px) {
	.contact-map-iframe,
	.contact-map-leaflet { height: 320px; }
	.contact-map-card {
		bottom: 16px;
		left: 16px;
		right: 16px;
		max-width: none;
	}
}

/* ═══════════════════════════════════════
   Booking Form
   ═══════════════════════════════════════ */

.booking { position: relative; padding: 32px; border-radius: 24px; background: #fff; border: 1px solid var(--slate-100); box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.booking h3 { font-family: var(--font-display); font-size: 1.375rem; font-weight: 600; color: var(--slate-800); margin: 0 0 4px; }
.booking > p { font-size: 0.8125rem; color: var(--slate-500); margin: 0 0 24px; }

.booking__bg {
	position: absolute; top: 0; right: 0; width: 96px; height: 96px;
	border-radius: 50%; background: rgba(124,196,232,0.1);
	filter: blur(24px); pointer-events: none;
}
.booking__bg::after {
	content: ""; position: absolute; bottom: -80px; left: -120px;
	width: 80px; height: 80px; border-radius: 50%;
	background: rgba(255,233,163,0.2); filter: blur(32px);
}
.booking__success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.booking__success h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: #065f46; margin: 0; }
.booking__success p { font-size: 11px; color: #047857; margin: 8px auto 0; max-width: 288px; }
.booking__disclaimer { font-size: 11px; color: var(--slate-400); margin: 16px 0 0; text-align: center; }

.on3form-nav { display: flex; flex-direction: column; }
.on3form-submit { width: 100%; }

.wpcf7-form label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--slate-600);
	margin-bottom: 4px;
}
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--slate-200);
	border-radius: 12px;
	font-size: 0.875rem;
	font-family: var(--font-sans);
	background: #fff;
	transition: border-color 0.2s;
	margin-bottom: 16px;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--sky-primary);
}
.wpcf7-form .wpcf7-submit {
	width: 100%;
	background: var(--sky-primary-dark);
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 12px 24px;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}
.wpcf7-form .wpcf7-submit:hover {
	background: var(--sky-primary);
}
.wpcf7-form .wpcf7-response-output {
	font-size: 0.75rem;
	border-radius: 12px;
	padding: 12px 16px;
	margin: 16px 0 0;
}
.wpcf7-form .wpcf7-not-valid-tip {
	font-size: 0.7rem;
	color: #dc2626;
	margin-top: -12px;
	margin-bottom: 12px;
}

.booking__social {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}
.booking__social-label {
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--slate-400);
	letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════
   Blog Archive & Single
   ═══════════════════════════════════════ */

.blog-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-full-card {
	background: #fff;
	border: 1px solid var(--slate-100);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
	transition: all 0.3s;
	text-decoration: none;
	color: inherit;
	display: block;
}

.blog-full-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	opacity: 1;
}

.blog-full-card__img {
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
}

.blog-full-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.blog-full-card:hover .blog-full-card__img img { transform: scale(1.05); }

.blog-full-card__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(255,255,255,0.95);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--sky-primary-dark);
}

.blog-full-card__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
}

.blog-full-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--slate-400);
	margin-bottom: 12px;
}

.blog-full-card h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--slate-800);
	line-height: 1.2;
	margin: 0;
}

.blog-full-card:hover h3 { color: var(--sky-primary-dark); }

.blog-full-card p {
	font-size: 0.875rem;
	color: var(--slate-600);
	margin: 8px 0 0;
	line-height: 1.6;
	flex: 1;
}

.blog-full-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--slate-100);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--sky-primary-dark);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: gap 0.3s;
}

.blog-full-card:hover .blog-full-card__link { gap: 10px; }

.blog-full-card__link svg { transition: transform 0.3s; }

.blog-full-card:hover .blog-full-card__link svg { transform: translateX(2px); }

.blog-article {
	max-width: 768px;
	margin: 0 auto;
	padding: 64px 24px;
}

@media (min-width: 1024px) { .blog-article { padding: 96px 48px; } }

.blog-article__back {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--sky-primary-dark);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	text-decoration: none;
}

.blog-article__back:hover { gap: 12px; opacity: 1; }

.blog-article h1 {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 600;
	color: var(--slate-800);
	line-height: 1.2;
	margin: 0;
}

@media (min-width: 1024px) { .blog-article h1 { font-size: 3rem; } }

.blog-article__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
	color: var(--slate-500);
	margin-top: 20px;
	flex-wrap: wrap;
}

.blog-article__author {
	font-size: 0.875rem;
	color: var(--slate-500);
	font-style: italic;
	margin-top: 12px;
}

.blog-article__img {
	aspect-ratio: 16/9;
	border-radius: 24px;
	overflow: hidden;
	margin: 32px 0;
}

.blog-article__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #f8f5f0;
}

.blog-article__body p {
	font-size: 0.875rem;
	color: var(--slate-600);
	line-height: 1.8;
	margin-bottom: 24px;
}

.blog-article__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 24px;
	border-top: 1px solid var(--slate-100);
	margin-top: 32px;
}

.blog-article__tags span {
	padding: 4px 12px;
	background: var(--soft-gray);
	border-radius: 8px;
	font-size: 11px;
	color: var(--slate-500);
	font-weight: 500;
}

.blog-related-title {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--slate-800);
	text-align: center;
	margin: 0 0 32px;
}

/* ═══════════════════════════════════════
   Pagination
   ═══════════════════════════════════════ */

.pagination,
.wp-block-query-pagination {
	margin-top: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.pagination .page-numbers,
.wp-block-query-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 12px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	transition: all 0.2s;
}

.pagination .page-numbers.current,
.wp-block-query-pagination .page-numbers.current {
	background: var(--sky-primary-light);
	color: var(--sky-primary-dark);
}

.pagination a.page-numbers:hover,
.wp-block-query-pagination a.page-numbers:hover {
	background: var(--soft-gray);
}

.pagination .prev,
.pagination .next,
.wp-block-query-pagination .prev,
.wp-block-query-pagination .next {
	font-size: 0.8125rem;
	gap: 4px;
}

/* ═══════════════════════════════════════
   Legal Pages
   ═══════════════════════════════════════ */

.legal {
	max-width: 896px;
	margin: 0 auto;
	padding: 64px 24px;
	color: var(--slate-700);
}

@media (min-width: 1024px) { .legal { padding: 96px 48px; } }

.legal h1 {
	font-family: var(--font-display);
	font-size: 2.25rem;
	font-weight: 600;
	color: var(--slate-800);
	padding-bottom: 24px;
	border-bottom: 1px solid var(--slate-100);
	margin: 0;
}

@media (min-width: 1024px) { .legal h1 { font-size: 3rem; } }

.legal .updated {
	font-size: 11px;
	color: var(--slate-400);
	margin-top: 8px;
}

.legal section { margin-top: 32px; }

.legal h2 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--slate-800);
	margin-bottom: 16px;
}

.legal p {
	font-size: 0.875rem;
	line-height: 1.7;
	margin-bottom: 12px;
}

.legal ul {
	margin: 12px 0 16px 20px;
}

.legal ul li {
	font-size: 0.875rem;
	line-height: 1.7;
	list-style: disc;
	margin-bottom: 6px;
}

.legal a {
	color: var(--sky-primary-dark);
}

.legal a:hover { text-decoration: underline; }

.legal-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 0.8125rem;
}
.legal-table th {
	background: var(--sky-primary);
	color: #fff;
	padding: 10px 14px;
	text-align: left;
	font-weight: 600;
}
.legal-table td {
	padding: 10px 14px;
	border-bottom: 1px solid var(--slate-100);
	vertical-align: top;
}
.legal-table tr:nth-child(even) td {
	background: var(--slate-100);
}

/* ═══════════════════════════════════════
   Accessibility
   ═══════════════════════════════════════ */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: var(--sky-primary-dark);
	border-radius: 4px;
	clip: auto !important;
	clip-path: none;
	color: #fff;
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	height: auto;
	left: 4px;
	padding: 12px 16px;
	text-decoration: none;
	top: 4px;
	width: auto;
	z-index: 100000;
}

:focus-visible {
	outline: 2px solid var(--sky-primary-dark);
	outline-offset: 2px;
	border-radius: 4px;
}

:focus:not(:focus-visible) { outline: none; }

/* ═══════════════════════════════════════
   Reduced motion
   ═══════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ═══════════════════════════════════════
   Touch targets
   ═══════════════════════════════════════ */

@media (pointer: coarse) {
	button, a, [role="button"] { min-height: 24px; min-width: 44px; }
}

.sidebar__contact-social-link,
.mobile-toggle,
.carousel-arrow,
.tp-aside__social-links a,
.pagination .page-numbers,
.wp-block-query-pagination .page-numbers { min-width: 0; min-height: 0; }

.blog-dot, .reviews-dot, .carousel-dot {
	min-height: 0;
	min-width: 0;
}

/* ═══════════════════════════════════════
   Animations
   ═══════════════════════════════════════ */

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

.animate-fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }

/* ═══════════════════════════════════════
   Print
   ═══════════════════════════════════════ */

@media print {
	nav, aside, .no-print, .cookie-banner { display: none !important; }
	body { color: #000; background: #fff; }
}

/* ═══════════════════════════════════════
   Utility classes
   ═══════════════════════════════════════ */

.text-left { text-align: left; }
.flex-wrap { flex-wrap: wrap; }
.gap-8 { gap: 8px; }
.mt-24 { margin-top: 24px; }

.max-w-640 { max-width: 640px; }
.max-w-700 { max-width: 700px; }
.py-1\.5 {
	padding-block: calc(var(--spacing) * 1.5);
}
.px-2 {
	padding-inline: calc(var(--spacing) * 2);
}
.rounded-lg {
	border-radius: var(--radius-lg);
}


/* ═══════════════════════════════════════
   Breadcrumbs
   ═══════════════════════════════════════ */

.breadcrumbs {
	background: var(--soft-gray);
	border-bottom: 1px solid rgba(0,0,0,0.04);
	padding: 12px 0;
}

.breadcrumbs ol {
	white-space: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumbs ol::-webkit-scrollbar { display: none; }

.breadcrumbs li {
	display: inline;
	font-size: 0.8125rem;
	color: var(--slate-500);
}

.breadcrumbs .sep {
	display: inline;
	margin: 0 8px;
	color: var(--slate-300);
	font-size: 1.15em;
}

@media (max-width: 767px) {
	.breadcrumbs { padding: 10px 0; }
	.breadcrumbs .wrapper { padding: 0 16px; }
	.breadcrumbs li { font-size: 0.75rem; }
	.breadcrumbs .sep { margin: 0 6px; font-size: 1em; }
}

.breadcrumbs a {
	color: var(--slate-500);
	text-decoration: none;
	transition: color 0.2s;
}

.breadcrumbs a:hover {
	color: var(--sky-primary-dark);
}

.breadcrumbs .current {
	color: var(--slate-800);
	font-weight: 500;
}

/* ═══════════════════════════════════════
   404 Error
   ═══════════════════════════════════════ */

.error-404 {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 0;
}

.error-404__code {
	font-family: var(--font-display);
	font-size: clamp(5rem, 15vw, 10rem);
	font-weight: 700;
	line-height: 1;
	color: var(--sky-primary-light);
	display: block;
	margin-bottom: 8px;
	user-select: none;
}

.error-404__title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 4vw, 2rem);
	color: var(--slate-800);
	margin: 0 0 12px;
	font-weight: 600;
}

.error-404__desc {
	font-size: 0.9rem;
	color: var(--warm-gray);
	max-width: 440px;
	margin: 0 auto 32px;
	line-height: 1.6;
}

.error-404__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.error-404__btn {
	display: inline-flex;
	align-items: center;
	padding: 14px 28px;
	border-radius: 100px;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s ease;
}

.error-404__btn--primary {
	background: var(--sky-primary);
	color: #fff;
}

.error-404__btn--primary:hover {
	background: var(--sky-primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0,155,219,0.3);
}

.error-404__btn--secondary {
	background: var(--soft-gray);
	color: var(--slate-600);
}

.error-404__btn--secondary:hover {
	background: var(--slate-200);
	color: var(--slate-800);
	transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   Scrollbar
   ═══════════════════════════════════════ */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #c9dce7; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sky-primary); }

.tp-related-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 48px;
}

.tp-related-row--single {
	grid-template-columns: 1fr;
}

@media (max-width: 767px) {
	.tp-related-row { grid-template-columns: 1fr; }
}

.tp-related-col .tp-aside__card {
	height: 100%;
	box-sizing: border-box;
}

/* ─── ON3FORM inline errors ─── */

.on3form-error {
	display: block;
	color: #d32f2f;
	font-size: 0.8125rem;
	line-height: 1.3;
	margin-top: 4px;
	font-family: var(--wp--preset--font-family--sans);
}

.on3form-invalid {
	border-color: #d32f2f !important;
	outline-color: #d32f2f !important;
}

.on3form-field {
	position: relative;
}
