@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
	--ylb-blue: #1d4ed8;
	--ylb-blue-dark: #1e40af;
	--ylb-bg: #ffffff;
	--ylb-text: #0a1628;
	--ylb-gray: #64748b;
	--ylb-border: #e2e8f0;
	--ylb-radius: 16px;
	--zp-soft: #e8f1ff;
	--zp-soft-2: #f0f6ff;
	/* Elevación común: relieve muy sutil + profundidad (separa cards entre sí) */
	--zp-card-elev-shadow:
		0 1px 0 rgba(255, 255, 255, 0.82) inset,
		0 1px 2px rgba(15, 23, 42, 0.038),
		0 4px 12px rgba(15, 23, 42, 0.052),
		0 12px 28px rgba(15, 23, 42, 0.042);
	/* PRO: halo cálido muy suave (marketplace 2026; sin marco dorado pesado) */
	--zp-pro-card-border: rgba(226, 232, 240, 0.98);
	--zp-pro-card-border-strong: rgba(253, 224, 71, 0.22);
	--zp-pro-card-glow: rgba(251, 191, 36, 0.1);
	--zp-pro-card-halo: rgba(245, 158, 11, 0.11);
	--zp-pro-card-shadow:
		var(--zp-card-elev-shadow),
		0 0 0 1px rgba(255, 255, 255, 0.65) inset,
		0 0 1px rgba(245, 158, 11, 0.12),
		0 8px 32px rgba(245, 158, 11, 0.07),
		0 18px 44px rgba(15, 23, 42, 0.045);
	--zp-pro-card-shadow-strong:
		var(--zp-card-elev-shadow),
		0 0 0 1px rgba(255, 255, 255, 0.55) inset,
		0 0 1px rgba(245, 158, 11, 0.18),
		0 10px 40px rgba(245, 158, 11, 0.09),
		0 22px 52px rgba(15, 23, 42, 0.05);
	/* Badge PRO — ref. solicitudes (.yrl-pro-badge) */
	--zp-pro-badge-bg: linear-gradient(135deg, #fbbf24 0%, #ea580c 100%);
	--zp-pro-badge-color: #fff;
	--zp-pro-badge-shadow: 0 2px 6px rgba(234, 88, 12, 0.25);
	--zp-pro-badge-weight: 800;
	--zp-pro-badge-tracking: 0.08em;
}

body {
	font-family: Inter, sans-serif;
	background: #fff;
	color: var(--ylb-text);
}

.ylb-card {
	border-radius: var(--ylb-radius);
	border: 1px solid var(--ylb-border);
	padding: 14px;
	background: #fff;
	box-shadow: var(--zp-card-elev-shadow);
}

.ylb-btn-primary {
	background: var(--ylb-blue);
	color: #fff;
	border-radius: 12px;
	padding: 12px 16px;
	font-weight: 600;
}

.ylb-btn-secondary {
	border: 1px solid var(--ylb-border);
	border-radius: 12px;
	padding: 10px 14px;
}

.ylb-hero {
	padding: 40px 20px;
}

.ylb-hero h1 {
	font-size: 28px;
	font-weight: 700;
}

.ylb-service-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ylb-service-card--pro {
	border-radius: var(--ylb-radius);
	border: 1px solid var(--zp-pro-card-border);
	box-shadow: var(--zp-pro-card-shadow);
}

/* Listados móvil (loop place) */
.place-wrapper--pro {
	border-radius: 14px;
	border: 1px solid var(--zp-pro-card-border);
	box-shadow: var(--zp-pro-card-shadow);
	padding: 0;
	box-sizing: border-box;
}

/* Listados búsqueda / mapa: misma elevación base; PRO suma halo */
.zp-sl-card:not(.zp-sl-card--pro) {
	box-shadow: var(--zp-card-elev-shadow);
}

.zp-sl-card.zp-sl-card--pro:not(.zp-sl-card--app) {
	border-color: var(--zp-pro-card-border);
	box-shadow: var(--zp-pro-card-shadow);
}

.zp-sl-card.zp-sl-card--app.zp-sl-card--pro {
	border-color: var(--zp-pro-card-border-strong);
	box-shadow: var(--zp-pro-card-shadow-strong);
}

/* Thumbnails listado/mapa: rellenan el avatar (evita bandas con placeholder) */
.zp-sl-card .zp-sl-card__imglink {
	line-height: 0;
}

.zp-sl-card .zp-sl-card__imglink img {
	object-fit: cover;
	object-position: center center;
}

.zp-sl-card .zp-sl-card__imglink img.zp-place-img--placeholder,
.zp-sl-card .zp-sl-card__thumb.zp-place-img--placeholder {
	object-fit: cover;
	object-position: center center;
	padding: 0;
	background: #f1f5f9;
}

.ylb-service-card img {
	border-radius: 12px;
}

/* ========== Zippyn 2026 homepage (mockup-aligned, YoLaburo logo) ========== */
.zp-home--2026 {
	overflow-x: hidden;
	color: var(--ylb-text);
}

.zp-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Header */
.zp-header--2026 {
	background: #fff;
	border-bottom: 1px solid #e8ecf1;
	position: sticky;
	top: 0;
	z-index: 100;
}

.zp-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 72px;
}

.zp-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
}

/* Logo: explicit selectors so parent / mobile.css does not shrink it */
.zp-home--2026 .zp-logo img,
.zp-home--2026 .zp-logo-img {
	max-height: 48px !important;
	width: auto !important;
	height: auto !important;
	max-width: 260px !important;
	display: block;
	object-fit: contain;
}

.zp-home--py .zp-logo img {
	max-height: 48px !important;
	width: auto !important;
	height: auto !important;
}

.zp-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	flex: 1;
	justify-content: center;
	font-weight: 500;
	font-size: 15px;
}

.zp-nav a {
	color: var(--ylb-text);
	text-decoration: none;
}

.zp-nav a:hover {
	color: var(--ylb-blue);
}

.zp-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.zp-header__actions--dual {
	gap: 14px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.zp-btn--ghost {
	background: #fff;
	color: var(--ylb-text) !important;
	border: 1px solid var(--ylb-border);
	box-shadow: none;
}

.zp-btn--ghost:hover {
	border-color: var(--ylb-blue);
	color: var(--ylb-blue) !important;
	background: #f8fafc;
}

.zp-btn--header-secondary {
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 600;
}

.zp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 600;
	border-radius: 10px;
	text-decoration: none;
	transition: background 0.15s, box-shadow 0.15s;
}

.zp-btn--primary {
	background: var(--ylb-blue);
	color: #fff !important;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0, 85, 255, 0.28);
}

.zp-btn--primary:hover {
	background: var(--ylb-blue-dark);
	color: #fff !important;
}

.zp-btn--header {
	padding: 12px 22px;
	font-size: 14px;
}

.zp-btn--lg {
	padding: 14px 28px;
	font-size: 15px;
}

.zp-icon-btn {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid var(--ylb-border);
	color: var(--ylb-text);
	text-decoration: none;
	background: #fff;
}

.zp-icon-btn:hover {
	border-color: var(--ylb-blue);
	color: var(--ylb-blue);
}

/* Hero */
.zp-hero--2026 {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 72px 0 88px;
	text-align: center;
}

.zp-hero__scrim {
	position: absolute;
	inset: 0;
	background: rgba(10, 22, 40, 0.55);
	backdrop-filter: blur(6px);
}

.zp-hero__inner {
	position: relative;
	z-index: 1;
}

.zp-hero__title {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	color: #fff;
	line-height: 1.12;
	margin: 0 0 16px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.zp-hero__accent {
	color: #7eb8ff;
}

.zp-hero__lead {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.92);
	max-width: 560px;
	margin: 0 auto 32px;
	line-height: 1.45;
}

/* Search bar (white pill) */
.zp-search-panel--2026 {
	background: #fff;
	border-radius: 14px;
	padding: 10px 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
	max-width: 920px;
	margin: 0 auto;
	border: none;
}

.zp-search-bar {
	display: flex;
	align-items: stretch;
	gap: 0;
	flex-wrap: nowrap;
}

.zp-search-field {
	flex: 1;
	min-width: 0;
	text-align: left;
	padding: 8px 16px;
	border-right: 1px solid #e8ecf1;
}

.zp-search-field:last-child,
.zp-search-field--submit {
	border-right: none;
	flex: 0 0 auto;
}

.zp-search-field__label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--ylb-gray);
	margin-bottom: 6px;
}

.zp-search-field__label--ghost {
	opacity: 0;
}

.zp-search-field__control {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
}

.zp-search-field__icon {
	color: var(--ylb-blue);
	font-size: 18px;
	width: 22px;
	text-align: center;
}

.zp-search-field__control .chosen-container {
	flex: 1;
	min-width: 0;
}

.zp-search-field__control--location {
	gap: 8px;
	align-items: stretch;
}

.zp-search-field__control--location .zp-input {
	min-width: 0;
}

.zp-location-btn {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 1px solid #dbe4f0;
	border-radius: 10px;
	background: #f0f6ff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.15s, background 0.15s;
}

.zp-location-btn:hover {
	border-color: var(--ylb-blue);
	background: #e0edff;
}

.zp-location-btn:focus {
	outline: 2px solid var(--ylb-blue);
	outline-offset: 2px;
}

.zp-search-field--submit {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 8px 8px 8px 12px;
}

.zp-btn--search {
	min-height: 52px;
	padding: 0 28px !important;
	font-size: 16px !important;
	border-radius: 10px !important;
	white-space: nowrap;
}

.zp-home--2026 .zp-search-panel--2026 #search_address_search.zp-input {
	flex: 1;
	border: none !important;
	box-shadow: none !important;
	padding: 8px 4px !important;
	font-size: 16px;
	min-height: auto;
	background: transparent;
}

.zp-home--2026 .zp-search-panel--2026 #search_address_search.zp-input:focus {
	box-shadow: none !important;
	outline: none;
}

.zp-home--2026 .zp-search-panel--2026 .chosen-container-single .chosen-single {
	border: none !important;
	box-shadow: none !important;
	background: transparent !important;
	min-height: 44px !important;
	line-height: 44px !important;
	padding: 0 8px 0 0 !important;
	font-size: 16px !important;
}

.zp-home--2026 .zp-search-panel--2026 .chosen-container-active .chosen-single {
	box-shadow: none !important;
}

.zp-home--2026 .zp-search-panel--2026 .chosen-drop {
	border-radius: 10px;
	margin-top: 4px;
}

/* Trust strip */
.zp-trust-strip {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 28px 36px;
	color: rgba(255, 255, 255, 0.95);
	font-size: 14px;
	font-weight: 500;
}

.zp-trust-strip i {
	margin-right: 8px;
	color: #7eb8ff;
}

/* Categories */
.zp-section {
	margin-top: 56px;
}

.zp-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 20px;
}

.zp-section-head h2 {
	margin: 0;
	font-size: 26px;
	font-weight: 800;
}

.zp-link-all {
	color: var(--ylb-blue);
	font-weight: 600;
	text-decoration: none;
	font-size: 15px;
}

.zp-link-all:hover {
	text-decoration: underline;
}

.zp-category-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 14px;
}

.zp-category-card {
	background: #fff;
	border: 1px solid var(--ylb-border);
	border-radius: 12px;
	padding: 14px 8px 12px;
	text-align: center;
	text-decoration: none;
	color: var(--ylb-text);
	box-shadow: var(--zp-card-elev-shadow);
	transition: border-color 0.15s, box-shadow 0.15s;
}

.zp-category-card:hover {
	border-color: var(--ylb-blue);
	box-shadow: 0 6px 20px rgba(0, 85, 255, 0.12);
}

.zp-category-card__icon {
	display: block;
	font-size: 26px;
	line-height: 1;
	margin-bottom: 6px;
	filter: grayscale(0.2);
}

.zp-category-card__label {
	font-weight: 600;
	font-size: 12.5px;
	line-height: 1.25;
}

/* Customer request CTA (secondary to search) */
.zp-customer-cta {
	margin-top: 40px;
}

.zp-customer-cta__card {
	background: linear-gradient(160deg, #e8f2ff 0%, #dbeafe 55%, #eff6ff 100%);
	border: 1px solid rgba(59, 130, 246, 0.18);
	border-radius: 18px;
	padding: 24px 22px 26px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
	max-width: 640px;
	margin: 0 auto;
}

.zp-customer-cta__title {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 800;
	color: var(--ylb-text);
	line-height: 1.25;
}

.zp-customer-cta__text {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(15, 23, 42, 0.78);
}

.zp-customer-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding-left: 22px;
	padding-right: 22px;
}

.zp-section-head--stack {
	display: block;
	margin-bottom: 16px;
}

.zp-section-sub {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.45;
	color: rgba(15, 23, 42, 0.65);
	max-width: 42rem;
}

.zp-section-hint {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.45;
	color: rgba(15, 23, 42, 0.62);
	max-width: 42rem;
}

.zp-location-hint {
	margin: 0 0 10px;
	padding: 10px 14px;
	background: #f0f7ff;
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	color: #1e40af;
	max-width: 42rem;
}

/* Featured cards */
.zp-section-title {
	font-size: 26px;
	font-weight: 800;
	margin: 0 0 20px;
}

.zp-section-title.zp-section-title--featured {
	margin: 0 0 8px;
}

.zp-section--pro-carousel {
	margin-top: 8px;
}

.zp-section-title--pro-carousel {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	row-gap: 6px;
}

/* ── Badge PRO unificado (ref. solicitudes / yrl-pro-badge) ── */
.zp-pro-badge,
.yrl-pro-badge,
.yrl-btn--ver-contacto__badge,
.zp-section-pro-badge,
.zp-card-pro-badge,
.zp-sl-card__rec-badge,
.zp-sl-card__badge--rec.zp-card-pro-badge,
.zp-ally-card__badge,
.zp-sp26-pro-badge,
.zp-profile-dash__chip--pro,
.zp-allied-brands__pro-badge,
.zp-pshare-story__pro,
.zp-sl-card__pro-pill,
.zp-sl-card__pro-label,
.zp-sl-card__badge--pro {
	background: var(--zp-pro-badge-bg) !important;
	color: var(--zp-pro-badge-color) !important;
	border-color: transparent !important;
	box-shadow: var(--zp-pro-badge-shadow) !important;
	font-weight: var(--zp-pro-badge-weight);
	letter-spacing: var(--zp-pro-badge-tracking);
	text-transform: uppercase;
}

.yrl-pro-badge,
.zp-pro-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 5px 11px 5px 8px;
	border-radius: 999px;
	font-size: 10px;
	line-height: 1;
	flex-shrink: 0;
}

.yrl-pro-badge__icon,
.yrl-pro-badge__icon.fa {
	font-size: 12px !important;
	line-height: 1;
	vertical-align: middle;
	user-select: none;
}

.zp-section-pro-badge,
.zp-allied-brands__pro-badge,
.zp-info-pro-card__badge,
.zp-card-pro-inline,
.zp-sp26-pro-badge,
.zp-provider-actions__badge,
.yrl-btn--ver-contacto__badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.material-symbols-outlined {
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
	vertical-align: middle;
	user-select: none;
	line-height: 1;
}

.zp-section-pro-badge {
	flex-shrink: 0;
	font-size: 12.7px;
	padding: 4.8px 10.8px;
	border-radius: 999px;
	line-height: 1;
}

.zp-section-hint--soft {
	color: rgba(15, 23, 42, 0.55);
	font-size: 13px;
}

.zp-service-card--pro {
	border-color: var(--zp-pro-card-border);
	box-shadow: var(--zp-pro-card-shadow);
}

.zp-service-card--carousel.zp-service-card--pro {
	border-color: var(--zp-pro-card-border);
	box-shadow: var(--zp-pro-card-shadow);
}

.zp-service-card--pro .zp-service-card__availability--pro {
	margin: 4px 0 6px;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.35;
	color: #0d9488;
	letter-spacing: 0.01em;
}

.zp-card-corner-stack {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	z-index: 4;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 6px;
}

.zp-card-corner-stack .zp-card-fav-wrap {
	position: static;
	top: auto;
	right: auto;
}

.zp-card-pro-badge {
	position: static;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	padding: 2px 7px;
	min-height: 0;
	flex-shrink: 0;
	border-radius: 999px;
	font-size: 7.5px;
	line-height: 1.15;
	text-align: center;
	white-space: nowrap;
	pointer-events: none;
	box-sizing: border-box;
}

.zp-card-pro-badge__inner {
	display: block;
	line-height: 1.1;
	white-space: nowrap;
}

.zp-card-featured-note {
	margin: 10px 0 0;
	font-size: 11px;
	font-weight: 600;
	color: rgba(71, 85, 105, 0.92);
	line-height: 1.35;
}

.zp-service-grid--scroll {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.zp-service-card {
	background: #fff;
	border: 1px solid var(--ylb-border);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--zp-card-elev-shadow);
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.zp-service-card__media {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.zp-card-img {
	width: 100%;
	display: block;
	box-sizing: border-box;
	height: 109px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.zp-card-img--empty {
	background: linear-gradient(135deg, #e8f1ff, #dbeafe);
}

.zp-card-fav-wrap {
	position: absolute;
	top: 10px;
	left: 10px;
	right: auto;
	z-index: 6;
}

.zp-card-fav {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.78);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	text-decoration: none;
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

button.zp-card-fav {
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	margin: 0;
	padding: 0;
	cursor: pointer;
	font: inherit;
	line-height: 1;
	box-sizing: border-box;
	text-align: center;
	position: relative;
	z-index: 2;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.zp-card-fav.loved {
	color: #f43f5e;
}

.zp-service-card__body {
	padding: 11px 12px 6px;
	flex: 1;
}

/* Rating row above title (homepage carousels) */
.zp-card-rating-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 6px;
	line-height: 1.25;
}

.zp-card-rating--above-title {
	display: inline-flex;
	align-items: baseline;
	gap: 5px;
	font-size: 15px;
	color: #0a1628;
}

/* SVG star — no depende de Font Awesome */
.zp-card-rating__star-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 0;
	margin-right: 3px;
	vertical-align: middle;
}

.zp-card-rating__star-svg {
	display: block;
	width: 17px;
	height: 17px;
}

.zp-card-rating__value {
	font-weight: 700;
	font-size: 15px;
}

.zp-card-rating--above-title .zp-card-rating__count {
	font-weight: 400;
	font-size: 13px;
	color: #64748b;
	margin-left: 1px;
}

.zp-card-rating--new {
	font-size: 15px;
	font-weight: 600;
	color: #64748b;
}

.zp-card-rating--empty {
	color: #64748b;
}

.zp-card-rating__star-svg--muted path {
	fill: #cbd5e1;
}

.zp-card-rating__empty-label {
	font-weight: 500;
	font-size: 12px;
	color: #64748b;
}

.zp-card-rating__value--empty {
	font-weight: 600;
	font-size: 12px;
	color: #64748b;
}

.zp-card-rating--empty .zp-card-rating__count {
	font-weight: 400;
	font-size: 11px;
	color: #94a3b8;
	margin-left: 1px;
}

.zp-card-pro-inline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3.6px 9.6px;
	border-radius: 7.2px;
	background: #2563eb;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1;
	flex-shrink: 0;
	box-shadow: 0 1px 4px rgba(37, 99, 235, 0.35);
}

.zp-service-card__title {
	margin: 0 0 8px;
	font-size: 13.6px;
	font-weight: 700;
	line-height: 1.25;
}

.zp-service-card__title a {
	color: inherit;
	text-decoration: none;
}

.zp-card-meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	color: var(--ylb-gray);
	min-height: 0;
}

/* Legacy / compact rating (meta row) — kept if reused elsewhere */
.zp-card-rating:not(.zp-card-rating--above-title):not(.zp-card-rating--new) {
	font-size: 13px;
	line-height: 1.25;
	color: #0a1628;
	font-weight: 600;
}

.zp-card-rating:not(.zp-card-rating--above-title):not(.zp-card-rating--new) .fa-star {
	color: #fbbf24;
	margin-right: 4px;
}

.zp-card-rating:not(.zp-card-rating--above-title):not(.zp-card-rating--new) .zp-card-rating__count {
	font-weight: 500;
	font-size: 12px;
	color: var(--ylb-gray);
}

.zp-card-loc .fa-map-marker {
	margin-right: 6px;
	color: var(--ylb-blue);
}

.zp-cat-pill {
	display: inline-block;
	margin-top: 4px;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--zp-soft);
	color: var(--ylb-blue);
	font-weight: 600;
	font-size: 12px;
	width: fit-content;
}

.zp-btn--wa {
	margin: 0 16px 16px;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
}

.zp-btn--wa.openWhatsapp {
	background: var(--ylb-blue);
	color: #fff !important;
}

.zp-btn--wa-muted {
	background: #e8ecf1;
	color: var(--ylb-text) !important;
}

/* Provider band */
.zp-provider-band {
	margin-top: 56px;
}

.zp-provider-band__inner {
	background: var(--zp-soft-2);
	border: 1px solid #d4e4ff;
	border-radius: 18px;
	padding: 28px 32px;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.zp-provider-band__icon {
	font-size: 48px;
	color: var(--ylb-blue);
	line-height: 1;
}

.zp-provider-band__text h3 {
	margin: 0 0 6px;
	font-size: 22px;
	font-weight: 800;
}

.zp-provider-band__text p {
	margin: 0;
	color: var(--ylb-gray);
	font-size: 15px;
}

/* How it works */
.zp-how {
	margin-top: 64px;
	margin-bottom: 24px;
}

.zp-how__title {
	text-align: center;
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 40px;
}

.zp-how__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	position: relative;
	flex-wrap: wrap;
}

.zp-how__steps::before {
	content: "";
	position: absolute;
	top: 36px;
	left: 12%;
	right: 12%;
	height: 0;
	border-top: 2px dotted rgba(0, 85, 255, 0.25);
	z-index: 0;
}

.zp-how__step {
	flex: 1;
	min-width: 140px;
	max-width: 220px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.zp-how__circle {
	width: 72px;
	height: 72px;
	margin: 0 auto 12px;
	border-radius: 50%;
	border: 2px solid var(--ylb-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: var(--ylb-blue);
	background: #fff;
}

.zp-how__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--ylb-blue);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 10px;
}

.zp-how__step h4 {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
}

.zp-how__step p {
	margin: 0;
	font-size: 13px;
	color: var(--ylb-gray);
	line-height: 1.4;
}

/* App band */
.zp-app-band {
	margin-top: 56px;
	background: linear-gradient(180deg, #e8f4ff 0%, #dceeff 100%);
	padding: 56px 0;
}

.zp-app-band__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.zp-app-band__copy h2 {
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	margin: 0 0 24px;
	line-height: 1.2;
}

.zp-phone {
	width: 220px;
	max-width: 100%;
	margin: 0 auto;
	aspect-ratio: 9/19;
	border-radius: 36px;
	background: linear-gradient(145deg, #1e293b, #0f172a);
	padding: 12px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.zp-phone__screen {
	width: 100%;
	height: 100%;
	border-radius: 26px;
	background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
	border: 1px solid #cbd5e1;
}

/* Footer props */
.zp-footer-props {
	padding: 48px 0 64px;
}

.zp-footer-props__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.zp-prop {
	text-align: center;
}

.zp-prop__icon {
	font-size: 28px;
	color: var(--ylb-blue);
	margin-bottom: 12px;
}

.zp-prop h4 {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 800;
}

.zp-prop p {
	margin: 0;
	font-size: 14px;
	color: var(--ylb-gray);
}

/* Mobile + DE mobile header logo cap */
@media (max-width: 1024px) {
	.zp-category-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.zp-service-grid--scroll {
		grid-template-columns: repeat(2, 1fr);
	}

	.zp-how__steps::before {
		display: none;
	}
}

@media (max-width: 768px) {
	header .logo img {
		max-height: 34px !important;
		max-width: 130px !important;
		width: auto !important;
		height: auto !important;
		object-fit: contain;
	}

	.zp-header__inner {
		min-height: 60px;
		padding: 8px 0;
	}

	.zp-nav {
		display: none;
	}

	.zp-home--2026 .zp-logo img,
	.zp-home--2026 .zp-logo-img {
		max-height: 38px !important;
		max-width: 200px !important;
	}

	.zp-home--py .zp-logo img {
		max-height: 38px !important;
	}

	.zp-header__actions--dual {
		width: 100%;
		justify-content: flex-end;
		gap: 10px;
	}

	.zp-header__actions--dual .zp-btn--header,
	.zp-header__actions--dual .zp-btn--header-secondary {
		flex: 1;
		min-width: 0;
		justify-content: center;
		text-align: center;
	}

	.zp-hero--2026 {
		padding: 40px 0 56px;
	}

	.zp-hero__title {
		font-size: 26px;
	}

	.zp-hero__lead {
		font-size: 15px;
	}

	.zp-search-bar {
		flex-direction: column;
	}

	.zp-search-field {
		border-right: none;
		border-bottom: 1px solid #e8ecf1;
		padding: 12px 8px;
	}

	.zp-search-field--submit {
		border-bottom: none;
		padding-top: 16px;
	}

	.zp-search-field__label--ghost {
		display: none;
	}

	.zp-btn--search {
		width: 100%;
	}

	.zp-home--2026 .zp-search-panel--2026 .chosen-container-single .chosen-single {
		min-height: 40px !important;
		line-height: 40px !important;
	}

	.zp-trust-strip {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		padding: 0 8px;
	}

	.zp-category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.zp-service-grid--scroll {
		grid-template-columns: 1fr;
	}

	.zp-provider-band__inner {
		flex-direction: column;
		text-align: center;
	}

	.zp-provider-band__inner .zp-btn--lg {
		width: 100%;
	}

	.zp-how__step {
		max-width: none;
	}

	.zp-app-band__grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.zp-footer-props__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.ylb-cta-wrap .ylb-btn-primary,
	.ylb-cta-wrap .ylb-btn-secondary,
	.ylb-cta-wrap .ylb-btn-ghost {
		min-height: 48px;
		box-sizing: border-box;
	}

	.zp-header__inner--py {
		flex-wrap: wrap;
	}

	.zp-header-location {
		order: 3;
		width: 100%;
		justify-content: center;
		margin-top: 4px;
	}

	.zp-macro-carousel {
		padding-bottom: 6px;
	}

	.zp-chip-row {
		margin-bottom: 12px;
	}

	.zp-section-head--rowhead:not(.zp-section-head--featured) {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.zp-section-head--rowhead:not(.zp-section-head--featured) .zp-link-all {
		align-self: flex-end;
	}
}

/* ========== PedidosYa-style marketplace (zp-home--py) ========== */
.zp-home--py {
	background: #fff;
}

.zp-header--py {
	border-bottom: 1px solid var(--ylb-border);
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.zp-header__inner--py {
	display: flex;
	align-items: center;
	gap: 16px 20px;
}

.zp-header__inner--py .zp-nav {
	display: none;
}

.zp-header-location {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 12px;
	border: 1px solid var(--ylb-border);
	background: #f8fafc;
	font-size: 14px;
	font-weight: 600;
	color: var(--ylb-text);
	cursor: pointer;
	max-width: 280px;
	transition: border-color 0.15s, background 0.15s;
}

.zp-header-location:hover {
	border-color: var(--ylb-blue);
	background: #eff6ff;
	color: var(--ylb-blue);
}

.zp-header-location__text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.zp-header-location__chev {
	font-size: 12px;
	opacity: 0.55;
	margin-left: 2px;
}

.zp-hero--py {
	position: relative;
	padding: 48px 0 40px;
	text-align: left;
	overflow: hidden;
	background: linear-gradient(165deg, #ffffff 0%, #f1f5f9 38%, #e8f0fe 100%);
}

.zp-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.zp-hero__mapviz {
	position: absolute;
	right: -4%;
	top: 50%;
	transform: translateY(-50%);
	width: min(420px, 52vw);
	height: min(420px, 52vw);
	opacity: 0.9;
}

.zp-hero__orbit {
	position: absolute;
	inset: 18%;
	border: 2px dashed rgba(29, 78, 216, 0.12);
	border-radius: 50%;
}

.zp-pin {
	position: absolute;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(145deg, #dbeafe, #bfdbfe);
	border: 3px solid #fff;
	box-shadow: 0 8px 24px rgba(29, 78, 216, 0.2);
}

.zp-pin::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 10px solid #93c5fd;
}

.zp-pin--a {
	top: 12%;
	left: 22%;
}

.zp-pin--b {
	top: 42%;
	right: 18%;
	width: 44px;
	height: 44px;
	background: linear-gradient(145deg, #e0e7ff, #c7d2fe);
}

.zp-pin--c {
	bottom: 14%;
	left: 38%;
	width: 48px;
	height: 48px;
	background: linear-gradient(145deg, #fef3c7, #fde68a);
}

.zp-hero__inner--py {
	position: relative;
	z-index: 1;
	text-align: left;
}

.zp-hero__title--py {
	font-size: clamp(30px, 4.2vw, 46px);
	font-weight: 800;
	color: var(--ylb-text);
	line-height: 1.1;
	margin: 0 0 14px;
	letter-spacing: -0.02em;
	max-width: 720px;
}

.zp-hero__lead--py {
	font-size: clamp(15px, 1.9vw, 18px);
	color: var(--ylb-gray);
	line-height: 1.5;
	margin: 0 0 28px;
	max-width: 520px;
}

.zp-search-panel--py {
	background: #fff;
	border-radius: 22px;
	padding: 20px 22px 16px;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.92) inset,
		0 0 0 1px rgba(37, 99, 235, 0.08),
		0 4px 10px rgba(15, 23, 42, 0.05),
		0 14px 38px rgba(37, 99, 235, 0.12),
		0 32px 70px rgba(15, 23, 42, 0.11);
	border: 1px solid rgba(226, 232, 240, 0.98);
	max-width: 920px;
	margin: 0;
	position: relative;
	z-index: 2;
}

.zp-search-bar--py {
	display: flex;
	align-items: stretch;
	gap: 0;
	flex-wrap: nowrap;
}

.zp-search-field--py {
	border-right: 1px solid #e8ecf1;
}

.zp-btn--search-py {
	border-radius: 14px !important;
	min-height: 52px !important;
	padding: 0 32px !important;
	font-size: 16px !important;
	font-weight: 700 !important;
}

/* Buscar clásico: mismo pill redondeado que modo IA (type=button, sin envío GET nativo). */
.zp-classic-search__btn-wrap {
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
}

.zp-classic-search-field--btn .zp-ai-search__submit {
	width: 100%;
	min-height: 40px !important;
	box-sizing: border-box;
}

/* Botón Buscar clásico (home): compacto; gana sobre .zp-ai-search__submit genérico por #id. */
.zp-home--py .zp-search-panel--py #zp-classic-search-submit.zp-ai-search__submit.zp-btn {
	border-radius: 12px !important;
	border: none !important;
	min-height: 40px !important;
	min-width: 0 !important;
	width: 100%;
	padding: 8px 14px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	box-sizing: border-box !important;
}

.zp-use-location-wrap {
	margin: 12px 0 0;
	text-align: left;
}

.zp-use-location {
	background: none;
	border: none;
	padding: 0;
	color: var(--ylb-blue);
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.zp-use-location:hover {
	color: var(--ylb-blue-dark);
}

.zp-home--py .zp-search-panel--py #search_address_search.zp-input,
.zp-home--py .zp-search-panel--py .chosen-container-single .chosen-single {
	font-size: 15px !important;
}

.zp-home--py .zp-search-panel--py #search_address_search.zp-input {
	flex: 1;
	border: none !important;
	box-shadow: none !important;
	padding: 8px 4px !important;
	min-height: auto;
	background: transparent;
}

.zp-home--py .zp-search-panel--py .chosen-container-single .chosen-single {
	border: none !important;
	box-shadow: none !important;
	background: transparent !important;
	min-height: 44px !important;
	line-height: 44px !important;
	padding: 0 8px 0 0 !important;
}

.zp-home--py .zp-search-panel--py .chosen-container-active .chosen-single {
	box-shadow: none !important;
}

.zp-home--py .zp-search-panel--py .chosen-drop {
	border-radius: 10px;
	margin-top: 4px;
}

.zp-home--py .zp-location-btn {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	font-size: 16px;
	color: var(--ylb-blue);
}

.zp-customer-cta--py {
	margin-top: 28px;
}

.zp-customer-cta__card--py {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px 24px;
	text-align: left;
	max-width: none;
	padding: 20px 24px;
	flex-wrap: wrap;
}

.zp-customer-cta__icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--ylb-blue);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.zp-customer-cta__copy {
	flex: 1;
	min-width: 200px;
}

.zp-customer-cta__card--py .zp-customer-cta__title {
	margin-bottom: 6px;
}

.zp-customer-cta__card--py .zp-customer-cta__text {
	margin-bottom: 0;
}

.zp-customer-cta__btn--py {
	flex-shrink: 0;
	white-space: nowrap;
}

.zp-customer-cta__btn--py .fa-angle-right {
	font-size: 14px;
	opacity: 0.9;
}

.zp-section-head--macro {
	align-items: center;
}

.zp-section-title--macro {
	margin: 0;
	font-size: clamp(1.75rem, 2.5vw + 1rem, 2.625rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.zp-macro-carousel {
	display: flex;
	align-items: stretch;
	gap: 12px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 6px 4px 12px;
	margin: 0 -8px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.zp-macro-carousel::-webkit-scrollbar {
	height: 6px;
}

.zp-macro-carousel::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 6px;
}

.zp-macro-card {
	flex: 0 0 auto;
	width: min(124px, 36vw);
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid var(--ylb-border);
	border-radius: 14px;
	padding: 11px 9px 12px;
	text-decoration: none;
	color: var(--ylb-text);
	box-shadow: var(--zp-card-elev-shadow);
	transition: box-shadow 0.15s, border-color 0.15s;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	box-sizing: border-box;
	align-self: stretch;
	text-align: center;
}

button.zp-macro-card {
	font: inherit;
	font-family: inherit;
	text-align: center;
	cursor: pointer;
	margin: 0;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

.zp-macro-card:hover {
	border-color: rgba(29, 78, 216, 0.35);
	box-shadow: 0 8px 28px rgba(29, 78, 216, 0.12);
}

.zp-macro-card.zp-macro-card--active {
	border-color: rgba(29, 78, 216, 0.55);
	box-shadow: 0 4px 22px rgba(29, 78, 216, 0.16);
}

.zp-macro-card__icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	line-height: 1;
}

.zp-macro-card__title {
	width: 100%;
	font-weight: 800;
	font-size: 14px;
	line-height: 1.22;
	min-height: calc(1.22em * 2);
	max-height: calc(1.22em * 2);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	word-break: break-word;
	overflow-wrap: anywhere;
	text-align: center;
}

.zp-macro-card__desc {
	width: 100%;
	flex-shrink: 0;
	font-size: 11px;
	color: var(--ylb-gray);
	line-height: 1.32;
	min-height: calc(1.32em * 2);
	max-height: calc(1.32em * 2);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	word-break: break-word;
	overflow-wrap: anywhere;
	text-align: center;
}

.zp-section-head--rowhead {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

/* Destacados + PRO: fila título + "Ver todos" (markup .zp-section-head__toprow), subtítulo debajo */
.zp-section-head--featured.zp-section-head--rowhead {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	gap: 4px;
	width: 100%;
}

.zp-section-head--featured.zp-section-head--rowhead .zp-section-head__toprow {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	min-width: 0;
}

.zp-section-head--featured.zp-section-head--rowhead .zp-section-head__toprow .zp-section-title--featured,
.zp-section-head--featured.zp-section-head--rowhead .zp-section-head__toprow .zp-section-title--pro-carousel {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
}

.zp-section-head--featured.zp-section-head--rowhead .zp-link-all--section-strip {
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.25;
	white-space: nowrap;
}

.zp-section-head--featured.zp-section-head--rowhead .zp-link-all--section-strip .fa {
	font-size: 0.85em;
	opacity: 0.85;
}

.zp-section-head--featured.zp-section-head--rowhead .zp-section-sub {
	margin: 0;
	margin-top: 2px;
	width: 100%;
	max-width: none;
}

.zp-carousel {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 5px 2px 16px;
	margin: 0 -6px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.zp-reviews {
	margin-top: 34px;
}

.zp-review-track {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 4px 2px 12px;
	margin: 0 -6px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

/* Franja compacta: descuentos aliados en home (debajo de reseñas, CTA Pro). */
.zp-home-allies-strip {
	margin-top: 8px;
	margin-bottom: 4px;
	padding-top: 10px;
	border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.zp-home-allies-strip__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px 16px;
	margin-bottom: 8px;
}

.zp-home-allies-strip__copy {
	min-width: 0;
	flex: 1 1 200px;
}

.zp-home-allies-strip__eyebrow {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
}

.zp-home-allies-strip__eyebrow-ic {
	margin-right: 4px;
}

.zp-home-allies-strip__title {
	margin: 0 0 4px;
	font-size: 1.02rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ylb-text);
	line-height: 1.25;
}

.zp-home-allies-strip__sub {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.35;
	color: rgba(15, 23, 42, 0.62);
	max-width: 36rem;
}

.zp-home-allies-strip__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	flex-shrink: 0;
}

.zp-home-allies-strip__link-all {
	font-size: 13px;
	font-weight: 700;
}

.zp-home-allies-strip__btn-pro {
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 800;
	border-radius: 10px;
	line-height: 1.2;
	box-shadow: 0 4px 12px rgba(234, 88, 12, 0.22);
}

.zp-home-allies-strip__track {
	padding-bottom: 8px;
	mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
}

.zp-review-card {
	flex: 0 0 auto;
	width: min(252px, 78vw);
	max-width: 260px;
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid var(--ylb-border);
	border-radius: 14px;
	padding: 10px 11px 9px;
	box-shadow: var(--zp-card-elev-shadow);
}

.zp-review-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 7px;
}

.zp-stars {
	font-size: 11px;
	letter-spacing: 0.06em;
	color: #fbbf24;
}

.zp-review-card__score {
	font-size: 11px;
	font-weight: 700;
	color: rgba(30, 41, 59, 0.8);
}

.zp-review-card__text {
	margin: 0 0 9px;
	font-size: 12.5px;
	line-height: 1.4;
	color: rgba(15, 23, 42, 0.78);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.zp-review-card__meta {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
	flex-wrap: wrap;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.zp-review-card__name {
	font-size: 12px;
	font-weight: 800;
	color: var(--ylb-text);
	min-width: 0;
	flex: 1 1 auto;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.zp-review-card__service {
	font-size: 11px;
	font-weight: 700;
	color: var(--ylb-blue);
	background: rgba(37, 99, 235, 0.08);
	border: 1px solid rgba(37, 99, 235, 0.18);
	padding: 4px 8px;
	border-radius: 999px;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
	max-width: 100%;
	min-width: 0;
	flex: 1 1 auto;
	box-sizing: border-box;
	line-height: 1.3;
	text-align: center;
}

.zp-carousel-empty {
	margin: 8px 0 0;
	color: var(--ylb-gray);
	font-size: 14px;
}

.zp-carousel-micro-hint {
	margin: 0 0 12px;
	padding: 0 2px;
	font-size: 12px;
	line-height: 1.45;
	font-weight: 500;
	color: rgba(71, 85, 105, 0.88);
	max-width: 42rem;
}

.zp-pro-soft {
	margin-top: 6px;
	margin-bottom: 4px;
}

.zp-pro-soft__inner {
	text-align: center;
	padding: 22px 20px 24px;
	border-radius: 18px;
	background: linear-gradient(180deg, #fafbfc 0%, #f1f5f9 100%);
	border: 1px solid #e8ecf1;
	box-shadow: 0 6px 28px rgba(15, 23, 42, 0.045);
	max-width: 680px;
	margin: 0 auto;
}

.zp-pro-soft__star {
	display: inline-block;
	margin-right: 6px;
}

.zp-pro-soft__lead {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 700;
	color: var(--ylb-text);
	line-height: 1.25;
}

.zp-pro-soft__text {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.45;
	color: rgba(15, 23, 42, 0.66);
}

.zp-pro-soft__cta {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px !important;
	border-radius: 12px !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	background: #fff !important;
	color: #2563eb !important;
	border: 1px solid rgba(37, 99, 235, 0.35) !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.zp-pro-soft__cta:hover {
	background: #eff6ff !important;
	border-color: rgba(37, 99, 235, 0.55) !important;
	color: #1d4ed8 !important;
}

.zp-pro-strong {
	margin-top: 44px;
	margin-bottom: 12px;
}

.zp-pro-strong__card {
	max-width: 880px;
	margin: 0 auto;
	padding: 28px 26px 26px;
	border-radius: 22px;
	background: linear-gradient(155deg, #0f172a 0%, #1e293b 52%, #172554 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 18px 52px rgba(15, 23, 42, 0.22);
	color: #f8fafc;
}

.zp-pro-strong__title {
	margin: 0 0 18px;
	font-size: clamp(21px, 2.6vw, 28px);
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
}

.zp-pro-strong__list {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.zp-pro-strong__list li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	color: rgba(248, 250, 252, 0.94);
	margin: 0;
	padding: 0;
}

.zp-pro-strong__list li::before {
	content: '\2714';
	flex-shrink: 0;
	font-size: 14px;
	line-height: 1.35;
	color: #4ade80;
	font-weight: 700;
}

.zp-pro-strong__cta {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 26px !important;
	border-radius: 14px !important;
	font-weight: 800 !important;
	font-size: 15px !important;
	background: linear-gradient(180deg, #fcd34d 0%, #f59e0b 100%) !important;
	color: #0f172a !important;
	box-shadow: 0 10px 28px rgba(251, 191, 36, 0.38) !important;
	border: none !important;
	text-decoration: none !important;
}

.zp-pro-strong__closing {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.45;
}

.zp-pro-strong__cta:hover {
	filter: brightness(1.06);
	color: #020617 !important;
}

.zp-pro-float-cta {
	position: fixed;
	right: max(16px, env(safe-area-inset-right));
	bottom: max(16px, env(safe-area-inset-bottom));
	z-index: 185;
	width: min(292px, calc(100vw - 28px));
	padding: 14px 38px 14px 14px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 14px 44px rgba(15, 23, 42, 0.16);
	transform: translate3d(0, 130%, 0);
	opacity: 0;
	transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s ease;
	pointer-events: none;
	box-sizing: border-box;
}

.zp-pro-float-cta--visible {
	transform: translate3d(0, 0, 0);
	opacity: 1;
	pointer-events: auto;
}

.zp-pro-float-cta__close {
	position: absolute;
	top: 6px;
	right: 8px;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	border-radius: 8px;
	background: transparent;
	color: #64748b;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zp-pro-float-cta__close:hover {
	background: #f1f5f9;
	color: var(--ylb-text);
}

.zp-pro-float-cta__head {
	margin: 0 0 6px;
	padding-right: 4px;
	font-size: 14px;
	font-weight: 700;
	color: var(--ylb-text);
	line-height: 1.35;
}

.zp-pro-float-cta__sub {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.4;
	font-weight: 500;
	color: rgba(71, 85, 105, 0.92);
}

.zp-pro-float-cta__btn {
	display: flex !important;
	width: 100%;
	justify-content: center;
	align-items: center;
	min-height: 42px;
	padding: 0 14px !important;
	border-radius: 12px !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	background: #2563eb !important;
	color: #fff !important;
	border: none !important;
	box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28) !important;
	text-decoration: none !important;
	box-sizing: border-box;
}

.zp-pro-float-cta__btn:hover {
	background: #1d4ed8 !important;
	color: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
	.zp-pro-float-cta {
		transition: none;
	}

	.zp-pro-float-cta--visible {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 480px) {
	.zp-pro-float-cta {
		right: max(12px, env(safe-area-inset-right));
		bottom: max(12px, env(safe-area-inset-bottom));
		width: calc(100vw - 24px);
		max-width: 340px;
	}
}

/* Carrusel tipo app delivery: ~media tarjeta visible + peek del siguiente (+15% vs base compacta) */
.zp-service-card--carousel {
	flex: 0 0 auto;
	width: clamp(165px, 48.8vw, 212px);
	max-width: 212px;
	scroll-snap-align: start;
	border-radius: 13px;
	box-shadow: var(--zp-card-elev-shadow);
}

.zp-service-card--carousel .zp-service-card__body {
	padding: 7px 9px 5px;
}

.zp-service-card--carousel .zp-service-card__title {
	font-size: 13.1px;
	font-weight: 800;
	margin: 0 0 6px;
	line-height: 1.2;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.zp-service-card--carousel .zp-card-rating-row {
	margin: 0 0 5px;
	gap: 5px;
}

.zp-service-card--carousel .zp-card-rating--above-title {
	font-size: 11.5px;
	gap: 4px;
}

.zp-service-card--carousel .zp-card-rating__star-svg {
	width: 13px;
	height: 13px;
}

.zp-service-card--carousel .zp-card-rating__value {
	font-size: 11.5px;
}

.zp-service-card--carousel .zp-card-rating--above-title .zp-card-rating__count {
	font-size: 10.5px;
}

.zp-service-card--carousel .zp-card-rating__empty-label,
.zp-service-card--carousel .zp-card-rating__value--empty {
	font-size: 10.5px;
	font-weight: 500;
}

.zp-service-card--carousel .zp-service-card__cat {
	font-size: 11.2px;
	font-weight: 600;
	margin: 0 0 5px;
	padding: 2px 8px;
	display: inline-block;
	max-width: 100%;
	line-height: 1.3;
	color: #475569;
	border-radius: 999px;
	background: rgba(248, 250, 252, 0.72);
	border: 1px solid rgba(148, 163, 184, 0.22);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
	overflow-wrap: anywhere;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.zp-service-card--carousel.zp-service-card--pro .zp-service-card__availability--pro {
	margin: 4px 0 5px;
	font-size: 10.5px;
	font-weight: 500;
	line-height: 1.35;
	color: #0d9488;
	letter-spacing: 0.01em;
}

.zp-service-card--carousel .zp-card-meta {
	gap: 3px;
	font-size: 11px;
}

.zp-service-card--carousel .zp-card-dist {
	font-size: 10.5px;
	color: #94a3b8;
	font-weight: 400;
}

.zp-service-card--carousel .zp-card-featured-note {
	margin-top: 7px;
	font-size: 11.5px;
}

.zp-service-card__cta-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0 11px 10px;
	margin-top: auto;
	box-sizing: border-box;
}

.zp-service-card--carousel .zp-service-card__cta-row {
	padding: 0 9px 9px;
	gap: 6px;
}

.zp-service-card--carousel .zp-service-card__cta-row .zp-btn--wa {
	margin: 0;
	padding: 8px 11px;
	font-size: 12px;
	border-radius: 9px;
	width: 100%;
	box-sizing: border-box;
	justify-content: center;
	min-height: 44px;
}

.zp-service-card--carousel .zp-btn--carousel-profile {
	margin: 0;
	padding: 7px 10px;
	font-size: 11px;
	font-weight: 600;
	border-radius: 9px;
	width: 100%;
	box-sizing: border-box;
	min-height: 40px;
}

.zp-home--py .zp-service-card--carousel .zp-service-card__cta-row .zp-btn--wa.openWhatsapp {
	padding: 8px 11px !important;
	min-height: 44px !important;
	font-size: 12px !important;
	box-shadow: 0 3px 12px rgba(37, 211, 102, 0.22) !important;
}

@media (min-width: 900px) {
	.zp-service-card--carousel {
		width: min(207px, 23vw);
		max-width: 223px;
	}
}

.zp-service-card__cat {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	display: inline-block;
	max-width: 100%;
	padding: 5px 11px;
	color: #334155;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(239, 246, 255, 0.92) 100%);
	border: 1px solid rgba(148, 163, 184, 0.35);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	overflow-wrap: anywhere;
}

.zp-card-dist {
	font-size: 12px;
	color: #94a3b8;
	font-weight: 400;
}

.zp-card-dist-drive {
	font-weight: 500;
	color: #94a3b8;
	white-space: nowrap;
}

.zp-macro-block {
	margin-top: 56px;
	scroll-margin-top: 72px;
}

.zp-section-head--macroblock {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.zp-macro-block__titlerow {
	display: flex;
	align-items: center;
	gap: 12px;
}

.zp-macro-block__emoji {
	font-size: clamp(1.375rem, 2.2vw + 0.75rem, 2.4375rem);
	line-height: 1;
}

.zp-section-title--macroblock {
	margin: 0;
	font-size: clamp(1.56rem, 2.208vw + 0.912rem, 2.46rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.zp-chip-row {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 10px;
	margin-bottom: 6px;
	-webkit-overflow-scrolling: touch;
}

.zp-chip {
	flex: 0 0 auto;
	padding: 7px 13px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(148, 163, 184, 0.22);
	font-size: 13px;
	font-weight: 600;
	color: var(--ylb-text);
	text-decoration: none;
	white-space: nowrap;
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.75);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

button.zp-chip {
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
}

.zp-chip--active {
	background: rgba(37, 99, 235, 0.12);
	border-color: rgba(37, 99, 235, 0.38);
	color: #1d4ed8;
	box-shadow:
		0 0 0 1px rgba(37, 99, 235, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.zp-chip:hover {
	background: rgba(241, 245, 249, 0.92);
	border-color: rgba(37, 99, 235, 0.28);
	color: var(--ylb-blue);
}

.zp-service-card--macro-hidden {
	display: none !important;
}

.zp-macro-filter-empty {
	margin: 8px 0 0;
	font-size: 14px;
	color: #64748b;
	font-weight: 500;
}

.zp-macro-block--targeted {
	outline: 2px solid rgba(59, 130, 246, 0.45);
	outline-offset: 6px;
	border-radius: 12px;
	transition: outline-color 0.4s ease;
}

button.zp-chip.zp-macro-cat-chip {
	font: inherit;
	text-align: inherit;
	cursor: pointer;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

/* Pulso sutil: chips de categoría del bloque macro (carrusel recargado o sección activa) */
@keyframes zpCategoryAttention {
	0% {
		transform: scale(1) translateX(0);
	}
	25% {
		transform: scale(1.03) translateX(-2px);
	}
	50% {
		transform: scale(1.03) translateX(2px);
	}
	75% {
		transform: scale(1.02) translateX(-1px);
	}
	100% {
		transform: scale(1) translateX(0);
	}
}

.zp-macro-block button.zp-macro-cat-chip.attention {
	animation: zpCategoryAttention 650ms ease-out;
	transform-origin: center center;
}

@media (prefers-reduced-motion: reduce) {
	.zp-macro-block button.zp-macro-cat-chip.attention {
		animation: none !important;
	}
}

/* Chips de categoría en carruseles por bloque macro (fondo sutil, no las cards del strip) */
.zp-macro-block .zp-chip.zp-macro-cat-chip {
	background: linear-gradient(180deg, rgba(239, 246, 255, 0.94) 0%, rgba(219, 234, 254, 0.52) 100%);
	border-color: rgba(96, 165, 250, 0.32);
	box-shadow: 0 1px 3px rgba(37, 99, 235, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.zp-macro-block .zp-chip.zp-macro-cat-chip.zp-chip--active {
	background: linear-gradient(180deg, #e8ecff 0%, #c7d2fe 100%);
	border-color: rgba(37, 99, 235, 0.45);
	color: #1d4ed8;
	box-shadow: 0 2px 10px rgba(37, 99, 235, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.zp-macro-block .zp-chip.zp-macro-cat-chip:hover {
	background: linear-gradient(180deg, rgba(224, 231, 255, 0.98) 0%, rgba(199, 210, 254, 0.72) 100%);
	border-color: rgba(37, 99, 235, 0.38);
	color: #1d4ed8;
}

.zp-macro-block .zp-chip-row--macro-subs {
	padding: 6px 8px 10px;
	margin: 0 -4px 6px;
	border-radius: 14px;
	background: rgba(241, 245, 249, 0.55);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
	margin-top: 56px;
	padding: 28px 0 36px;
	background: #f8fafc;
	border-top: 1px solid var(--ylb-border);
}

.zp-trust-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px 24px;
	align-items: start;
}

.zp-trust-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 13px;
	color: #475569;
	line-height: 1.35;
}

.zp-trust-item strong {
	display: block;
	color: var(--ylb-text);
	font-size: 14px;
	margin-bottom: 2px;
}

.zp-trust-item__icon {
	color: var(--ylb-blue);
	font-size: 20px;
	margin-top: 2px;
	flex-shrink: 0;
}

@media (max-width: 1024px) {
	.zp-trust-bar__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.zp-hero__mapviz {
		opacity: 0.45;
		right: -12%;
	}
}

@media (max-width: 900px) {
	.zp-search-bar--py {
		flex-direction: column;
	}

	.zp-search-field--py {
		border-right: none;
		border-bottom: 1px solid #e8ecf1;
	}

	.zp-search-field--submit.zp-search-field--py {
		border-bottom: none;
	}

	.zp-btn--search-py {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.zp-customer-cta__card--py {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.zp-customer-cta__icon {
		margin: 0 auto;
	}

	.zp-customer-cta__btn--py {
		width: 100%;
		justify-content: center;
	}
}

.zp-home--py .zp-btn--wa.openWhatsapp {
	background: #25d366 !important;
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.22);
	font-weight: 600 !important;
	padding: 10px 16px !important;
	min-height: 44px;
	box-sizing: border-box;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid rgba(255, 255, 255, 0.22);
}

.zp-home--py .zp-btn--wa.openWhatsapp:hover {
	background: #1ebe5d !important;
	color: #fff !important;
	box-shadow: 0 5px 16px rgba(37, 211, 102, 0.26);
}

.zp-home--py .zp-btn--wa-muted {
	font-weight: 600;
	opacity: 0.92;
}

.zp-service-card--carousel .zp-card-img {
	height: 98px;
	width: 100%;
	display: block;
	box-sizing: border-box;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.zp-service-card--carousel .zp-card-fav {
	width: 30px;
	height: 30px;
	font-size: 13px;
}

.zp-service-card--carousel .zp-card-corner-stack {
	top: 6px;
	left: 6px;
	right: 6px;
	gap: 4px;
}

.zp-service-card--carousel .zp-card-pro-badge {
	padding: 1px 5px;
	border-radius: 5px;
	font-size: 7px;
}

.zp-service-card--carousel .zp-card-pro-inline {
	padding: 3px 9px;
	border-radius: 7px;
	font-size: 11px;
}

/* ========== Zippyn 2026 header nav (Airbnb-style) ========== */
:root {
	--zp-nav-blue: #2563eb;
	--zp-nav-blue-hover: #1d4ed8;
	--zp-pro-gold: #ca8a04;
	--zp-pro-gold-soft: #fef9c3;
}

.zp-header--nav.zp-header--2026 {
	position: sticky;
	top: 0;
	z-index: 200;
	background: #2563eb !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}

.zp-header-nav {
	position: relative;
}

.zp-header-nav__desktop {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 64px;
	width: 100%;
}

.zp-header-nav__left {
	display: flex;
	align-items: center;
	gap: 0;
	flex-shrink: 0;
	min-width: 0;
	max-width: 100%;
}

.zp-header-nav__divider {
	width: 1px;
	height: 28px;
	background: #e5e7eb;
	margin: 0 18px;
	flex-shrink: 0;
}

.zp-header-nav__location {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 9px;
	border-radius: 12px;
	border: 1px solid transparent;
	background: transparent;
	font-size: max(11px, calc(14px * 0.6));
	font-weight: 600;
	color: var(--ylb-text);
	cursor: pointer;
	max-width: min(440px, 52vw);
	min-width: 0;
	transition: background 0.15s, border-color 0.15s;
	font-family: inherit;
}

.zp-header-nav__location:hover {
	background: #f8fafc;
	border-color: #e2e8f0;
}

.zp-header-nav__location-text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.zp-header-nav__location .fa-map-marker {
	color: var(--zp-nav-blue);
	font-size: max(12px, calc(16px * 0.6));
}

.zp-header-nav__location-chev {
	font-size: max(9px, calc(11px * 0.6));
	opacity: 0.45;
	margin-left: 2px;
}

.zp-header-nav__right {
	display: flex;
	align-items: center;
	gap: 8px 14px;
	flex-wrap: nowrap;
	justify-content: flex-end;
	flex: 1;
	min-width: 0;
}

.zp-nav-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 8px;
	font-size: 14px;
	font-weight: 600;
	color: #334155;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s;
}

.zp-nav-link:hover {
	color: var(--zp-nav-blue);
}

.zp-nav-link .fa {
	font-size: 15px;
	opacity: 0.85;
}

.zp-nav-link--pro {
	color: #92400e !important;
	background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
	padding: 10px 14px !important;
	border-radius: 12px;
	border: 1px solid rgba(234, 179, 8, 0.35);
	box-shadow: 0 1px 2px rgba(234, 179, 8, 0.12);
}

.zp-nav-link--pro:hover {
	color: #78350f !important;
	border-color: rgba(234, 179, 8, 0.55);
}

.zp-nav-link__pro-icon {
	font-size: 15px;
	line-height: 1;
}

.zp-btn--nav-primary {
	background: var(--zp-nav-blue) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 14px !important;
	padding: 11px 18px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28) !important;
	gap: 10px !important;
	text-decoration: none !important;
}

.zp-btn--nav-primary:hover {
	background: var(--zp-nav-blue-hover) !important;
	color: #fff !important;
}

.zp-btn__plus-icon {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.22);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}

.zp-btn--nav-secondary {
	background: #fff !important;
	color: var(--zp-nav-blue) !important;
	border: 1px solid #cbd5e1 !important;
	border-radius: 14px !important;
	padding: 11px 18px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	box-shadow: none !important;
	text-decoration: none !important;
	gap: 8px !important;
}

.zp-btn--nav-secondary:hover {
	border-color: var(--zp-nav-blue) !important;
	background: #eff6ff !important;
	color: var(--zp-nav-blue-hover) !important;
}

.zp-nav-login {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	font-size: 14px;
	font-weight: 600;
	color: #334155;
	text-decoration: none;
	border-radius: 12px;
	transition: background 0.15s;
}

.zp-nav-login:hover {
	background: #f1f5f9;
	color: var(--zp-nav-blue);
}

.zp-nav-login__circle {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid #e2e8f0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #64748b;
	font-size: 15px;
}

.zp-nav-login__chev {
	font-size: 11px;
	opacity: 0.45;
	margin-left: 2px;
}

/* Account dropdown */
.zp-account {
	position: relative;
	flex-shrink: 0;
}

.zp-account__trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 12px;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	color: #334155;
	transition: background 0.15s, border-color 0.15s;
}

.zp-account__trigger:hover {
	background: #f8fafc;
	border-color: #e2e8f0;
}

.zp-account__avatar img {
	display: block;
	width: 32px !important;
	height: 32px !important;
	border-radius: 50%;
}

.zp-account__chev {
	font-size: 11px;
	opacity: 0.45;
}

.zp-account__dropdown {
	position: absolute;
	right: 0;
	top: calc(100% + 10px);
	min-width: 280px;
	padding: 12px 0;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.14);
	border: 1px solid #e5e7eb;
	z-index: 220;
}

.zp-account__dropdown-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 16px 14px;
	border-bottom: 1px solid #f1f5f9;
	margin-bottom: 6px;
}

.zp-account__dropdown-avatar img {
	width: 48px !important;
	height: 48px !important;
	border-radius: 50%;
	display: block;
}

.zp-account__dropdown-name {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--ylb-text);
	line-height: 1.25;
}

.zp-account__dropdown-profile-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--zp-nav-blue);
	text-decoration: none;
}

.zp-account__dropdown-profile-link:hover {
	text-decoration: underline;
}

.zp-account__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 18px;
	font-size: 14px;
	font-weight: 600;
	color: #334155;
	text-decoration: none;
	transition: background 0.12s;
}

.zp-account__item:hover {
	background: #f8fafc;
	color: var(--zp-nav-blue);
}

.zp-account__item .fa {
	width: 18px;
	text-align: center;
	color: #64748b;
	font-size: 15px;
}

.zp-account__sep {
	height: 1px;
	background: #f1f5f9;
	margin: 8px 0;
}

.zp-account__item--logout {
	color: #dc2626 !important;
}

.zp-account__item--logout:hover {
	background: #fef2f2 !important;
	color: #b91c1c !important;
}

.zp-account__item--logout .fa {
	color: #dc2626 !important;
}

/* Mobile top bar */
.zp-header-nav__mobile-bar {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 72px;
	padding: 5px 0 2px;
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

.zp-header-nav__mobile-brand {
	display: flex;
	align-items: center;
	gap: 8px 10px;
	min-width: 0;
	flex: 1 1 auto;
	overflow: visible;
}

.zp-header-nav__mobile-brand .zp-header-nav__logo-mobile {
	flex: 0 0 auto;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	min-width: 151px;
	width: auto;
	max-width: min(246px, 67vw);
	position: relative;
	z-index: 2;
}

.zp-header-nav__mobile-brand .zp-header-nav__logo-mobile .zp-logo-img {
	display: block;
	max-height: 81px !important;
	width: auto !important;
	height: auto !important;
	max-width: min(235px, 67vw) !important;
	object-fit: contain;
}

.zp-header-nav__mobile-loc {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex: 1 1 0%;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	border: none;
	background: transparent;
	padding: 4px 3px 4px 2px;
	margin: 0;
	cursor: pointer;
	font: inherit;
	text-align: left;
	-webkit-tap-highlight-color: transparent;
	border-radius: 10px;
	gap: 4px;
}

.zp-header-nav__mobile-loc:hover {
	background: rgba(15, 23, 42, 0.05);
}

.zp-header-nav__mobile-loc-ico,
.zp-header-nav__mobile-loc .fa-map-marker {
	flex-shrink: 0;
	font-size: max(12px, calc(15px * 0.6));
	color: var(--zp-nav-blue);
}

.zp-header-nav__mobile-loc .zp-header-nav__location-text {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	font-size: max(10px, calc(13px * 0.6));
	font-weight: 700;
	line-height: 1.25;
	color: #0f172a;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.zp-header-nav__mobile-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 2px;
	flex-shrink: 0;
}

.zp-header-nav__mobile-profile {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.1);
}

.zp-header-nav__mobile-profile:focus-visible {
	outline: 2px solid #0052ff;
	outline-offset: 2px;
}

.zp-header-nav__mobile-profile-avatar {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 0;
}

.zp-header-nav__mobile-profile-avatar img,
.zp-header-nav__mobile-profile img.avatar {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	display: block;
}

.zp-header--nav.zp-header--2026 .zp-header-nav__mobile-profile {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.zp-header--nav.zp-header--2026 .zp-header-nav__mobile-profile:hover {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85);
}

.zp-icon-btn--bare {
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	width: 44px;
	height: 44px;
	color: #334155;
	font-size: 20px;
	cursor: pointer;
	border-radius: 12px;
}

.zp-mobile-menu-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	font-size: 22px;
	line-height: 1;
}

.zp-icon-btn--bare:hover {
	background: #f1f5f9 !important;
	color: var(--zp-nav-blue);
}

.zp-header-nav__logo-mobile {
	position: static;
	left: auto;
	transform: none;
	z-index: 1;
	pointer-events: auto;
}

.zp-header-nav__logo-mobile .zp-logo-img {
	max-height: 81px !important;
}

.zp-header-nav__mobile-bar > .zp-drawer-toggle {
	flex-shrink: 0;
}

/* Logo YoLaburo / Zippyn más visible en la barra (desktop + mobile) */
.zp-header--nav.zp-header--2026 .zp-header-nav__logo .zp-logo-img,
.zp-header--nav.zp-header--2026 .zp-header-nav__logo img {
	max-height: 84px !important;
	max-width: min(480px, 58vw) !important;
	width: auto !important;
	height: auto !important;
	object-fit: contain;
}

/* Contraste sobre barra azul (misma familia cromática que .zp-btn--primary) */
.zp-header--nav.zp-header--2026 .zp-header-nav__divider {
	background: rgba(255, 255, 255, 0.28);
}

.zp-header--nav.zp-header--2026 .zp-header-nav__location {
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.28);
	font-size: max(11px, calc(14px * 0.6));
	padding: 6px 10px;
	gap: 5px;
}

.zp-header--nav.zp-header--2026 .zp-header-nav__location:hover {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.4);
}

.zp-header--nav.zp-header--2026 .zp-header-nav__location .fa-map-marker {
	color: #fff;
	font-size: max(12px, calc(16px * 0.6));
}

.zp-header--nav.zp-header--2026 .zp-header-nav__location-chev {
	opacity: 0.75;
	color: #fff;
}

.zp-header--nav.zp-header--2026 .zp-nav-link {
	color: rgba(255, 255, 255, 0.95);
}

.zp-header--nav.zp-header--2026 .zp-nav-link:hover {
	color: #fff;
}

.zp-header--nav.zp-header--2026 .zp-nav-link .fa {
	opacity: 0.95;
	color: inherit;
}

.zp-header--nav.zp-header--2026 .zp-btn--nav-primary {
	background: #fff !important;
	color: #1d4ed8 !important;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
}

.zp-header--nav.zp-header--2026 .zp-btn--nav-primary:hover {
	background: #f8fafc !important;
	color: #1e40af !important;
}

.zp-header--nav.zp-header--2026 .zp-btn__plus-icon {
	background: rgba(37, 99, 235, 0.12) !important;
	color: #1d4ed8 !important;
}

.zp-header--nav.zp-header--2026 .zp-btn--nav-secondary {
	background: rgba(255, 255, 255, 0.12) !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.zp-header--nav.zp-header--2026 .zp-btn--nav-secondary:hover {
	background: rgba(255, 255, 255, 0.22) !important;
	border-color: rgba(255, 255, 255, 0.5) !important;
	color: #fff !important;
}

.zp-header--nav.zp-header--2026 .zp-nav-login {
	color: #fff;
}

.zp-header--nav.zp-header--2026 .zp-nav-login:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.zp-header--nav.zp-header--2026 .zp-nav-login__circle {
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.zp-header--nav.zp-header--2026 .zp-nav-login__chev {
	opacity: 0.75;
	color: #fff;
}

.zp-header--nav.zp-header--2026 .zp-account__trigger {
	color: #fff;
	border-color: transparent;
}

.zp-header--nav.zp-header--2026 .zp-account__trigger:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.25);
	color: #fff;
}

.zp-header--nav.zp-header--2026 .zp-account__chev {
	color: #fff;
	opacity: 0.75;
}

.zp-header--nav.zp-header--2026 .zp-icon-btn--bare {
	color: #fff;
}

.zp-header--nav.zp-header--2026 .zp-icon-btn--bare:hover {
	background: rgba(255, 255, 255, 0.16) !important;
	color: #fff !important;
}

.zp-header--nav.zp-header--2026 .zp-mobile-menu-icon {
	color: inherit;
}

.zp-header--nav.zp-header--2026 .zp-nav-link--pro {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
	border-color: rgba(234, 179, 8, 0.45);
}

/* Mobile location goes below header (2026) */
.zp-mobile-location-row {
	margin-top: 8px;
	margin-bottom: 8px;
}

/* Chip ubicación bajo header: armoniza con barra azul */
.zp-home.zp-home--py > .zp-mobile-location-row .zp-mobile-location {
	border-color: rgba(37, 99, 235, 0.22);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 2px 10px rgba(37, 99, 235, 0.08);
}

.zp-mobile-location {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	background: #f8fafc;
	font-size: 14px;
	font-weight: 600;
	color: var(--ylb-text);
	cursor: pointer;
	min-width: 0;
	font-family: inherit;
}

.zp-mobile-location__text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.zp-mobile-location .fa-map-marker {
	color: #2563eb;
}

.zp-mobile-location__chev {
	margin-left: auto;
	opacity: 0.5;
}

.zp-drawer-toggle {
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.zp-mobile-post-btn {
	flex-shrink: 0;
	position: relative;
	z-index: 2;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--zp-nav-blue);
	color: #fff !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	font-size: 18px;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.zp-mobile-post-btn:hover {
	background: var(--zp-nav-blue-hover);
	color: #fff !important;
}

/* Drawer */
.zp-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
	z-index: 280;
	opacity: 0;
	transition: opacity 0.2s;
	pointer-events: none;
}

.zp-drawer-overlay:not([hidden]) {
	opacity: 1;
	pointer-events: auto;
}

.zp-drawer {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: min(92vw, 380px);
	max-width: 100%;
	background: #fff;
	z-index: 290;
	transform: translateX(-105%);
	transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 8px 0 40px rgba(15, 23, 42, 0.12);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.zp-drawer--open {
	transform: translateX(0);
}

body.zp-drawer-open {
	overflow: hidden;
	touch-action: none;
}

.zp-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 14px;
	border-bottom: 1px solid #f1f5f9;
	flex-shrink: 0;
}

.zp-drawer__loc {
	flex: 1;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 8px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	background: #f8fafc;
	font-size: max(10px, calc(13px * 0.6));
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	min-width: 0;
}

.zp-drawer__loc span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.zp-drawer__nav {
	flex: 1;
	overflow-y: auto;
	padding: 12px 0 100px;
	-webkit-overflow-scrolling: touch;
}

.zp-drawer__link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	font-size: 15px;
	font-weight: 600;
	color: #334155;
	text-decoration: none;
	border-bottom: 1px solid #f8fafc;
}

.zp-drawer__link:hover {
	background: #f8fafc;
	color: var(--zp-nav-blue);
}

.zp-drawer__link .fa:first-child {
	width: 22px;
	text-align: center;
	color: #64748b;
	font-size: 16px;
}

.zp-drawer__chev {
	margin-left: auto !important;
	opacity: 0.35;
	font-size: 14px !important;
	width: auto !important;
}

.zp-drawer__link--pro {
	background: linear-gradient(90deg, #fffbeb, transparent);
	color: #92400e !important;
}

.zp-drawer__link--logout {
	color: #dc2626 !important;
}

.zp-drawer__link--yolaburo-wa .fa:first-child {
	color: #25d366;
}

.zp-drawer__rule {
	border: none;
	border-top: 1px solid #e5e7eb;
	margin: 10px 16px;
}

.zp-drawer__action {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
}

.zp-drawer__action--primary {
	color: var(--zp-nav-blue) !important;
}

.zp-drawer__action--secondary {
	color: #475569 !important;
}

.zp-drawer__cta {
	margin-top: auto;
	padding: 18px 16px 22px;
	background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
	border-top: 1px solid #bfdbfe;
	flex-shrink: 0;
}

.zp-drawer__cta-q {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	color: #1e3a8a;
	line-height: 1.35;
}

.zp-drawer__cta-link {
	font-size: 14px;
	font-weight: 700;
	color: var(--zp-nav-blue);
	text-decoration: none;
}

.zp-drawer__cta-link:hover {
	text-decoration: underline;
}

/* Favoritos (menú lateral): carrusel horizontal compacto */
.zp-drawer__favs {
	padding: 0 10px 8px;
}
.zp-drawer__favs-heading {
	margin: 0 0 6px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(15, 23, 42, 0.55);
}
.zp-drawer__favs-list {
	max-height: none;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	padding: 0 0 6px;
	margin: 0 -4px;
	scrollbar-width: thin;
}
.zp-drawer__favs-empty {
	margin: 0;
	padding: 8px 4px 2px;
	font-size: 12px;
	line-height: 1.35;
	color: rgba(71, 85, 105, 0.88);
}
.zp-drawer__favs-track {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 10px;
	padding: 2px 4px 4px;
	width: max-content;
	min-width: 100%;
	box-sizing: border-box;
}
.zp-drawer-fav-slide {
	flex: 0 0 auto;
	width: 108px;
	max-width: 32vw;
	scroll-snap-align: start;
}
.zp-drawer-fav-slide__inner {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #f8fafc;
	border: 1px solid rgba(148, 163, 184, 0.35);
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.zp-drawer-fav-slide__link {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	text-decoration: none;
	color: #0f172a;
	min-height: 0;
}
.zp-drawer-fav-slide__link:hover {
	color: #1d4ed8;
}
.zp-drawer-fav-slide__img {
	display: block;
	width: 100%;
	height: 64px;
	background-size: cover;
	background-position: center center;
	background-color: #e2e8f0;
}
.zp-drawer-fav-slide__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 10.5px;
	font-weight: 700;
	line-height: 1.2;
	padding: 6px 6px 8px;
	min-height: 2.4em;
}
.zp-drawer-fav-slide__remove {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 26px;
	height: 26px;
	border: 0;
	border-radius: 50%;
	padding: 0;
	margin: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	line-height: 1;
	background: rgba(255, 255, 255, 0.92);
	color: #e11d48;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
	z-index: 2;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}
.zp-drawer-fav-slide__remove:hover {
	background: #fff;
	color: #be123c;
}
body.zp-intent-provider .zp-client-only { display: none !important; }
body.zp-intent-client .zp-provider-only { display: none !important; }
body.zp-intent-client .zp-pro-noise { display: none !important; }

/* Hero segmented intent switch */
.zp-intent-switch {
	display: inline-flex;
	align-items: center;
	gap: 0;
	padding: 4px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.06);
	border: 1px solid rgba(15, 23, 42, 0.08);
	margin: 10px 0 14px;
	max-width: 100%;
}
.zp-intent-switch__btn {
	appearance: none;
	border: 0;
	background: transparent;
	color: #0a1628;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	padding: 10px 12px;
	border-radius: 999px;
	cursor: pointer;
	white-space: nowrap;
}
.zp-intent-switch__btn.is-active {
	background: var(--zp-nav-blue);
	color: #fff;
	box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
}
.zp-intent-switch__btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.22);
}
@media (max-width: 899px) {
	.zp-intent-switch {
		width: 100%;
		justify-content: space-between;
	}
	.zp-intent-switch__btn {
		flex: 1 1 50%;
		text-align: center;
	}
}

/* Provider mode: hide search entirely (hero) */
body.zp-intent-provider .zp-search-panel--py {
	display: none !important;
}

.zp-provider-panel {
	margin-top: 12px;
}
.zp-provider-panel__card {
	border: 1px solid rgba(37, 99, 235, 0.18);
	background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(255,255,255,0.85));
	border-radius: 16px;
	padding: 14px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.zp-provider-panel__title {
	margin: 0 0 10px 0;
	font-size: 16px;
	line-height: 1.2;
	color: #0a1628;
}
.zp-provider-panel__actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
.zp-provider-panel__back {
	margin-top: 12px;
	padding-top: 10px;
	border-top: 1px solid rgba(37, 99, 235, 0.12);
}
.zp-provider-panel__back-q {
	margin: 0 0 6px 0;
	font-size: 13px;
	color: #334155;
}
.zp-provider-panel__back-link {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: #1d4ed8;
	text-decoration: none;
}
.zp-provider-panel__back-link:hover {
	text-decoration: underline;
}

/* Provider actions (in hero) */
.zp-provider-actions {
	margin: 6px 0 12px;
}
.zp-provider-actions__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}
.zp-provider-actions__card {
	position: relative;
	border: 1px solid rgba(37, 99, 235, 0.16);
	background: #fff;
	border-radius: 16px;
	padding: 12px;
	box-shadow: var(--zp-card-elev-shadow);
}
.zp-provider-actions__card--pro {
	border-color: var(--zp-pro-card-border-strong);
	box-shadow: var(--zp-pro-card-shadow);
}
.zp-provider-actions__badge {
	position: absolute;
	top: 12px;
	right: 12px;
	font-size: 12px;
	font-weight: 800;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(245, 158, 11, 0.14);
	color: #92400e;
	border: 1px solid rgba(245, 158, 11, 0.28);
}
.zp-provider-actions__title {
	margin: 0 0 6px 0;
	font-size: 15px;
	line-height: 1.2;
	color: #0a1628;
}
.zp-provider-actions__text {
	margin: 0 0 12px 0;
	font-size: 13px;
	color: #334155;
	line-height: 1.35;
}
.zp-provider-actions__back {
	margin-top: 12px;
	padding-top: 10px;
	border-top: 1px solid rgba(37, 99, 235, 0.12);
}
.zp-provider-actions__back-q {
	margin: 0 0 6px 0;
	font-size: 13px;
	color: #334155;
}
.zp-provider-actions__back-link {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: #1d4ed8;
	text-decoration: none;
}
.zp-provider-actions__back-link:hover {
	text-decoration: underline;
}

@media (min-width: 900px) {
	.zp-provider-actions__grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}
@media (min-width: 900px) {
	.zp-provider-panel__actions {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (min-width: 900px) {
	.zp-header-nav__desktop {
		display: flex;
	}

	.zp-header-nav__mobile-bar {
		display: none !important;
	}
}

@media (max-width: 899px) {
	.zp-header-nav__desktop {
		display: none !important;
	}

	.zp-header-nav__mobile-bar {
		display: flex;
	}

	.zp-header--nav.zp-header--2026 .zp-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.zp-header--nav.zp-header--2026 .zp-header-nav__mobile-loc:hover {
		background: rgba(255, 255, 255, 0.1);
	}

	.zp-header--nav.zp-header--2026 .zp-header-nav__mobile-loc .zp-header-nav__location-text {
		color: rgba(255, 255, 255, 0.96);
	}

	.zp-header--nav.zp-header--2026 .zp-header-nav__mobile-loc-ico,
	.zp-header--nav.zp-header--2026 .zp-header-nav__mobile-loc .fa-map-marker {
		color: #fff;
	}

	/* single-row mobile header: logo left, menú derecha (tamaños logo en bloque base .zp-header-nav__mobile-brand) */
	.zp-header-nav__mobile-bar {
		min-height: 78px;
	}
}

/* ========== New Homepage 2026: hide DirectoryEngine chrome ========== */
body.zp-market-home #header-wrapper,
body.zp-market-home #sticky-holder {
	display: none !important;
}

/* Fallback for iOS (before JS body class runs): homepage is page-id-562 */
body.page-id-562 #header-wrapper,
body.page-id-562 #sticky-holder {
	display: none !important;
}

body.zp-market-home #page {
	padding-top: 0 !important;
}

body.zp-market-home .marsk-black {
	z-index: 10001;
}

/* Chrome DirectoryEngine en la home nueva (logo / menú legacy) si sigue pintándose */
body:has(.zp-home.zp-home--py) #header-wrapper,
body:has(.zp-home.zp-home--py) #sticky-holder {
	display: none !important;
}

/* ========== Zippyn header — logo | ubicación | Publicar ========== */
.zp-header__inner--clean {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px 16px;
}

.zp-header__inner--clean .zp-logo {
	justify-self: start;
}

.zp-header__inner--clean .zp-header-location {
	justify-self: center;
	max-width: min(340px, 100%);
	width: 100%;
	margin: 0 auto;
}

.zp-header__inner--clean .zp-header__actions--single {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 0;
	flex-wrap: nowrap;
}

.zp-header__actions--single .zp-btn--header {
	white-space: nowrap;
}

.zp-customer-cta--mid {
	margin-top: 40px;
	margin-bottom: 8px;
}

/* ========== Zippyn Plus (Pro) ========== */
.zp-plus {
	margin-top: 48px;
}

.zp-plus__card {
	background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 42%, #172554 100%);
	border-radius: 22px;
	padding: clamp(22px, 4vw, 36px);
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.zp-plus__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(200px, 0.55fr);
	gap: 28px 32px;
	align-items: center;
}

.zp-plus__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(251, 191, 36, 0.15);
	border: 1px solid rgba(251, 191, 36, 0.45);
	color: #fde68a;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.06em;
	margin-bottom: 14px;
}

.zp-plus__crown {
	font-size: 18px;
	line-height: 1;
}

.zp-plus__title {
	margin: 0 0 10px;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
}

.zp-plus__subtitle {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.45;
	color: rgba(226, 232, 240, 0.88);
	max-width: 38rem;
}

.zp-plus__alliances {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 600;
	color: rgba(226, 232, 240, 0.76);
	max-width: 38rem;
	letter-spacing: 0.01em;
}

.zp-plus__benefits {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
}

.zp-plus__benefits li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 13px;
	font-weight: 600;
	color: #e2e8f0;
}

.zp-plus__benefits .fa {
	color: #fbbf24;
	font-size: 14px;
}

.zp-plus__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 26px !important;
	border-radius: 14px !important;
	font-weight: 800 !important;
	background: linear-gradient(180deg, #fcd34d 0%, #f59e0b 100%) !important;
	color: #1e293b !important;
	box-shadow: 0 10px 28px rgba(251, 191, 36, 0.35) !important;
	border: none !important;
	text-decoration: none !important;
}

.zp-plus__cta:hover {
	filter: brightness(1.06);
	color: #0f172a !important;
}

/* Mini Pro section (kept clean, shorter) */
.zp-plus--mini .zp-plus__card {
	border-radius: 18px;
}

.zp-plus--mini .zp-plus__benefits {
	gap: 8px 12px;
	margin-bottom: 18px;
}

.zp-plus--mini .zp-plus__benefits li {
	padding: 7px 10px;
	font-size: 12px;
}

/* Compact big Pro card (blue) */
.zp-pro-strong__card--compact {
	padding: 18px 18px 16px;
	background: linear-gradient(155deg, #0b3aa6 0%, #1d4ed8 52%, #1e40af 100%);
}

.zp-pro-strong__card--compact .zp-pro-strong__list {
	margin-bottom: 18px;
	gap: 10px;
}

.zp-pro-strong__card--compact .zp-pro-strong__title {
	margin-bottom: 14px;
}

.zp-pro-strong__card--compact .zp-pro-strong__list li {
	font-size: 14px;
}

.zp-plus__visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.zp-plus__mock {
	position: relative;
	width: min(260px, 100%);
	aspect-ratio: 4 / 5;
	border-radius: 20px;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.zp-plus__mock-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	padding: 6px 12px;
	border-radius: 10px;
	background: rgba(251, 191, 36, 0.95);
	color: #1e293b;
	font-weight: 900;
	font-size: 11px;
	letter-spacing: 0.08em;
}

.zp-plus__mock-chart {
	position: absolute;
	bottom: 18px;
	left: 18px;
	right: 18px;
	height: 42%;
	border-radius: 12px;
	background: linear-gradient(
		to top,
		rgba(59, 130, 246, 0.35) 0%,
		rgba(59, 130, 246, 0.08) 55%,
		transparent 100%
	);
	border: 1px dashed rgba(255, 255, 255, 0.15);
}

.zp-plus__mock-chart::before {
	content: "";
	position: absolute;
	bottom: 8px;
	left: 10%;
	right: 10%;
	height: 55%;
	border-radius: 8px 8px 0 0;
	background: linear-gradient(to top, #38bdf8, rgba(56, 189, 248, 0.15));
	opacity: 0.85;
}

/* ========== Aliados ========== */
.zp-allies {
	margin-top: 44px;
	padding: 22px 0 26px;
	background: linear-gradient(180deg, #fffbf5 0%, #fff4e6 50%, #fffaf3 100%);
	border-top: 1px solid rgba(234, 88, 12, 0.12);
	border-bottom: 1px solid rgba(234, 88, 12, 0.08);
	overflow-x: hidden;
}

.zp-allies__inner {
	display: grid;
	grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
	gap: 24px 28px;
	align-items: start;
}

.zp-allies-intro__icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: linear-gradient(135deg, #fb923c, #ea580c);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 12px;
	box-shadow: 0 8px 22px rgba(234, 88, 12, 0.28);
}

.zp-allies-intro__title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 800;
	color: var(--ylb-text);
}

.zp-allies-intro__desc {
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1.45;
	color: #57534e;
	max-width: 22rem;
}

.zp-allies-intro__pro-line {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 14px;
	max-width: 22rem;
	font-size: 13px;
	line-height: 1.4;
	font-weight: 600;
	color: #1e40af;
	letter-spacing: 0.01em;
	background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(254, 252, 232, 0.75));
	border: 1px solid rgba(37, 99, 235, 0.18);
	border-radius: 10px;
	padding: 8px 11px;
	box-shadow: 0 1px 4px rgba(37, 99, 235, 0.06);
}

.zp-allies-intro__pro-icon {
	flex-shrink: 0;
	font-size: 14px;
	line-height: 1;
}

.zp-allies-intro__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	font-weight: 700;
	font-size: 14px;
	background: var(--ylb-blue);
	color: #fff !important;
	box-shadow: 0 6px 18px rgba(29, 78, 216, 0.28);
}

.zp-allies-intro__btn:hover {
	filter: brightness(1.05);
}

.zp-allies-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 6px 4px 14px;
	margin: 0 -8px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.zp-allies-track::-webkit-scrollbar {
	height: 6px;
}

.zp-allies-track::-webkit-scrollbar-thumb {
	background: rgba(234, 88, 12, 0.35);
	border-radius: 6px;
}

.zp-ally-card {
	position: relative;
	flex: 0 0 min(156px, 64vw);
	width: min(156px, 64vw);
	min-width: min(156px, 64vw);
	max-width: min(156px, 64vw);
	scroll-snap-align: start;
	background: #fff;
	border-radius: 14px;
	padding: 11px 10px 10px;
	border: 1px solid rgba(251, 146, 60, 0.22);
	box-shadow: 0 6px 18px rgba(120, 53, 15, 0.07);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 5px;
	box-sizing: border-box;
}

.zp-ally-card__badge {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 1;
	font-size: 9px;
	padding: 3px 7px;
	border-radius: 999px;
	line-height: 1;
	pointer-events: none;
}

.zp-ally-card__logo {
	flex: 0 0 auto;
	width: 100%;
	min-height: 36px;
	border-radius: 10px;
	background: linear-gradient(135deg, #fffdfb, #fff7ed);
	border: 2px solid #fdba74;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 12px;
	color: #ea580c;
	box-sizing: border-box;
}

.zp-ally-card__name {
	margin: 0;
	font-size: 13px;
	font-weight: 800;
	color: var(--ylb-text);
	line-height: 1.2;
	letter-spacing: -0.02em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.zp-ally-card__discount {
	margin: 0;
	font-size: 15px;
	font-weight: 900;
	color: #c2410c;
}

.zp-ally-card__desc {
	margin: 0;
	font-size: 12px;
	line-height: 1.35;
	color: #78716c;
	flex: 1;
}

.zp-ally-card__more {
	font-size: 13px;
	font-weight: 700;
	color: var(--ylb-blue);
	cursor: default;
}

.zp-allies-intro__geo-hint {
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.35;
	color: #78716c;
}

.zp-ally-card--compact {
	align-self: stretch;
}

.zp-ally-card__logo--img {
	padding: 3px;
	overflow: hidden;
	background: #fff;
}

.zp-ally-card__logo--img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.zp-ally-card__promo {
	margin: 0;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.25;
	color: #b91c1c;
	letter-spacing: -0.02em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.zp-ally-card__promo--plain {
	color: #c2410c;
}

.zp-ally-card__prov {
	margin: 0;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
	color: #78716c;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.zp-ally-card__meta {
	margin: 0;
	font-size: 11px;
	line-height: 1.35;
	color: #57534e;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.zp-ally-card__fine {
	margin: 0;
	font-size: 10px;
	line-height: 1.35;
	color: #a8a29e;
}

.zp-ally-card__wa {
	font-size: 10px;
	font-weight: 800;
	color: #15803d;
	text-decoration: none;
	margin-top: auto;
	padding-top: 6px;
	border-top: 1px solid rgba(21, 128, 61, 0.15);
	line-height: 1.25;
}

.zp-ally-card__wa:hover,
.zp-ally-card__wa:focus-visible {
	text-decoration: underline;
}

.zp-ally-card__pro-only {
	display: block;
	font-size: 9px;
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
	margin-top: auto;
	padding: 8px 6px;
	color: #713f12;
	background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
	border: 1.5px solid rgba(217, 119, 6, 0.55);
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(180, 83, 9, 0.12);
}

/* Franja compacta de aliados (flujo “Necesito un servicio”) */
.zp-section.zp-allies-mini {
	margin-top: 22px;
	margin-bottom: 6px;
	padding: 12px 0 10px;
	background: linear-gradient(180deg, rgba(255, 251, 245, 0.92) 0%, rgba(255, 247, 237, 0.55) 100%);
	border-bottom: 1px solid rgba(234, 88, 12, 0.08);
}

.zp-allies-mini .zp-section-title--macro {
	font-size: 17px;
	line-height: 1.2;
}

.zp-allies-mini__head {
	align-items: flex-start;
	margin-bottom: 8px;
}

.zp-allies-mini__sub {
	margin: 4px 0 0;
	font-size: 12px;
	line-height: 1.35;
	color: #78716c;
	max-width: 16rem;
}

.zp-allies-mini__geo {
	margin: 8px 0 0;
	font-size: 11px;
	line-height: 1.35;
	color: #78716c;
	max-width: 18rem;
}

.zp-allies-mini-track {
	gap: 10px;
	padding: 4px 4px 10px;
	margin: 0 -6px;
}

.zp-ally-card--mini {
	flex: 0 0 min(128px, 52vw);
	width: min(128px, 52vw);
	min-width: min(128px, 52vw);
	max-width: min(128px, 52vw);
	padding: 8px 8px 9px;
	gap: 4px;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(120, 53, 15, 0.06);
	box-sizing: border-box;
	align-items: stretch;
}

.zp-ally-card__logo--mini {
	flex: 0 0 auto;
	width: 100%;
	min-height: 28px;
	border-radius: 8px;
	font-size: 10px;
	box-sizing: border-box;
}

.zp-ally-card__logo--mini.zp-ally-card__logo--img {
	padding: 2px;
}

.zp-ally-card__name--mini {
	font-size: 11px;
	line-height: 1.15;
	-webkit-line-clamp: 2;
}

.zp-ally-card__promo--mini {
	font-size: 11px;
	line-height: 1.2;
	font-weight: 900;
	color: #b45309;
	margin-top: 1px;
}

.zp-ally-card__prov--mini {
	font-size: 8px;
	margin-top: 1px;
	opacity: 0.92;
}

@media (max-width: 900px) {
	.zp-plus__grid {
		grid-template-columns: 1fr;
	}

	.zp-plus__visual {
		order: -1;
	}

	.zp-plus__mock {
		max-height: 220px;
		aspect-ratio: 16 / 10;
		width: 100%;
	}

	.zp-allies__inner {
		grid-template-columns: 1fr;
	}

	.zp-ally-card {
		width: min(148px, 58vw);
	}

	.zp-ally-card--mini {
		width: min(118px, 46vw);
	}

	.zp-header__inner--clean {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
	}

	.zp-header__inner--clean .zp-logo {
		grid-column: 1;
		grid-row: 1;
	}

	.zp-header__inner--clean .zp-header__actions--single {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
	}

	.zp-header__inner--clean .zp-header-location {
		grid-column: 1 / -1;
		grid-row: 2;
		justify-self: stretch;
		max-width: none;
		width: 100%;
		justify-content: center;
	}
}

/* —— Homepage search: classic vs Modo IA —— */
.zp-search-stack {
	margin-top: 10px;
}

.zp-search-mode-toggle {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 14px;
	padding: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.zp-search-mode-toggle__pill {
	appearance: none;
	border: 0;
	cursor: pointer;
	margin: 0;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	color: #475569;
	background: transparent;
	transition:
		background 0.15s ease,
		color 0.15s ease,
		box-shadow 0.15s ease;
}

.zp-search-mode-toggle__pill:hover {
	color: #0f172a;
	background: rgba(248, 250, 252, 0.95);
}

.zp-search-mode-toggle__pill:not(.zp-search-mode-toggle__pill--active) {
	opacity: 0.52;
}

.zp-search-mode-toggle__pill--active {
	opacity: 1;
	background: #fff;
	color: #0f172a;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}

body.zp-search-ai .zp-search-mode-toggle__pill[data-zp-search-mode='ai'].zp-search-mode-toggle__pill--active {
	box-shadow:
		0 0 0 2px rgba(37, 99, 235, 0.35),
		0 2px 12px rgba(37, 99, 235, 0.18);
	color: #1d4ed8;
}

.zp-ai-mode-label {
	display: none;
	margin: 4px 0 12px;
	padding: 0 4px;
	font-size: 13px;
	font-weight: 700;
	color: #2563eb;
	letter-spacing: 0.01em;
}

body.zp-search-ai .zp-ai-mode-label {
	display: block;
}

body.zp-search-ai .zp-normal-search {
	display: none !important;
}

body.zp-search-ai #zp-ai-search {
	display: block !important;
}

.zp-ai-search {
	max-width: 640px;
	margin: 0 auto 12px;
	padding: 0 2px;
	box-sizing: border-box;
	width: 100%;
}

.zp-ai-search__field-wrap {
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

/* Modo IA — ubicación: barra completa debajo del campo, antes del botón principal */
.zp-ai-search__location-row {
	margin-top: 14px;
	width: 100%;
	box-sizing: border-box;
}

.zp-ai-search__location-chip {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border-radius: 14px;
	border: 1px solid var(--ylb-border, #e2e8f0);
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease;
}

.zp-ai-search__location-chip:hover {
	border-color: #cbd5e1;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.zp-ai-search__location-chip:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.22);
	border-color: #93c5fd;
}

.zp-ai-search__location-chip-icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2563eb;
	font-size: 18px;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.zp-ai-search__location-chip-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.zp-ai-search__location-chip-primary {
	display: block;
	font-size: 14px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.25;
}

.zp-ai-search__location-chip-sub {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
	line-height: 1.3;
}

.zp-ai-search__location-chip-chev {
	flex: 0 0 auto;
	color: #94a3b8;
	font-size: 14px;
}

.zp-ai-search__actions.zp-ai-search__actions--solo {
	margin-top: 12px;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.zp-ai-search__actions--solo .zp-ai-search__submit {
	width: 100%;
	flex: 1 1 auto;
}

.zp-ai-sparkle {
	display: inline-block;
	line-height: 1;
	opacity: 0.95;
	filter: drop-shadow(0 1px 2px rgba(124, 58, 237, 0.25));
}

.zp-ai-sparkle--input {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	font-size: 1.05rem;
	pointer-events: none;
}

.zp-ai-search__input--sparkle {
	padding-left: 44px;
	width: 100%;
	box-sizing: border-box;
}

.zp-ai-sparkle--pill {
	margin-right: 6px;
	vertical-align: -2px;
	font-size: 0.95em;
}

.zp-ai-mode-label .zp-ai-sparkle--mode {
	margin-right: 6px;
	vertical-align: -1px;
}

.zp-ai-search__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.zp-ai-sparkle--submit {
	font-size: 1rem;
	flex-shrink: 0;
}

.zp-ai-sparkle--intent {
	flex-shrink: 0;
	font-size: 1.05rem;
	margin-top: 2px;
}

.zp-ai-search__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	width: 100%;
	box-sizing: border-box;
}

.zp-ai-search__submit {
	flex: 1 1 auto;
	min-width: 140px;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
}

/* Home búsqueda clásica: mismo componente .zp-ai-search__submit pero sin el volumen del modo IA. */
.zp-home--py .zp-search-panel--py button#zp-classic-search-submit.zp-ai-search__submit.zp-btn {
	min-height: 40px !important;
	min-width: 0 !important;
	padding: 8px 14px !important;
	font-size: 14px !important;
	line-height: 1.25 !important;
	border-radius: 12px !important;
}

.zp-ai-loading-text {
	margin: 0 0 10px;
	padding: 0 4px;
	font-size: 14px;
	font-weight: 700;
	color: #475569;
}

.zp-ai-query-context {
	margin: 0 0 10px;
	padding: 10px 14px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #0f172a;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
}

.zp-ai-results-count {
	margin: 0 0 10px;
	padding: 0 4px;
	font-size: 14px;
	font-weight: 700;
	color: #334155;
}

.zp-ai-suggested-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.zp-ai-chip {
	cursor: pointer;
	border: 1px solid #cbd5e1;
	background: #f8fafc;
	color: #0f172a;
	font-size: 13px;
	font-weight: 700;
	padding: 8px 14px;
	border-radius: 999px;
	transition:
		border-color 0.15s ease,
		background 0.15s ease;
}

.zp-ai-chip:hover {
	border-color: #2563eb;
	background: rgba(37, 99, 235, 0.06);
	color: #1d4ed8;
}

.zp-ai-category-correction {
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 14px;
	background: #f8fafc;
	border: 1px dashed #cbd5e1;
}

.zp-ai-category-correction__label {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 700;
	color: #475569;
}

.zp-ai-category-correction__control select {
	width: 100%;
	box-sizing: border-box;
}

/* —— AI intent search (homepage) —— */
.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.zp-ai-home {
	margin: 0 0 20px;
	padding: 0 2px;
}

.zp-ai-home__heading {
	margin: 0 0 12px;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 800;
	line-height: 1.2;
	color: #0f172a;
	letter-spacing: -0.02em;
}

.zp-ai-home__input {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 16px 18px;
	font-size: 17px;
	line-height: 1.35;
	border-radius: 14px;
	border: 2px solid #e2e8f0;
	background: #fff;
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.zp-ai-home__input:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.22);
}

.zp-ai-home__input.zp-ai-search__input--sparkle {
	padding-left: 44px;
}

.zp-ai-home__fallback-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
}

.zp-ai-home__fallback-label {
	font-size: 13px;
	font-weight: 700;
	color: #475569;
}

.zp-ai-home__select {
	flex: 1 1 220px;
	min-width: 0;
	padding: 10px 12px;
	font-size: 14px;
	border-radius: 10px;
	border: 1px solid #cbd5e1;
	background: #fff;
}

.zp-ai-home__hint {
	margin: 10px 0 0;
	font-size: 13px;
	line-height: 1.45;
	color: #64748b;
}

.zp-ai-home__location-hint {
	margin: 12px 0 0;
	padding: 12px 14px;
	border-radius: 12px;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	color: #9a3412;
	font-size: 14px;
	font-weight: 600;
}

.zp-ai-home__location-hint--subtle {
	background: #f8fafc;
	border-color: #e2e8f0;
	color: #475569;
	font-weight: 600;
	font-size: 13px;
}

.zp-ai-home__skeleton-inner {
	display: grid;
	gap: 12px;
	margin-top: 14px;
}

.zp-ai-home__skel-card {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px;
	border-radius: 14px;
	border: 1px solid #e8ecf1;
	background: #fafbfc;
}

.zp-ai-home__skel-img {
	width: 72px;
	height: 72px;
	border-radius: 12px;
	background: linear-gradient(90deg, #e8ecf1 0%, #f1f5f9 50%, #e8ecf1 100%);
	background-size: 200% 100%;
	animation: zp-ai-shimmer 1.1s ease-in-out infinite;
	flex-shrink: 0;
}

.zp-ai-home__skel-line {
	height: 10px;
	border-radius: 6px;
	background: #e8ecf1;
	flex: 1;
	min-width: 0;
	animation: zp-ai-shimmer 1.1s ease-in-out infinite;
}

.zp-ai-home__skel-line--lg {
	height: 14px;
	max-width: 70%;
}

.zp-ai-home__skel-line--sm {
	max-width: 40%;
	height: 8px;
}

@keyframes zp-ai-shimmer {
	0% {
		opacity: 0.55;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0.55;
	}
}

/* Unified AI + classic results (header + list spacing) */
.zp-results-unified__header {
	margin: 12px 0 16px;
	padding: 0 4px;
	text-align: left;
}

.zp-results-unified__title {
	margin: 0 0 8px;
	font-size: clamp(1.05rem, 3vw, 1.25rem);
	font-weight: 800;
	color: #0f172a;
	line-height: 1.35;
}

.zp-results-unified__sub {
	margin: 0;
	font-size: 15px;
	color: #475569;
	line-height: 1.4;
}

.zp-results-unified__intro-title {
	margin: 0 0 12px;
	padding: 0 2px;
	font-size: clamp(1.25rem, 3.8vw, 1.55rem);
	font-weight: 800;
	color: #0f172a;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

/* Resultados de búsqueda (home clásico + IA): cards alineadas con listados compactos */
.zp-ai-home__results .zp-ai-home__list {
	gap: 14px;
}

.zp-ai-home__results .zp-ai-home__card {
	padding: 15px 14px;
	border-radius: 18px;
	gap: 14px;
	min-height: 96px;
}

.zp-ai-home__results .zp-ai-home__media {
	flex: 0 0 102px;
	width: 102px;
	height: 102px;
	border-radius: 16px;
}

.zp-ai-home__results .zp-ai-home__card-title {
	font-size: 1.125rem;
}

.zp-results-unified__header--empty .zp-results-unified__title {
	color: #64748b;
}

.zp-ai-change-cat-wrap {
	margin: 16px 0 10px;
	padding: 0 4px;
}

.zp-ai-change-cat-link {
	display: inline;
	background: none;
	border: 0;
	padding: 0;
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
	font-family: inherit;
}

.zp-ai-change-cat-link:hover {
	color: #2563eb;
}

.zp-home-results-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin: 18px 4px 8px;
}

.zp-section--unified-results {
	padding-top: 8px;
}

.zp-results-unified__list-wrap {
	margin-top: 4px;
}

.zp-results-unified--split {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-top: 4px;
}

.zp-results-unified__block-heading {
	margin: 0 0 10px;
	padding: 0 4px;
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.zp-results-unified__block-heading--pro {
	font-size: 14px;
	font-weight: 800;
	color: #1e40af;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.zp-results-unified__block-heading--pro::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	flex-shrink: 0;
}

.zp-results-unified__list--recommended,
.zp-results-unified__list--main {
	flex-direction: column;
	overflow-x: hidden;
	overflow-y: visible;
	max-width: 100%;
}

.zp-results-unified__list-wrap--classic {
	margin-top: 0;
}

.zp-results-unified__strip-wrap {
	margin: 0 -8px;
	padding: 0 8px;
	overflow: hidden;
}

.zp-results-unified__strip {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 9px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scroll-snap-type: x proximity;
	padding-bottom: 8px;
}

.zp-results-unified__strip-card {
	flex: 0 0 clamp(170px, 51vw, 219px);
	max-width: 219px;
	scroll-snap-align: start;
}

.zp-results-unified__strip-link {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 8px;
	padding: 8px 11px;
	border-radius: 12px;
	border: 1px solid var(--ylb-border, #e8ecf1);
	background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
	box-shadow: var(--zp-card-elev-shadow);
	text-decoration: none;
	color: inherit;
	min-height: 63px;
	box-sizing: border-box;
}

.zp-results-unified__strip-link:hover {
	border-color: #cbd5e1;
	box-shadow:
		var(--zp-card-elev-shadow),
		0 6px 18px rgba(15, 23, 42, 0.05);
}

.zp-results-unified__strip-card--pro .zp-results-unified__strip-link {
	border-color: var(--zp-pro-card-border);
	box-shadow: var(--zp-pro-card-shadow);
}

.zp-results-unified__strip-card--pro .zp-results-unified__strip-link:hover {
	border-color: rgba(245, 158, 11, 0.55);
	box-shadow: var(--zp-pro-card-shadow-strong);
}

.zp-results-unified__strip-media {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	overflow: hidden;
	background: #f1f5f9;
	align-self: center;
}

.zp-results-unified__strip-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.zp-results-unified__strip-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	justify-content: center;
}

.zp-results-unified__strip-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	color: #0f172a;
}

.zp-results-unified__strip-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px 7px;
	font-size: 13px;
	color: #64748b;
}

.zp-results-unified__stars--sm .zp-ai-home__star {
	font-size: 9px;
	line-height: 1;
}

.zp-results-unified__strip-rating-val {
	font-weight: 700;
	color: #334155;
	font-size: 14px;
}

.zp-results-unified__strip-pro {
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.04em;
	padding: 2px 7px;
	border-radius: 4px;
	background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
	color: #fff;
	border: 1px solid rgba(180, 83, 9, 0.35);
	line-height: 1.2;
	max-width: 7.5rem;
	text-align: center;
	white-space: normal;
	hyphens: auto;
}

.zp-results-unified__strip-dist {
	font-weight: 500;
	color: #94a3b8;
	margin-left: auto;
	font-size: 11px;
}

.zp-ai-home__list {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.zp-ai-home__card {
	display: flex;
	gap: 12px;
	align-items: stretch;
	padding: 10px;
	border-radius: 16px;
	border: 1px solid var(--ylb-border, #e8ecf1);
	background: #fff;
	box-shadow: var(--zp-card-elev-shadow);
	text-align: left;
	min-height: 92px;
	box-sizing: border-box;
}

.zp-ai-home__card.zp-ai-home__card--pro {
	border-color: var(--zp-pro-card-border);
	box-shadow: var(--zp-pro-card-shadow);
}

.zp-ai-home__media {
	flex: 0 0 82px;
	width: 82px;
	height: 82px;
	border-radius: 14px;
	overflow: hidden;
	background: #f1f5f9;
	display: block;
	line-height: 0;
}

.zp-ai-home__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.zp-ai-home__img.zp-place-img--placeholder,
.zp-results-unified__strip-img.zp-place-img--placeholder {
	object-fit: cover;
	object-position: center center;
	padding: 0;
	box-sizing: border-box;
	background: #f1f5f9;
}

.zp-ai-home__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.zp-ai-home__title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px;
	justify-content: space-between;
}

.zp-ai-home__card-title {
	margin: 0;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
	flex: 1 1 auto;
	min-width: 0;
}

.zp-ai-home__card-title a {
	color: inherit;
	text-decoration: none;
}

.zp-ai-home__card-title a:hover {
	text-decoration: underline;
}

.zp-ai-home__pro {
	display: inline-flex;
	align-items: center;
	padding: 2px 6px;
	border-radius: 5px;
	background: rgba(37, 99, 235, 0.92);
	color: #fff;
	font-size: 7.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	flex-shrink: 0;
	line-height: 1.15;
	text-transform: none;
	white-space: nowrap;
}

.zp-ai-home__rating-row {
	font-size: 13px;
	color: #64748b;
}

.zp-ai-home__stars {
	color: #fbbf24;
	margin-right: 2px;
}

.zp-ai-home__stars--row {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	margin-right: 6px;
	vertical-align: middle;
}

.zp-ai-home__star {
	font-size: 13px;
	line-height: 1;
}

.zp-ai-home__star--on {
	color: #fbbf24;
}

.zp-ai-home__star--off {
	color: #e2e8f0;
}

.zp-ai-home__rating-val {
	font-weight: 800;
	color: #0f172a;
}

.zp-ai-home__dist {
	font-size: 12px;
	font-weight: 400;
	color: #94a3b8;
}

.zp-ai-home__dist--na {
	font-weight: 600;
	color: #94a3b8;
}

.zp-ai-home__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

.zp-ai-home__reviews {
	font-size: 12px;
	font-weight: 500;
	color: #94a3b8;
}

.zp-ai-home__cat {
	font-size: 14px;
	font-weight: 600;
	color: #334155;
	background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(239, 246, 255, 0.92) 100%);
	border: 1px solid rgba(148, 163, 184, 0.35);
	padding: 5px 11px;
	border-radius: 999px;
	max-width: 100%;
	overflow-wrap: anywhere;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.zp-ai-home__macro {
	font-size: 11px;
	font-weight: 700;
	color: #475569;
	background: #f1f5f9;
	padding: 4px 8px;
	border-radius: 8px;
}

.zp-ai-home__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.zp-ai-home__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 9px 12px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.2;
	min-height: 44px;
	box-sizing: border-box;
}

.zp-ai-home__cta--wa {
	background: #22c55e;
	color: #fff;
}

.zp-ai-home__cta--wa:hover {
	filter: brightness(1.05);
	color: #fff;
}

.zp-ai-home__cta--profile {
	border: 1px solid #cbd5e1;
	color: #0f172a;
	background: #fff;
}

.zp-ai-home__cta--profile:hover {
	border-color: #94a3b8;
}

.zp-ai-home__empty {
	margin-top: 14px;
	padding: 18px;
	border-radius: 14px;
	background: #f8fafc;
	border: 1px dashed #cbd5e1;
	text-align: center;
}

.zp-ai-home__empty-text {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 700;
	color: #334155;
}

/* Classic home (?q=): empty-state lines inside the same dashed card as IA */
.zp-ai-home__empty .zp-results-unified__sub {
	margin: 0 auto 10px;
	max-width: 26rem;
	text-align: center;
}

.zp-ai-home__empty .zp-section-hint {
	margin: 0 auto 12px;
	max-width: 26rem;
	text-align: center;
}

.zp-ai-home__more-wrap {
	margin-top: 12px;
	display: flex;
	justify-content: center;
}

.zp-ai-home__divider-label {
	margin: 18px 0 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #94a3b8;
}

@media (max-width: 560px) {
	.zp-search-stack {
		margin-top: 8px;
	}

	.zp-search-mode-toggle {
		width: 100%;
		box-sizing: border-box;
		justify-content: stretch;
	}

	.zp-search-mode-toggle__pill {
		flex: 1 1 0;
		min-width: 0;
		text-align: center;
		padding: 10px 10px;
	}

	.zp-ai-mode-label {
		margin-bottom: 10px;
		line-height: 1.35;
	}

	.zp-ai-search__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.zp-ai-search__submit {
		width: 100%;
		flex: none;
		min-height: 48px;
		box-sizing: border-box;
		text-align: center;
	}

	.zp-ai-search__location-chip {
		min-height: 52px;
		padding: 12px 14px;
	}

	.zp-ai-sparkle--input {
		left: 14px;
	}

	.zp-ai-results-count,
	.zp-ai-loading-text,
	.zp-ai-query-context {
		word-break: break-word;
		overflow-wrap: anywhere;
	}
}

@media (max-width: 520px) {
	.zp-ai-home__card {
		flex-direction: column;
		min-height: 0;
	}

	.zp-ai-home__media {
		width: 100%;
		height: 170px;
		flex: none;
	}

	.zp-ai-home__results .zp-ai-home__media {
		height: 187px;
	}
}

/* ========== Mobile DE: sin barra celeste (logo + login); menú en botón flotante ========== */
.zp-mobile-menu-fab {
	position: fixed;
	top: max(12px, env(safe-area-inset-top, 12px));
	left: max(12px, env(safe-area-inset-left, 12px));
	z-index: 10050;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #334155;
	font-size: 20px;
	border: 1px solid #e5e7eb;
	text-decoration: none;
}
.zp-mobile-menu-fab:hover,
.zp-mobile-menu-fab:focus {
	color: #1e293b;
	text-decoration: none;
}

/*
 * Vista estrecha en cualquier URL: ocultar chrome superior DirectoryEngine (#header-wrapper)
 * cuando la plantilla responsive usa get_header() (no solo plantillas mobile/).
 */
@media (max-width: 991px) {
	#header-wrapper,
	#sticky-holder {
		display: none !important;
	}
}

/* ========== YoLaburo mobile bottom nav (5 tabs + FAB) ========== */
#menu-footer.zp-bottom-nav-shell {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	padding-bottom: env(safe-area-inset-bottom, 0px);
	background: #fff !important;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.07);
}

#menu-footer.zp-bottom-nav-shell .zp-bottom-nav {
	display: block;
	margin: 0;
	padding: 0;
}

.zp-bottom-nav__inner {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2px;
	padding: 6px 10px 12px;
	max-width: 520px;
	margin: 0 auto;
	box-sizing: border-box;
}

.zp-bottom-nav__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
	min-width: 0;
	min-height: 48px;
	padding: 4px 2px 2px;
	text-decoration: none !important;
	color: #64748b !important;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.15;
	-webkit-tap-highlight-color: transparent;
	box-sizing: border-box;
}

.zp-bottom-nav__item .zp-bottom-nav__txt {
	text-align: center;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 1.1;
	word-break: normal;
	hyphens: none;
}

/* Fondo celeste del tab activo: con !important y selector largo porque reboot / estilos
   legacy suelen pisar background en <a> sin el mismo nivel de urgencia que color. */
#menu-footer.zp-bottom-nav-shell .zp-bottom-nav__inner > a.zp-bottom-nav__item--active {
	color: #0052ff !important;
	font-weight: 800;
	background: rgba(0, 82, 255, 0.14) !important;
	border-radius: 14px;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	box-shadow: inset 0 0 0 1px rgba(0, 82, 255, 0.18);
}

#menu-footer.zp-bottom-nav-shell .zp-bottom-nav__inner > a.zp-bottom-nav__item--active .zp-bottom-nav__ico,
#menu-footer.zp-bottom-nav-shell .zp-bottom-nav__inner > a.zp-bottom-nav__item--active .zp-bottom-nav__ico i {
	color: #0052ff !important;
}

#menu-footer.zp-bottom-nav-shell .zp-bottom-nav__inner > a.zp-bottom-nav__item--active .zp-bottom-nav__txt {
	color: inherit;
}

.zp-bottom-nav__ico {
	font-size: 21px;
	line-height: 1;
	color: inherit;
}

.zp-bottom-nav__fab-slot {
	flex: 0 0 70px;
	max-width: 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	padding-bottom: 2px;
}

.zp-bottom-nav__fab {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
	color: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	box-shadow:
		0 4px 14px rgba(37, 99, 235, 0.22),
		0 1px 0 rgba(255, 255, 255, 0.22) inset;
	transform: translateY(-12px);
	border: 2px solid #fff;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

.zp-bottom-nav__fab:hover,
.zp-bottom-nav__fab:focus {
	color: #fff !important;
}

.zp-bottom-nav__fab-plus {
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
	display: block;
	margin-top: -1px;
}

.zp-bottom-nav__fab-caption {
	font-size: 10px;
	font-weight: 700;
	color: #2563eb;
	margin-top: -4px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	pointer-events: none;
}

.zp-bottom-nav__fab-slot--active .zp-bottom-nav__fab {
	box-shadow:
		0 5px 16px rgba(37, 99, 235, 0.28),
		0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.zp-bottom-nav__fab-slot--active .zp-bottom-nav__fab-caption {
	color: #1d4ed8;
}

/* Espacio para que el contenido no quede bajo la barra */
body:has(#menu-footer.zp-bottom-nav-shell) #wrapper,
body:has(#menu-footer.zp-bottom-nav-shell) #page,
body:has(#menu-footer.zp-bottom-nav-shell) .wrapper-mobile,
body:has(#menu-footer.zp-bottom-nav-shell) #main {
	padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
}

/* Search-location: ubicación (misma etiqueta que header/home) + categoría sobre el mapa */
.zp-sl-map-col--toolbar {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.zp-sl-map-context {
	flex-shrink: 0;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 12px;
	padding: 10px 12px 12px;
	margin-bottom: 10px;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
	box-sizing: border-box;
}

.zp-sl-map-context__loc {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 10px;
	font-size: 13px;
	color: #334155;
}

.zp-sl-map-context__pin {
	color: #0052ff;
	font-size: 16px;
	flex-shrink: 0;
}

.zp-sl-map-context__label {
	flex: 1 1 140px;
	min-width: 0;
	font-weight: 600;
	line-height: 1.35;
}

.zp-sl-map-context__change {
	margin-left: auto;
	border: 0;
	background: rgba(0, 82, 255, 0.12);
	color: #0052ff;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 10px;
	border-radius: 8px;
	cursor: pointer;
}

.zp-sl-map-context__change:active {
	opacity: 0.92;
}

.zp-sl-map-context__cat-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #64748b;
	margin-bottom: 6px;
}

.zp-sl-map-context .chosen-container,
.zp-sl-map-context select.tax-item {
	width: 100% !important;
	max-width: 100%;
}

.zp-sl-map-col--toolbar #google_canvas_wrap {
	flex: 1 1 auto;
	min-height: 260px;
	position: relative;
}

/* Mapa/lista móvil: barra ubicación+categoría fuera de la columna del mapa → visible también en “Ver lista” */
.search-location-wrap .zp-sl-map-context--above-split {
	margin: 0 0 12px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

/* ── Móvil (≤991px): CTAs y textos más legibles (carruseles, resultados, WhatsApp home) ── */
@media (max-width: 991px) {
	.zp-results-unified__intro-title {
		font-size: clamp(1.2rem, 4.2vw, 1.45rem);
	}

	.zp-service-card--carousel .zp-service-card__title {
		font-size: clamp(11.3px, 3.34vw, 14.8px);
	}

	.zp-service-card--carousel .zp-card-rating--above-title {
		font-size: 13px;
	}

	.zp-service-card--carousel .zp-service-card__cat {
		font-size: 12.1px;
	}

	.zp-service-card--carousel .zp-card-dist,
	.zp-service-card--carousel .zp-card-meta {
		font-size: 11px;
	}

	.zp-service-card--carousel .zp-card-dist {
		color: #94a3b8;
		font-weight: 400;
	}

	.zp-service-card--carousel .zp-card-corner-stack {
		max-width: calc(100% - 13px);
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.zp-card-pro-badge {
		padding: 1px 5px;
		font-size: 7.5px;
		white-space: nowrap;
	}

	.zp-service-card--carousel .zp-card-pro-badge {
		font-size: 7px;
		padding: 1px 5px;
		white-space: nowrap;
	}

	.zp-service-card--carousel .zp-service-card__cta-row .zp-btn--wa {
		font-size: 13px;
		padding: 9px 12px;
		min-height: 44px;
	}

	.zp-service-card--carousel .zp-btn--carousel-profile {
		font-size: 13px;
		padding: 9px 12px;
		min-height: 42px;
	}

	.zp-home--py .zp-service-card--carousel .zp-service-card__cta-row .zp-btn--wa.openWhatsapp {
		font-size: 13px !important;
		padding: 9px 12px !important;
		min-height: 44px !important;
		box-shadow: 0 3px 12px rgba(37, 211, 102, 0.22) !important;
	}

	.zp-home--py .zp-btn--wa.openWhatsapp {
		font-size: 15px !important;
		padding: 11px 16px !important;
		min-height: 44px !important;
	}

	.zp-home--py .zp-btn--wa-muted {
		font-size: 15px !important;
	}

	.zp-ai-home__cta {
		font-size: 13px;
		padding: 9px 12px;
		min-height: 44px;
	}

	.zp-ai-home__rating-row {
		font-size: 14px;
	}

	.zp-ai-home__cat {
		font-size: 15px;
	}

	.zp-ai-home__star {
		font-size: 14px;
	}
}

