/* ==========================================================================
   PropertyBazaar Theme - Main Stylesheet
   Brand: teal + orange on warm neutrals
   ========================================================================== */

:root {
	--pb-teal:        #1F6B6B;
	--pb-teal-dark:   #144F4F;
	--pb-teal-light:  #2C8A8A;
	--pb-orange:      #E8873C;
	--pb-orange-dark: #C46F2A;
	--pb-orange-soft: #FDF6EC;
	--pb-ink:         #0E1F26;
	--pb-cream:       #F5F5F0;
	--pb-cream-dark:  #E8E4D8;
	--pb-charcoal:    #2C2C2A;
	--pb-warm-gray:   #5F5E5A;
	--pb-warm-gray-light: #888780;
	--pb-border:      #D3D1C7;
	--pb-white:       #FFFFFF;
	--pb-success:     #5DCAA5;
	--pb-radius:      8px;
	--pb-radius-lg:   12px;
	--pb-shadow:      0 1px 3px rgba(14, 31, 38, 0.06);
	--pb-shadow-lg:   0 8px 24px rgba(14, 31, 38, 0.08);
	--pb-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
	font-family: var(--pb-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--pb-charcoal);
	background: var(--pb-cream);
	margin: 0;
	-webkit-font-smoothing: antialiased;
}

a { color: var(--pb-teal); text-decoration: none; }
a:hover { color: var(--pb-teal-dark); }

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

h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; font-weight: 500; color: var(--pb-ink); line-height: 1.3; }

.pb-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.pb-skip-link { position: absolute; left: -9999px; }
.pb-skip-link:focus { position: absolute; left: 10px; top: 10px; background: var(--pb-ink); color: white; padding: 10px 16px; border-radius: 4px; z-index: 100; }

/* ==========================================================================
   Header
   ========================================================================== */

.pb-site-header {
	background: linear-gradient(180deg, #000000 0%, #0A1418 100%);
	color: var(--pb-cream);
	position: sticky; top: 0; z-index: 50;
	box-shadow: 0 2px 0 rgba(232,135,60,0.12), 0 4px 12px rgba(0,0,0,0.35);
	border-bottom: 1px solid rgba(232,135,60,0.15);
}

.pb-site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	padding: 14px 20px; gap: 24px;
}
.pb-site-header__left { display: flex; align-items: center; gap: 32px; }
.pb-site-header__right { display: flex; align-items: center; gap: 16px; }

.pb-brand { text-decoration: none; }
.pb-brand__text {
	color: var(--pb-cream); font-size: 20px; font-weight: 500;
	letter-spacing: -0.3px; display: inline-block;
}
.pb-brand__accent { color: var(--pb-orange); }
.pb-brand__tld { color: var(--pb-warm-gray-light); font-size: 12px; margin-left: 1px; }
.pb-brand__text--footer { font-size: 22px; color: var(--pb-ink); }
.pb-brand__text--footer .pb-brand__accent { color: var(--pb-orange); }

.pb-nav__list {
	list-style: none; padding: 0; margin: 0;
	display: flex; gap: 22px;
}
.pb-nav__list a {
	color: #B8C4C9; font-size: 14px;
	text-decoration: none; transition: color 0.15s;
}
.pb-nav__list a:hover { color: var(--pb-cream); }
.pb-nav__accent, .pb-nav__list .pb-nav__accent { color: var(--pb-orange) !important; }

.pb-link-quiet { color: #B8C4C9; font-size: 14px; }
.pb-link-quiet:hover { color: var(--pb-cream); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.pb-btn {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 10px 18px; border-radius: 6px;
	font-size: 14px; font-weight: 500;
	border: 0; cursor: pointer; text-decoration: none;
	transition: transform 0.05s, background 0.15s;
	font-family: inherit; line-height: 1;
}
.pb-btn:active { transform: scale(0.98); }
.pb-btn--primary { background: var(--pb-orange); color: white; }
.pb-btn--primary:hover { background: var(--pb-orange-dark); color: white; }
.pb-btn--teal { background: var(--pb-teal); color: white; }
.pb-btn--teal:hover { background: var(--pb-teal-dark); color: white; }
.pb-btn--outline { background: transparent; color: var(--pb-teal); border: 1px solid var(--pb-teal); }
.pb-btn--outline:hover { background: var(--pb-teal); color: white; }
.pb-btn--full { width: 100%; justify-content: center; }

/* ==========================================================================
   Hero
   ========================================================================== */

.pb-hero {
	background: var(--pb-ink);
	color: var(--pb-cream);
	padding: 60px 0 48px;
}
.pb-hero__eyebrow {
	color: var(--pb-orange); font-size: 11px;
	letter-spacing: 2px; text-align: center; margin: 0 0 12px;
}
.pb-hero__title {
	text-align: center; color: var(--pb-cream);
	font-size: clamp(24px, 4vw, 36px);
	font-weight: 500; line-height: 1.25;
	margin: 0 0 32px;
}
.pb-hero__title-accent { color: var(--pb-success); }

.pb-hero-search {
	background: var(--pb-cream); border-radius: 10px;
	padding: 6px; max-width: 640px; margin: 0 auto;
	display: flex; align-items: center; gap: 6px;
	flex-wrap: wrap;
}
.pb-hero-search__tabs {
	display: flex; gap: 2px;
	background: var(--pb-cream-dark);
	border-radius: 6px; padding: 3px;
}
.pb-tab {
	display: inline-block;
	padding: 6px 14px; font-size: 13px;
	color: var(--pb-warm-gray); border-radius: 4px;
	cursor: pointer;
}
.pb-tab input { display: none; }
.pb-tab--active { background: var(--pb-teal); color: white; font-weight: 500; }
.pb-tab:has(input:checked) { background: var(--pb-teal); color: white; font-weight: 500; }

.pb-hero-search__input-wrap {
	flex: 1; display: flex; align-items: center; gap: 6px;
	min-width: 240px;
}
.pb-hero-search__input {
	flex: 1; padding: 10px 14px; font-size: 14px;
	background: transparent; border: 0;
	color: var(--pb-charcoal);
	outline: none;
}
.pb-hero-search__input::placeholder { color: var(--pb-warm-gray-light); }
.pb-hero-search__btn { padding: 10px 18px; }

.pb-hero__alt-cta {
	text-align: center; margin: 18px 0 0;
	color: #B8C4C9; font-size: 13px;
}
.pb-hero__alt-cta a {
	color: var(--pb-orange);
	border-bottom: 1px dashed var(--pb-orange);
	padding-bottom: 1px;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.pb-section { padding: 48px 0; background: var(--pb-white); }
.pb-section--muted { background: var(--pb-cream); }

.pb-section-head {
	display: flex; justify-content: space-between;
	align-items: baseline; margin-bottom: 24px;
	flex-wrap: wrap; gap: 12px;
}
.pb-section-head__title {
	font-size: 22px; margin: 0; color: var(--pb-ink);
}
.pb-section-head__link {
	color: var(--pb-teal); font-size: 14px; font-weight: 500;
}

/* ==========================================================================
   Listing cards
   ========================================================================== */

.pb-listings-grid {
	display: grid; gap: 16px;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.pb-listings-grid--2col {
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.pb-card {
	background: white; border: 1px solid var(--pb-border);
	border-radius: var(--pb-radius-lg); overflow: hidden;
	transition: transform 0.15s, box-shadow 0.15s;
}
.pb-card:hover { transform: translateY(-2px); box-shadow: var(--pb-shadow-lg); }

.pb-card__media {
	display: block; position: relative;
	aspect-ratio: 4 / 3; overflow: hidden;
	background: linear-gradient(135deg, var(--pb-teal) 0%, var(--pb-teal-light) 100%);
}
.pb-card__media img {
	width: 100%; height: 100%; object-fit: cover;
}
.pb-card__badges {
	position: absolute; top: 10px; left: 10px; right: 10px;
	display: flex; gap: 6px; flex-wrap: wrap;
	justify-content: space-between;
}

.pb-card__body { padding: 14px 16px; }
.pb-card__title {
	font-size: 15px; font-weight: 500;
	margin: 0 0 4px; line-height: 1.3;
}
.pb-card__title a { color: var(--pb-ink); }
.pb-card__meta, .pb-card__specs {
	margin: 2px 0; font-size: 12px; color: var(--pb-warm-gray);
}
.pb-card__foot {
	margin-top: 12px; padding-top: 12px;
	border-top: 1px solid var(--pb-cream-dark);
	display: flex; justify-content: space-between; align-items: center;
}
.pb-card__price-value {
	font-size: 17px; font-weight: 500; color: var(--pb-ink);
}
.pb-card__price-yield {
	font-size: 12px; color: var(--pb-warm-gray); margin-left: 6px;
}
.pb-card__status {
	font-size: 11px; color: var(--pb-success); font-weight: 500;
}

/* ==========================================================================
   Badges
   ========================================================================== */

.pb-badge {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 4px 8px; border-radius: 4px;
	font-size: 10px; font-weight: 500;
	background: rgba(255,255,255,0.95); color: var(--pb-teal);
}
.pb-badge--verified { background: var(--pb-teal); color: white; }
.pb-badge--assured { background: var(--pb-orange); color: white; }
.pb-badge--listed { background: rgba(255,255,255,0.95); color: var(--pb-warm-gray); }
.pb-badge--orange { background: var(--pb-orange); color: white; }
.pb-badge--dark { background: var(--pb-ink); color: var(--pb-orange); }
.pb-badge--outline {
	background: transparent; color: var(--pb-teal);
	border: 1px solid var(--pb-teal);
}
.pb-badge__date { opacity: 0.75; font-weight: 400; }

/* ==========================================================================
   Wanted banner
   ========================================================================== */

.pb-wanted-banner { padding: 32px 0; background: var(--pb-cream); }
.pb-wanted-banner__inner {
	background: var(--pb-orange-soft);
	border: 1px dashed var(--pb-orange);
	border-radius: var(--pb-radius-lg);
	padding: 20px 24px;
	display: flex; justify-content: space-between;
	align-items: center; gap: 16px; flex-wrap: wrap;
}
.pb-wanted-banner__title {
	font-size: 15px; font-weight: 500;
	color: var(--pb-ink); margin: 0 0 4px;
	display: flex; align-items: center; gap: 6px;
}
.pb-wanted-banner__title svg { color: var(--pb-orange); }
.pb-wanted-banner__body {
	margin: 0; font-size: 13px; color: var(--pb-warm-gray);
}

/* ==========================================================================
   Value grid (homepage)
   ========================================================================== */

.pb-value-grid {
	display: grid; gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.pb-value {
	background: white; padding: 24px;
	border-radius: var(--pb-radius-lg);
	border: 1px solid var(--pb-border);
}
.pb-value__icon {
	width: 44px; height: 44px; border-radius: 10px;
	background: var(--pb-orange-soft); color: var(--pb-orange);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 12px;
}
.pb-value h3 { font-size: 16px; margin: 0 0 6px; }
.pb-value p { font-size: 14px; color: var(--pb-warm-gray); margin: 0; }

/* ==========================================================================
   Archive / search results
   ========================================================================== */

.pb-archive { padding: 32px 20px; }
.pb-archive__head { margin-bottom: 24px; }
.pb-archive__title { font-size: 26px; margin: 0 0 4px; }
.pb-archive__count { color: var(--pb-warm-gray); font-size: 14px; margin: 0; }

.pb-archive__layout {
	display: grid; grid-template-columns: 260px 1fr; gap: 32px;
}
@media (max-width: 768px) {
	.pb-archive__layout { grid-template-columns: 1fr; }
}

.pb-archive__filters {
	background: white; padding: 20px;
	border: 1px solid var(--pb-border); border-radius: var(--pb-radius-lg);
	align-self: start;
}
.pb-archive__filters h3 { font-size: 16px; margin: 0 0 16px; }

.pb-filter { margin-bottom: 16px; }
.pb-filter label {
	display: block; font-size: 12px; font-weight: 500;
	color: var(--pb-warm-gray); margin-bottom: 6px;
}
.pb-filter select, .pb-filter input {
	width: 100%; padding: 8px 10px; font-size: 14px;
	border: 1px solid var(--pb-border); border-radius: 6px;
	background: white; color: var(--pb-charcoal);
	font-family: inherit;
}
.pb-filter-row { display: flex; gap: 8px; }
.pb-filter__submit { width: 100%; margin-top: 8px; justify-content: center; }
.pb-filter__reset {
	display: block; text-align: center; margin-top: 10px; font-size: 12px;
	color: var(--pb-warm-gray);
}

.pb-pagination { margin-top: 32px; }
.pb-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pb-pagination a, .pb-pagination span {
	padding: 8px 12px; border: 1px solid var(--pb-border);
	border-radius: 6px; text-decoration: none;
	color: var(--pb-charcoal); font-size: 14px;
}
.pb-pagination .current { background: var(--pb-teal); color: white; border-color: var(--pb-teal); }

.pb-empty {
	padding: 40px 20px; text-align: center;
	background: white; border-radius: var(--pb-radius-lg);
	border: 1px dashed var(--pb-border);
}
.pb-empty--large { padding: 80px 20px; }
.pb-empty h1, .pb-empty h2 { margin-bottom: 8px; }
.pb-empty p { color: var(--pb-warm-gray); margin: 0 0 20px; }

/* ==========================================================================
   Single property
   ========================================================================== */

.pb-single__hero {
	background: var(--pb-ink); color: var(--pb-cream);
	padding: 24px 0;
}
.pb-single__breadcrumb {
	font-size: 12px; color: #B8C4C9; margin-bottom: 8px;
}
.pb-single__breadcrumb a { color: #B8C4C9; }
.pb-single__title {
	font-size: 26px; color: var(--pb-cream); margin: 0 0 4px;
}
.pb-single__location {
	color: #B8C4C9; margin: 0 0 12px; font-size: 14px;
}
.pb-single__hero-badges {
	display: flex; gap: 8px; flex-wrap: wrap;
}

.pb-single__body { padding: 24px 20px 48px; }

.pb-single__gallery {
	aspect-ratio: 16 / 9; border-radius: var(--pb-radius-lg);
	overflow: hidden; margin-bottom: 24px;
	background: linear-gradient(135deg, var(--pb-teal) 0%, var(--pb-teal-light) 100%);
}
.pb-single__gallery img { width: 100%; height: 100%; object-fit: cover; }

.pb-single__layout {
	display: grid; grid-template-columns: 1fr 340px; gap: 32px;
}
@media (max-width: 900px) {
	.pb-single__layout { grid-template-columns: 1fr; }
}

.pb-block {
	background: white; padding: 24px;
	border: 1px solid var(--pb-border);
	border-radius: var(--pb-radius-lg);
	margin-bottom: 16px;
}
.pb-block h2 { font-size: 18px; margin: 0 0 16px; }

.pb-block--price {
	display: flex; justify-content: space-between; align-items: center;
	flex-wrap: wrap; gap: 20px;
}
.pb-price-huge {
	font-size: 32px; font-weight: 500; color: var(--pb-ink);
	line-height: 1;
}
.pb-price-per { font-size: 13px; color: var(--pb-warm-gray); margin-top: 4px; }
.pb-price-invest { display: flex; gap: 20px; }
.pb-price-invest small {
	display: block; font-size: 11px; color: var(--pb-warm-gray);
	text-transform: uppercase; letter-spacing: 0.5px;
}
.pb-price-invest strong {
	font-size: 18px; color: var(--pb-teal); font-weight: 500;
	display: block; margin-top: 2px;
}

.pb-block--leased { background: var(--pb-orange-soft); border-color: var(--pb-orange); }

.pb-spec-grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px;
}
.pb-spec {
	display: flex; flex-direction: column;
	padding: 12px; background: var(--pb-cream); border-radius: 6px;
}
.pb-spec span { font-size: 11px; color: var(--pb-warm-gray); text-transform: uppercase; letter-spacing: 0.5px; }
.pb-spec strong { font-size: 14px; color: var(--pb-ink); margin-top: 4px; font-weight: 500; }

.pb-scorecard {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
}
.pb-score-cell {
	background: white; padding: 12px 14px; border-radius: 6px;
	border: 1px solid var(--pb-cream-dark);
}
.pb-score-cell span { font-size: 11px; color: var(--pb-warm-gray); display: block; }
.pb-score-cell strong { font-size: 15px; color: var(--pb-ink); font-weight: 500; display: block; margin-top: 2px; }

.pb-prose { color: var(--pb-charcoal); line-height: 1.7; }
.pb-prose p { margin: 0 0 1em; }

/* Enquiry sidebar */
.pb-single__aside {
	position: sticky; top: 80px; align-self: start;
}
.pb-enquire {
	background: white; border: 1px solid var(--pb-border);
	border-radius: var(--pb-radius-lg); padding: 24px;
}
.pb-enquire h3 { font-size: 17px; margin: 0 0 6px; }
.pb-enquire > p { font-size: 13px; color: var(--pb-warm-gray); margin: 0 0 16px; }
.pb-enquire__form { display: flex; flex-direction: column; gap: 10px; }
.pb-enquire__form input, .pb-enquire__form textarea {
	padding: 10px 12px; font-size: 14px;
	border: 1px solid var(--pb-border); border-radius: 6px;
	font-family: inherit; color: var(--pb-charcoal);
	background: white;
}
.pb-enquire__form textarea { resize: vertical; }
.pb-consent {
	display: flex; align-items: flex-start; gap: 8px;
	font-size: 12px; color: var(--pb-warm-gray); line-height: 1.4;
}
.pb-consent input { margin-top: 2px; }

.pb-enquire__quick {
	display: flex; gap: 8px; margin-top: 12px;
	padding-top: 16px; border-top: 1px solid var(--pb-cream-dark);
}
.pb-quick-action {
	flex: 1; text-align: center;
	padding: 8px; border: 1px solid var(--pb-border);
	border-radius: 6px; font-size: 12px; color: var(--pb-charcoal);
}
.pb-quick-action:hover { background: var(--pb-cream); }

/* ==========================================================================
   Footer
   ========================================================================== */

.pb-site-footer {
	background: var(--pb-white); border-top: 1px solid var(--pb-border);
	padding: 48px 0 24px; margin-top: 48px;
}
.pb-footer-grid {
	display: grid; gap: 32px;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	margin-bottom: 32px;
}
@media (max-width: 768px) {
	.pb-footer-grid { grid-template-columns: 1fr 1fr; }
}
.pb-footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--pb-warm-gray); margin: 0 0 12px; }
.pb-footer-col ul { list-style: none; padding: 0; margin: 0; }
.pb-footer-col li { margin-bottom: 6px; }
.pb-footer-col a { color: var(--pb-charcoal); font-size: 14px; }
.pb-footer-col a:hover { color: var(--pb-teal); }
.pb-footer-tagline { font-size: 12px; color: var(--pb-orange); letter-spacing: 1px; margin: 8px 0 12px; }
.pb-footer-note { font-size: 13px; color: var(--pb-warm-gray); max-width: 320px; margin: 0; }
.pb-footer-bottom {
	border-top: 1px solid var(--pb-border); padding-top: 20px;
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
	font-size: 12px; color: var(--pb-warm-gray-light);
}
.pb-footer-bottom p { margin: 0; }

/* ==========================================================================
   Utility & pages
   ========================================================================== */

.pb-page { padding: 40px 20px; background: white; min-height: 40vh; }
.pb-page__title { font-size: 28px; margin-bottom: 20px; }

@media (max-width: 640px) {
	.pb-nav { display: none; }
	.pb-hero { padding: 40px 0 32px; }
	.pb-hero-search { flex-direction: column; }
	.pb-hero-search__tabs { width: 100%; }
	.pb-hero-search__input-wrap { width: 100%; }
}

/* ==========================================================================
   Phase 2 additions: Save button, Account dropdown, Forms, Auth, Dashboard
   ========================================================================== */

/* Save button on cards */
.pb-card { position: relative; }
.pb-save-btn {
	position: absolute; top: 12px; right: 12px;
	width: 36px; height: 36px; border-radius: 50%;
	background: rgba(255,255,255,0.92); border: 0;
	color: #B8C4C9; cursor: pointer; z-index: 3;
	display: flex; align-items: center; justify-content: center;
	transition: transform 0.15s, background 0.15s, color 0.15s;
	box-shadow: 0 2px 6px rgba(14,31,38,0.15);
}
.pb-save-btn:hover { transform: scale(1.08); background: white; color: var(--pb-orange); }
.pb-save-btn.is-saved { color: var(--pb-orange); background: white; }
.pb-save-btn:disabled { opacity: 0.5; cursor: wait; }

/* Account menu */
.pb-account-menu { position: relative; }
.pb-account-btn {
	display: inline-flex; align-items: center; gap: 8px;
	background: transparent; border: 0; color: #B8C4C9;
	padding: 6px 8px; border-radius: 6px; cursor: pointer;
	font-family: inherit; font-size: 13px;
	transition: color 0.15s, background 0.15s;
}
.pb-account-btn:hover { color: var(--pb-cream); background: rgba(255,255,255,0.05); }
.pb-avatar {
	width: 28px; height: 28px; border-radius: 50%;
	background: var(--pb-orange); color: white;
	display: inline-flex; align-items: center; justify-content: center;
	font-weight: 600; font-size: 12px;
}
.pb-account-btn__name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pb-account-drop {
	position: absolute; top: calc(100% + 6px); right: 0;
	background: white; border: 1px solid var(--pb-border);
	border-radius: 8px; box-shadow: var(--pb-shadow-lg);
	min-width: 200px; padding: 6px 0; z-index: 60;
	display: none;
}
.pb-account-drop.is-open { display: block; }
.pb-account-drop a {
	display: block; padding: 8px 14px; font-size: 13px;
	color: var(--pb-charcoal); text-decoration: none;
}
.pb-account-drop a:hover { background: var(--pb-cream); color: var(--pb-teal); }
.pb-account-drop hr { border: 0; border-top: 1px solid var(--pb-cream-dark); margin: 4px 0; }

/* Forms (general) */
.pb-form { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.pb-form-page { padding: 40px 20px 60px; background: white; }
.pb-form-page__head h1 { font-size: 26px; margin-bottom: 6px; }
.pb-lead { color: var(--pb-warm-gray); font-size: 15px; margin-top: 0; }

.pb-form-row {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
}
.pb-form-field { display: flex; flex-direction: column; }
.pb-form-field label {
	font-size: 12px; font-weight: 500; color: var(--pb-warm-gray);
	text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
}
.pb-form-field input,
.pb-form-field select,
.pb-form-field textarea {
	padding: 10px 12px; font-size: 14px;
	border: 1px solid var(--pb-border); border-radius: 6px;
	font-family: inherit; color: var(--pb-charcoal);
	background: white; width: 100%;
}
.pb-form-field input:focus,
.pb-form-field select:focus,
.pb-form-field textarea:focus {
	outline: 2px solid var(--pb-teal); outline-offset: 1px; border-color: var(--pb-teal);
}
.pb-req { color: var(--pb-orange); font-weight: 600; }
.pb-form-subhead {
	font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px;
	color: var(--pb-warm-gray); border-top: 1px solid var(--pb-cream-dark);
	padding-top: 20px; margin-bottom: 4px; font-weight: 500;
}

.pb-input-pair { display: flex; gap: 6px; }
.pb-input-pair input, .pb-input-pair select { flex: 1; }

.pb-fieldset { border: 0; padding: 0; margin: 0; }
.pb-fieldset legend {
	font-size: 12px; font-weight: 500; color: var(--pb-warm-gray);
	text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px;
	padding: 0;
}
.pb-radios { display: flex; gap: 8px; flex-wrap: wrap; }
.pb-radios--4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
@media (max-width: 640px) { .pb-radios--4 { grid-template-columns: repeat(2, 1fr); } }
.pb-radio-tile {
	flex: 1; min-width: 90px;
	background: white; border: 1px solid var(--pb-border);
	padding: 12px 14px; border-radius: 8px;
	cursor: pointer; text-align: center; font-size: 14px;
	transition: all 0.15s;
}
.pb-radio-tile input { position: absolute; opacity: 0; pointer-events: none; }
.pb-radio-tile:has(input:checked) { border-color: var(--pb-teal); background: rgba(31,107,107,0.05); color: var(--pb-teal); font-weight: 500; }
.pb-radio-tile:hover { border-color: var(--pb-teal-light); }

.pb-checkbox-grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 8px;
}
.pb-checkbox-tile {
	background: white; border: 1px solid var(--pb-border);
	padding: 10px 14px; border-radius: 6px; cursor: pointer;
	font-size: 13px;
}
.pb-checkbox-tile input { margin-right: 6px; }
.pb-checkbox-tile:has(input:checked) { border-color: var(--pb-teal); background: rgba(31,107,107,0.05); color: var(--pb-teal); }

.pb-form-actions {
	display: flex; align-items: center; gap: 16px;
	padding-top: 20px; border-top: 1px solid var(--pb-cream-dark);
	flex-wrap: wrap;
}
.pb-form-note { font-size: 12px; color: var(--pb-warm-gray); margin: 0; }
.pb-btn--lg { padding: 14px 28px; font-size: 15px; }

.pb-inline-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--pb-charcoal); }

/* Alerts */
.pb-alert {
	padding: 12px 16px; border-radius: 6px;
	font-size: 14px; margin-bottom: 16px;
}
.pb-alert--error { background: #FDF0F0; color: #C0392B; border: 1px solid #F5C6C6; }
.pb-alert--success { background: rgba(93,202,165,0.1); color: #1F8964; border: 1px solid rgba(93,202,165,0.4); }

/* Auth pages */
.pb-auth-container {
	min-height: 70vh; background: var(--pb-cream);
	padding: 40px 20px;
	display: flex; align-items: center; justify-content: center;
}
.pb-auth-card {
	background: white; border-radius: var(--pb-radius-lg);
	padding: 32px; max-width: 400px; width: 100%;
	box-shadow: var(--pb-shadow-lg);
}
.pb-auth-card--wide { max-width: 560px; }
.pb-auth-card h1 { margin: 0 0 6px; font-size: 24px; }
.pb-auth-sub { color: var(--pb-warm-gray); font-size: 14px; margin-bottom: 20px; }
.pb-auth-alt {
	margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--pb-cream-dark);
	font-size: 13px; color: var(--pb-warm-gray); text-align: center;
}

/* Dashboard */
.pb-dashboard { padding: 40px 20px 60px; background: var(--pb-cream); }
.pb-dashboard__head {
	display: flex; justify-content: space-between; align-items: flex-start;
	gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.pb-dashboard__head h1 { margin: 0 0 4px; font-size: 26px; }
.pb-dashboard__meta { color: var(--pb-warm-gray); font-size: 13px; margin: 0; }
.pb-dashboard__meta code { background: white; padding: 1px 6px; border-radius: 3px; font-size: 11px; }

.pb-dash-tiles {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px; margin-bottom: 32px;
}
.pb-dash-tile {
	background: white; padding: 20px; border-radius: var(--pb-radius-lg);
	border: 1px solid var(--pb-border);
	display: flex; flex-direction: column;
}
.pb-dash-tile__value { font-size: 32px; font-weight: 500; color: var(--pb-ink); line-height: 1; }
.pb-dash-tile__label { font-size: 12px; color: var(--pb-warm-gray); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 6px; }

.pb-dash-section { margin-bottom: 32px; }

.pb-req-list { display: flex; flex-direction: column; gap: 12px; }
.pb-req-item {
	background: white; border: 1px solid var(--pb-border);
	border-radius: var(--pb-radius-lg); padding: 20px;
}
.pb-req-item__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 6px; }
.pb-req-item__head h3 { font-size: 16px; margin: 0; }
.pb-req-item__meta { font-size: 13px; color: var(--pb-warm-gray); margin: 0 0 8px; }
.pb-req-item__matches { font-size: 13px; color: var(--pb-charcoal); margin: 0; }
.pb-req-item__matches a { color: var(--pb-teal); font-weight: 500; }

.pb-req-thankyou h2 { margin-top: 30px; font-size: 20px; }
.pb-req-thankyou .pb-listings-grid { margin-top: 16px; }

/* ==========================================================================
   Phase 3: Vertical hero, Property Passport, Owner tweaks
   ========================================================================== */

.pb-vertical-hero {
	background: linear-gradient(135deg, var(--pb-ink) 0%, var(--pb-teal-dark) 100%);
	color: var(--pb-cream);
	padding: 48px 0 40px;
}
.pb-vertical-hero__title {
	color: var(--pb-cream); font-size: clamp(24px, 4vw, 32px);
	margin: 0 0 8px; text-align: center;
}
.pb-vertical-hero__sub {
	color: #B8C4C9; font-size: 15px; text-align: center; margin: 0;
}

.pb-passport {
	background: linear-gradient(135deg, rgba(31,107,107,0.03) 0%, rgba(93,202,165,0.05) 100%);
	border-left: 3px solid var(--pb-teal);
}
.pb-passport__intro {
	color: var(--pb-warm-gray); font-size: 13px; margin: 0 0 16px;
}
.pb-passport__grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
}
.pb-passport__item {
	background: white; padding: 12px 14px; border-radius: 6px;
	border: 1px solid var(--pb-border);
}
.pb-passport__item strong {
	display: block; font-size: 13px; margin-bottom: 2px;
}
.pb-passport__item span { font-size: 11px; color: var(--pb-warm-gray); }
.pb-passport__item--pass strong { color: var(--pb-success); }
.pb-passport__item--partial strong { color: var(--pb-warm-gray-light); }
.pb-passport__item--pass { border-color: rgba(93,202,165,0.5); }

/* ==========================================================================
   Phase 5: Portal login pages + Wanted marketplace + Footer portals
   ========================================================================== */

/* CRM portal (dark, professional) */
.pb-auth-container--crm {
	background: linear-gradient(135deg, #0E1F26 0%, #144F4F 100%);
	min-height: 100vh; padding: 40px 20px;
}
.pb-auth-card--crm {
	background: #fff; max-width: 420px;
	box-shadow: 0 20px 60px rgba(14,31,38,0.4);
}
.pb-auth-card--crm h1 { display: none; }

/* Partner portal (orange accent) */
.pb-auth-container--partner {
	background: linear-gradient(135deg, #0E1F26 0%, #E8873C 200%);
	background-color: #FDF6EC;
	min-height: 100vh; padding: 40px 20px;
}
.pb-auth-card--partner {
	background: #fff; max-width: 460px;
	box-shadow: 0 20px 60px rgba(232,135,60,0.25);
	border-top: 4px solid var(--pb-orange);
}
.pb-auth-card--partner h1 { display: none; }

.pb-portal-brand {
	display: flex; align-items: center; gap: 14px;
	margin-bottom: 24px; padding-bottom: 20px;
	border-bottom: 1px solid var(--pb-cream-dark);
}
.pb-portal-brand__ring {
	width: 44px; height: 44px; border-radius: 12px;
	background: var(--pb-teal); color: white;
	display: inline-flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.pb-portal-brand--partner .pb-portal-brand__ring { background: var(--pb-orange); }
.pb-portal-brand__title { font-size: 17px; font-weight: 600; color: var(--pb-ink); }
.pb-portal-brand__sub { font-size: 12px; color: var(--pb-warm-gray); margin-top: 2px; }

.pb-portal-links {
	margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--pb-cream-dark);
	font-size: 13px; text-align: center; color: var(--pb-warm-gray);
	display: flex; justify-content: center; gap: 6px; flex-wrap: wrap;
}
.pb-portal-links a { color: var(--pb-teal); text-decoration: none; }
.pb-portal-links a:hover { text-decoration: underline; }
.pb-portal-links strong { color: var(--pb-orange); }

/* Footer portal links */
.pb-footer-portals {
	border-top: 1px solid var(--pb-border);
	padding: 16px 0 4px; margin-top: 24px;
	font-size: 12px; color: var(--pb-warm-gray);
	display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.pb-footer-portals__label { color: var(--pb-warm-gray-light); }
.pb-footer-portals a { color: var(--pb-teal); }

/* Wanted marketplace */
.pb-wanted { padding: 40px 20px 60px; background: var(--pb-cream); }
.pb-wanted__head {
	display: flex; justify-content: space-between; align-items: flex-start;
	gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.pb-wanted__head h1 { margin: 0 0 4px; }
.pb-wanted-filters {
	background: white; padding: 16px 20px; border-radius: var(--pb-radius-lg);
	border: 1px solid var(--pb-border);
	display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap;
}
.pb-wanted-filters select {
	padding: 8px 10px; font-size: 14px;
	border: 1px solid var(--pb-border); border-radius: 6px;
	background: white; min-width: 160px;
}
.pb-wanted__count { color: var(--pb-warm-gray); font-size: 13px; margin-bottom: 20px; }
.pb-wanted-grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
}
.pb-wanted-card {
	background: white; padding: 20px;
	border: 1px solid var(--pb-border); border-radius: var(--pb-radius-lg);
	display: flex; flex-direction: column; gap: 10px;
	transition: transform 0.15s, box-shadow 0.15s;
}
.pb-wanted-card:hover { transform: translateY(-2px); box-shadow: var(--pb-shadow-lg); }
.pb-wanted-card__head { display: flex; gap: 6px; flex-wrap: wrap; }
.pb-wanted-card__title { font-size: 16px; margin: 0; color: var(--pb-ink); font-weight: 500; line-height: 1.3; }
.pb-wanted-card__meta {
	display: flex; flex-direction: column; gap: 4px;
	font-size: 13px; color: var(--pb-charcoal);
}
.pb-wanted-card__notes {
	font-size: 13px; color: var(--pb-warm-gray);
	background: var(--pb-cream); padding: 10px; border-radius: 4px;
	margin: 4px 0 0; line-height: 1.5;
}
.pb-wanted-card__foot {
	display: flex; justify-content: space-between; align-items: center;
	padding-top: 10px; border-top: 1px solid var(--pb-cream-dark);
	margin-top: auto;
}
.pb-wanted-card__age { font-size: 12px; color: var(--pb-warm-gray); }

/* ==========================================================================
   Phase 6: New multi-column dark footer + PB Club
   ========================================================================== */

.pb-site-footer {
	background: #000;
	color: #fff;
	margin-top: 60px;
	background-image:
		radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
	background-size: 22px 22px;
}
.pb-footer-inner { padding: 56px 0 32px; }

.pb-footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: 40px 32px;
	margin-bottom: 32px;
}
@media (max-width: 1024px) { .pb-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .pb-footer-grid { grid-template-columns: 1fr; } }

.pb-footer-col--brand { padding-right: 20px; }
.pb-footer-brand {
	display: inline-flex; align-items: center; gap: 10px;
	text-decoration: none; color: #fff; margin-bottom: 12px;
}
.pb-footer-brand__mark {
	width: 38px; height: 38px; border-radius: 8px;
	background: var(--pb-orange);
	color: #fff; font-weight: 700; font-size: 15px;
	display: inline-flex; align-items: center; justify-content: center;
}
.pb-footer-brand__wordmark { font-size: 20px; font-weight: 500; letter-spacing: 0.3px; color: #fff; }
.pb-footer-brand__tagline { font-size: 13px; color: var(--pb-orange); margin: 0 0 12px; font-weight: 500; letter-spacing: 0.5px; }
.pb-footer-brand__blurb { font-size: 13px; color: #B8C4C9; line-height: 1.6; margin: 0; }

.pb-footer-heading {
	color: var(--pb-orange);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin: 0 0 14px;
	padding: 0;
}
.pb-footer-heading--space { margin-top: 24px; }

.pb-footer-col ul { list-style: none; padding: 0; margin: 0; }
.pb-footer-col li { margin-bottom: 8px; }
.pb-footer-col a {
	color: #E5E9EC;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.15s;
}
.pb-footer-col a:hover { color: #fff; text-decoration: underline; }
.pb-footer-col a strong { color: #fff; font-weight: 500; }

.pb-footer-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
	margin: 20px 0 32px;
}

.pb-footer-bottom {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 40px;
}
@media (max-width: 900px) { .pb-footer-bottom { grid-template-columns: 1fr; } }

.pb-footer-bottom__about p {
	font-size: 13px;
	color: #B8C4C9;
	line-height: 1.7;
	margin: 0;
}

.pb-footer-email {
	margin: 0 0 14px;
	font-size: 14px;
}
.pb-footer-email__label {
	color: #94A3AA;
	font-size: 12px;
	font-weight: 500;
}
.pb-footer-email a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}
.pb-footer-email a:hover { color: var(--pb-orange); }

.pb-social-row {
	display: flex; gap: 10px; margin-bottom: 24px;
}
.pb-social-icon {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	transition: all 0.15s;
	text-decoration: none;
}
.pb-social-icon:hover {
	background: var(--pb-orange); color: #fff;
	transform: translateY(-2px);
}

.pb-portal-strip {
	font-size: 12px; color: #94A3AA;
	padding-top: 14px;
	border-top: 1px solid rgba(255,255,255,0.08);
	display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.pb-portal-strip__label { color: #94A3AA; }
.pb-portal-strip a { color: #E5E9EC; text-decoration: none; }
.pb-portal-strip a:hover { color: var(--pb-orange); }

.pb-footer-copy {
	background: rgba(0,0,0,0.5);
	padding: 16px 0;
	border-top: 1px solid rgba(255,255,255,0.08);
}
.pb-footer-copy p { font-size: 12px; color: #6B7A82; margin: 0; text-align: center; }

/* PB Club shortcode styling */
.pb-club-hero {
	background: linear-gradient(135deg, #0E1F26 0%, #144F4F 100%);
	color: #fff; padding: 60px 40px; border-radius: 12px;
	text-align: center; margin-bottom: 40px;
}
.pb-club-hero h1 { color: #fff; font-size: 42px; margin: 0 0 12px; }
.pb-club-hero p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 600px; margin: 0 auto; }
.pb-club-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.pb-club-tier {
	background: white; padding: 28px 24px;
	border: 2px solid var(--pb-border); border-radius: 12px;
	position: relative; display: flex; flex-direction: column;
}
.pb-club-tier--gold { border-color: var(--pb-orange); box-shadow: 0 8px 30px rgba(232,135,60,0.15); }
.pb-club-tier--gold::before {
	content: 'MOST POPULAR';
	position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
	background: var(--pb-orange); color: white;
	padding: 4px 14px; border-radius: 20px;
	font-size: 10px; font-weight: 700; letter-spacing: 1px;
}
.pb-club-tier__name { font-size: 22px; font-weight: 500; color: var(--pb-ink); margin: 0 0 8px; }
.pb-club-tier__price { font-size: 32px; font-weight: 700; color: var(--pb-teal); margin: 0 0 4px; }
.pb-club-tier__price small { font-size: 14px; color: var(--pb-warm-gray); font-weight: 400; }
.pb-club-tier__duration { font-size: 13px; color: var(--pb-warm-gray); margin-bottom: 20px; }
.pb-club-tier__benefits { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.pb-club-tier__benefits li {
	padding: 8px 0 8px 24px; font-size: 14px; color: var(--pb-charcoal);
	position: relative;
}
.pb-club-tier__benefits li::before {
	content: '✓'; position: absolute; left: 0; color: var(--pb-teal); font-weight: 700;
}

/* Phase 7: Checkout page */
.pb-checkout { max-width: 640px; margin: 0 auto; padding: 60px 20px; }
.pb-checkout-card {
	background: white; padding: 40px;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(14,31,38,0.12);
	border-top: 4px solid var(--pb-orange);
}
.pb-checkout-card h1 { margin: 0 0 24px; color: var(--pb-ink); }
.pb-checkout-summary {
	background: var(--pb-cream); padding: 20px; border-radius: 8px;
	margin-bottom: 24px;
}
.pb-checkout-summary > div {
	display: flex; justify-content: space-between; align-items: center;
	padding: 8px 0; border-bottom: 1px dashed var(--pb-cream-dark);
}
.pb-checkout-summary > div:last-child { border-bottom: none; }
.pb-checkout-summary span { color: var(--pb-warm-gray); font-size: 13px; }
.pb-checkout-summary strong { color: var(--pb-ink); font-size: 15px; }
.pb-checkout-note {
	margin-top: 20px; text-align: center;
	font-size: 12px; color: var(--pb-warm-gray); line-height: 1.6;
}

/* ==========================================================================
   Phase 8: City guides + Glossary
   ========================================================================== */

/* City guides landing */
.pb-city-guides__grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}
.pb-city-guide-card {
	background: white; border-radius: 12px; overflow: hidden;
	border: 1px solid var(--pb-border);
	text-decoration: none; color: inherit;
	display: block;
	transition: transform 0.2s, box-shadow 0.2s;
}
.pb-city-guide-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(14,31,38,0.12); }
.pb-city-guide-card--planned { opacity: 0.65; }
.pb-city-guide-card__hero {
	height: 160px; background-size: cover; background-position: center;
	background-color: var(--pb-teal);
}
.pb-city-guide-card__hero--placeholder {
	background: linear-gradient(135deg, var(--pb-teal), var(--pb-ink));
	display: flex; align-items: center; justify-content: center;
}
.pb-city-guide-card__hero--placeholder span {
	color: white; font-size: 48px; font-weight: 700; letter-spacing: 3px;
	opacity: 0.9;
}
.pb-city-guide-card__body { padding: 20px; }
.pb-city-guide-card__body h3 {
	margin: 0 0 4px; color: var(--pb-ink);
	font-size: 18px; font-weight: 500;
	display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.pb-city-guide-card__state { margin: 0 0 12px; color: var(--pb-warm-gray); font-size: 12px; }
.pb-city-guide-card__stats { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--pb-charcoal); }
.pb-city-guide-card__stats strong { color: var(--pb-teal); }
.pb-city-guide-card__trend { color: #1F8964; font-weight: 600; }

/* City taxonomy landing */
.pb-city-hero {
	background: var(--pb-ink);
	color: white;
	padding: 80px 0;
	background-size: cover; background-position: center;
	margin-bottom: 40px;
}
.pb-city-hero__body h1 { color: white; margin: 0 0 12px; font-size: 44px; font-weight: 400; }
.pb-city-hero__body h1 small { font-weight: 300; color: rgba(255,255,255,0.7); font-size: 20px; }
.pb-city-hero__count { color: var(--pb-orange); font-size: 18px; margin: 0 0 24px; font-weight: 500; }
.pb-city-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.pb-btn--white { color: white !important; border-color: rgba(255,255,255,0.5) !important; }
.pb-btn--white:hover { background: white !important; color: var(--pb-ink) !important; }
.pb-badge--white { color: white; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); }

.pb-city-stats {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px; margin-bottom: 40px;
}
.pb-city-stat {
	background: white; padding: 20px; border-radius: 8px;
	border: 1px solid var(--pb-border);
	display: flex; flex-direction: column;
}
.pb-city-stat__label { color: var(--pb-warm-gray); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.pb-city-stat__value { font-size: 20px; font-weight: 600; color: var(--pb-ink); }
.pb-city-stat__value--trend { color: #1F8964; }

.pb-city-section { margin-bottom: 40px; }
.pb-city-section h2 { color: var(--pb-ink); font-size: 24px; margin-bottom: 16px; }
.pb-city-section__body { color: var(--pb-charcoal); font-size: 15px; line-height: 1.7; }

.pb-city-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pb-city-chip {
	background: white; border: 1px solid var(--pb-border);
	padding: 8px 16px; border-radius: 20px;
	font-size: 13px; color: var(--pb-teal);
	text-decoration: none;
	transition: all 0.15s;
}
.pb-city-chip:hover { background: var(--pb-teal); color: white; border-color: var(--pb-teal); }
.pb-city-chip--static { color: var(--pb-charcoal); cursor: default; }
.pb-city-chip--static:hover { background: white; color: var(--pb-charcoal); }

/* Glossary */
.pb-glossary { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
.pb-glossary__head { margin-bottom: 32px; }
.pb-glossary__search { display: flex; gap: 8px; margin-top: 16px; max-width: 480px; }
.pb-glossary__search input {
	flex: 1; padding: 10px 14px; border: 1px solid var(--pb-border);
	border-radius: 6px; font-size: 15px;
}
.pb-glossary__letters {
	display: flex; flex-wrap: wrap; gap: 4px;
	background: white; padding: 12px; border-radius: 8px;
	border: 1px solid var(--pb-border);
	margin-bottom: 32px;
	position: sticky; top: 70px; z-index: 20;
}
.pb-glossary__letters a {
	padding: 6px 12px; border-radius: 4px;
	text-decoration: none; color: var(--pb-charcoal);
	font-weight: 500; font-size: 14px;
	transition: all 0.1s;
}
.pb-glossary__letters a:hover { background: var(--pb-cream); }
.pb-glossary__letters a.is-active { background: var(--pb-teal); color: white; }
.pb-glossary__letters a.is-empty { color: var(--pb-warm-gray-light); pointer-events: none; opacity: 0.5; }

.pb-glossary__letter-heading {
	color: var(--pb-orange); font-size: 32px;
	margin: 32px 0 12px; padding-bottom: 8px;
	border-bottom: 2px solid var(--pb-orange);
}
.pb-glossary__terms { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
@media (max-width: 640px) { .pb-glossary__terms { grid-template-columns: 1fr; } }
.pb-glossary-term { padding: 12px 0; border-bottom: 1px solid var(--pb-cream-dark); }
.pb-glossary-term h3 { margin: 0 0 4px; font-size: 16px; }
.pb-glossary-term h3 a { color: var(--pb-teal); text-decoration: none; }
.pb-glossary-term h3 a:hover { text-decoration: underline; }
.pb-glossary-term p { margin: 0; color: var(--pb-warm-gray); font-size: 13px; line-height: 1.5; }

/* ==========================================================================
   Phase 9: Mobile UX + PWA
   ========================================================================== */

/* Hamburger toggle */
.pb-mobile-toggle {
	display: none;
	background: transparent; border: none; padding: 8px;
	cursor: pointer; margin-right: 8px;
	flex-direction: column; gap: 4px;
}
.pb-mobile-toggle span {
	display: block; width: 22px; height: 2px;
	background: white; border-radius: 2px;
	transition: transform 0.2s, opacity 0.2s;
}

/* Mobile bottom nav */
.pb-mobile-bottom-nav {
	display: none;
	position: fixed; bottom: 0; left: 0; right: 0;
	background: white; border-top: 1px solid var(--pb-border);
	box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
	z-index: 40;
	padding: 8px 4px calc(8px + env(safe-area-inset-bottom, 0));
	justify-content: space-around; align-items: center;
}
.pb-mobile-bottom-nav a {
	display: flex; flex-direction: column; align-items: center; gap: 3px;
	padding: 6px 8px; text-decoration: none;
	color: var(--pb-warm-gray); font-size: 10px; font-weight: 500;
	min-width: 56px; letter-spacing: 0.2px;
}
.pb-mobile-bottom-nav a svg { color: var(--pb-warm-gray); }
.pb-mobile-bottom-nav a:hover, .pb-mobile-bottom-nav a:focus { color: var(--pb-teal); }
.pb-mobile-bottom-nav a:hover svg { color: var(--pb-teal); }
.pb-mobile-bottom-nav__accent {
	color: white !important;
	background: var(--pb-orange);
	border-radius: 50%;
	width: 52px; height: 52px;
	margin-top: -18px;
	box-shadow: 0 4px 12px rgba(232,135,60,0.4);
	justify-content: center !important;
}
.pb-mobile-bottom-nav__accent svg { color: white !important; }
.pb-mobile-bottom-nav__accent span { display: none; }

/* PWA install banner */
.pb-install-banner {
	position: fixed; bottom: 76px; left: 12px; right: 12px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(14,31,38,0.25);
	padding: 16px;
	z-index: 100;
	display: flex; gap: 16px; align-items: center;
	border-left: 4px solid var(--pb-orange);
	animation: pbSlideUp 0.3s ease-out;
}
@keyframes pbSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.pb-install-banner[hidden] { display: none; }
.pb-install-banner__body { flex: 1; }
.pb-install-banner__body strong { display: block; color: var(--pb-ink); font-size: 15px; margin-bottom: 2px; }
.pb-install-banner__body span { color: var(--pb-warm-gray); font-size: 13px; line-height: 1.4; display: block; }
.pb-install-banner__actions { display: flex; gap: 8px; flex-shrink: 0; flex-direction: column; }
.pb-install-banner__actions .pb-btn { padding: 8px 14px; font-size: 13px; }
.pb-install-banner--ios { border-left-color: #007AFF; }
@media (min-width: 768px) {
	.pb-install-banner { max-width: 460px; bottom: 24px; right: 24px; left: auto; }
	.pb-install-banner__actions { flex-direction: row; }
}

/* Mobile responsive header */
@media (max-width: 900px) {
	.pb-mobile-toggle { display: flex; }
	.pb-site-header__inner { padding: 12px 14px; }
	.pb-nav {
		position: fixed; top: 60px; left: 0; right: 0;
		background: #000; padding: 20px;
		max-height: 0; overflow: hidden;
		transition: max-height 0.3s;
	}
	.pb-nav--open { max-height: 100vh; }
	.pb-nav__list {
		flex-direction: column; gap: 4px;
	}
	.pb-nav__list li a {
		display: block; padding: 12px 16px;
		color: white; text-decoration: none;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	.pb-account-btn__name { display: none; }
	.pb-site-header__right .pb-link-quiet { display: none; }
	.pb-mobile-bottom-nav { display: flex; }
	main.pb-main, .pb-main { padding-bottom: 80px; }
	.pb-site-footer { padding-bottom: 80px; }
}

/* Standalone (installed PWA) tweaks */
@media (display-mode: standalone) {
	.pb-install-banner { display: none !important; }
	.pb-site-header { padding-top: env(safe-area-inset-top, 0); }
}

/* Ghost button variant for install banner */
.pb-btn--ghost {
	background: transparent; color: var(--pb-warm-gray);
	border: 1px solid var(--pb-border);
}
.pb-btn--ghost:hover { background: var(--pb-cream); color: var(--pb-ink); }

/* ==========================================================================
   v1.1 — Mega Menu, City Selector, Welcome Back, Homepage Sections
   ========================================================================== */

/* City selector in header */
.pb-city-selector { position: relative; }
.pb-city-selector__btn {
	display: flex; align-items: center; gap: 6px;
	background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
	color: white; padding: 6px 12px; border-radius: 6px;
	font-size: 13px; cursor: pointer; font-weight: 500;
	transition: background 0.2s;
}
.pb-city-selector__btn:hover { background: rgba(255,255,255,0.15); }
.pb-city-selector__drop {
	position: absolute; top: calc(100% + 6px); left: 0;
	background: white; border-radius: 8px; padding: 6px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.15); min-width: 180px;
	z-index: 200; max-height: 400px; overflow-y: auto;
}
.pb-city-selector__opt {
	display: block; width: 100%; text-align: left;
	background: transparent; border: none; padding: 10px 12px;
	color: #0E1F26; font-size: 14px; cursor: pointer; border-radius: 4px;
}
.pb-city-selector__opt:hover { background: #F5F5F0; color: #1F6B6B; }
.pb-city-selector__opt.is-active { background: #1F6B6B; color: white; font-weight: 500; }

/* Mega menu */
.pb-mega { flex: 1; margin: 0 24px; }
.pb-mega__list { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; justify-content: center; }
.pb-mega__item { position: relative; }
.pb-mega__trigger {
	background: transparent; border: none; color: rgba(255,255,255,0.9);
	padding: 10px 14px; font-size: 14px; font-weight: 500;
	cursor: pointer; border-radius: 6px;
	display: flex; align-items: center; gap: 4px;
	transition: background 0.15s;
}
.pb-mega__trigger:hover, .pb-mega__item.is-open .pb-mega__trigger {
	background: rgba(255,255,255,0.1); color: white;
}
.pb-mega__trigger--accent { color: #FFC876 !important; }
.pb-mega__trigger--accent:hover { background: rgba(232,135,60,0.15) !important; }
.pb-mega__trigger span { font-size: 10px; opacity: 0.7; }

.pb-mega__panel {
	position: absolute; top: calc(100% + 8px); left: 0;
	background: white; border-radius: 10px; padding: 24px;
	box-shadow: 0 20px 60px rgba(14,31,38,0.15);
	min-width: 720px; z-index: 200;
	opacity: 0; visibility: hidden; transform: translateY(-8px);
	transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
.pb-mega__item.is-open .pb-mega__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.pb-mega__grid { display: grid; gap: 24px; }
.pb-mega__grid--1 { grid-template-columns: 1fr; min-width: 400px; }
.pb-mega__grid--2 { grid-template-columns: repeat(2, 1fr); }
.pb-mega__grid--3 { grid-template-columns: repeat(3, 1fr); }
.pb-mega__grid--4 { grid-template-columns: repeat(4, 1fr); }
.pb-mega__grid h4 {
	margin: 0 0 10px; font-size: 11px; letter-spacing: 1px;
	text-transform: uppercase; color: #94A3AA; font-weight: 600;
}
.pb-mega__grid a {
	display: block; padding: 6px 0; color: #2C2C2A;
	font-size: 13px; text-decoration: none; transition: color 0.15s;
}
.pb-mega__grid a:hover { color: #1F6B6B; }
.pb-mega__grid hr { border: 0; border-top: 1px solid #eee; margin: 8px 0; }
.pb-mega__accent { color: #E8873C !important; font-weight: 500 !important; }
.pb-mega__coming { color: #94A3AA !important; font-style: italic; cursor: not-allowed !important; }
.pb-mega__lg { padding: 12px !important; border-radius: 8px; }
.pb-mega__lg:hover { background: #F5F5F0; }
.pb-mega__lg strong { display: block; font-size: 15px; color: #0E1F26; margin-bottom: 2px; }
.pb-mega__lg span { display: block; font-size: 12px; color: #94A3AA; }

/* Right side of header */
.pb-header-post {
	background: rgba(232,135,60,0.15); color: #FFC876 !important;
	padding: 6px 12px; border-radius: 6px; text-decoration: none;
	font-size: 13px; font-weight: 500; border: 1px solid rgba(232,135,60,0.3);
}
.pb-header-post:hover { background: #E8873C; color: white !important; }

/* ==========================================================================
   WELCOME BACK — 4-card personalization strip
   ========================================================================== */
.pb-welcome {
	background: #F5F5F0; padding: 24px 0; position: relative;
}
.pb-welcome__greet {
	font-size: 24px; font-weight: 600; color: #0E1F26;
	margin: 0 0 16px; padding: 0 24px;
}
.pb-welcome__scroll {
	display: flex; gap: 16px; padding: 4px 24px 20px;
	overflow-x: auto; scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}
.pb-welcome__scroll::-webkit-scrollbar { height: 6px; }
.pb-welcome__scroll::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
.pb-welcome__nav {
	position: absolute; top: 50%; right: 12px; transform: translateY(-50%);
	background: rgba(14,31,38,0.6); color: white; border: none;
	width: 40px; height: 40px; border-radius: 50%;
	font-size: 20px; cursor: pointer; z-index: 10;
	display: none;
}
@media (min-width: 900px) { .pb-welcome__nav { display: block; } }

.pb-wcard {
	background: white; border-radius: 16px;
	min-width: 320px; max-width: 340px; flex-shrink: 0;
	display: flex; flex-direction: column;
	overflow: hidden; box-shadow: 0 2px 12px rgba(14,31,38,0.06);
	border: 1px solid #E5E9EC;
	transition: box-shadow 0.2s;
}
.pb-wcard:hover { box-shadow: 0 8px 24px rgba(14,31,38,0.1); }
.pb-wcard__head {
	display: flex; align-items: center; gap: 10px;
	padding: 16px 20px 8px;
}
.pb-wcard__head h3 { margin: 0; font-size: 15px; font-weight: 600; color: #0E1F26; }
.pb-wcard__icon {
	width: 40px; height: 40px; border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	font-size: 20px; flex-shrink: 0;
}
.pb-wcard__body { padding: 12px 20px 16px; flex: 1; }
.pb-wcard__body--list { padding: 4px 12px 12px; }
.pb-wcard__empty { color: #94A3AA; font-size: 13px; text-align: center; padding: 30px 12px; margin: 0; font-style: italic; }
.pb-wcard__foot {
	display: flex; justify-content: center; align-items: center;
	padding: 14px; background: #F5F5F0;
	color: #0E1F26; text-decoration: none; font-weight: 500; font-size: 14px;
	border-top: 1px solid #EEE; gap: 6px;
	transition: background 0.15s;
}
.pb-wcard__foot:hover { background: #E5E9EC; }

/* CARD 1: Recommendations viz */
.pb-reco-viz { display: flex; align-items: center; gap: 4px; margin: 10px 0 16px; justify-content: center; }
.pb-reco-viz__dot {
	width: 44px; height: 44px; border-radius: 50%;
	background: white; border: 2px solid #94A3AA;
	display: flex; align-items: center; justify-content: center;
	font-size: 16px; position: relative;
}
.pb-reco-viz__dot::after {
	content: '✓'; position: absolute; bottom: -2px; right: -2px;
	background: #0F855F; color: white; width: 14px; height: 14px;
	border-radius: 50%; font-size: 8px; display: flex; align-items: center; justify-content: center;
}
.pb-reco-viz__line { flex: 1; height: 1px; background: #94A3AA; max-width: 30px; }
.pb-reco-star {
	background: linear-gradient(135deg, #F0F5F8, #E5EAF0);
	border-radius: 10px; padding: 16px; text-align: center; margin: 8px 0;
}
.pb-reco-star__house { font-size: 40px; margin-bottom: 4px; }
.pb-reco-star__rating { color: #E8873C; letter-spacing: 2px; font-size: 12px; }
.pb-wcard__body h4 { margin: 8px 0 4px; font-size: 15px; color: #0E1F26; text-align: center; }
.pb-wcard__body p { margin: 0; font-size: 12px; color: #94A3AA; text-align: center; line-height: 1.4; }

/* CARD 2: Search */
.pb-search-input {
	background: white; border: 1px solid #E5E9EC; border-radius: 8px;
	padding: 12px 14px; display: flex; align-items: center; gap: 8px;
	margin-bottom: 16px; color: #94A3AA; font-size: 14px;
}
.pb-search-input span { flex: 1; }
.pb-search-add { font-size: 13px; color: #0E1F26; margin-bottom: 10px; }
.pb-search-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.pb-chip {
	background: white; border: 1px solid #E5E9EC; border-radius: 20px;
	padding: 6px 12px; font-size: 12px; color: #0E1F26;
	display: inline-flex; align-items: center; gap: 4px;
}
.pb-chip em { color: #E8873C; font-style: normal; font-weight: 600; }

/* CARD 3: Recent viewed */
.pb-recent-item {
	display: flex; gap: 10px; padding: 10px 8px;
	border-bottom: 1px solid #F5F5F0;
}
.pb-recent-item:last-child { border-bottom: none; }
.pb-recent-item img {
	width: 80px; height: 80px; object-fit: cover;
	border-radius: 6px; flex-shrink: 0;
}
.pb-recent-item__body { flex: 1; min-width: 0; }
.pb-recent-item__body strong { display: block; font-size: 13px; color: #0E1F26; margin-bottom: 2px; }
.pb-recent-item__meta { display: block; font-size: 11px; color: #94A3AA; margin-bottom: 4px; }
.pb-recent-item__price { display: block; font-size: 13px; font-weight: 600; color: #0E1F26; margin-bottom: 4px; }
.pb-recent-item__tags { list-style: none; padding: 0; margin: 0 0 6px; }
.pb-recent-item__tags li { font-size: 10px; color: #94A3AA; padding: 2px 0; position: relative; padding-left: 10px; }
.pb-recent-item__tags li::before { content: '•'; position: absolute; left: 0; }
.pb-recent-item__cta {
	display: block; text-align: center; padding: 6px 10px;
	background: #F5F5F0; color: #0E1F26; text-decoration: underline;
	border-radius: 4px; font-size: 12px; font-weight: 500;
}

/* CARD 4: Prices */
.pb-price-row {
	display: flex; justify-content: space-between; align-items: center;
	padding: 12px 8px; border-bottom: 1px solid #F5F5F0; gap: 8px;
}
.pb-price-row:last-child { border-bottom: none; }
.pb-price-row__loc strong { display: block; font-size: 13px; color: #0E1F26; }
.pb-price-row__loc span { display: block; font-size: 11px; color: #94A3AA; }
.pb-price-row__val { font-size: 13px; font-weight: 600; color: #0E1F26; text-align: right; }
.pb-trend { font-size: 11px; font-style: normal; padding: 2px 5px; border-radius: 3px; margin-left: 4px; }
.pb-trend--up { color: #0F855F; background: rgba(15,133,95,0.08); }
.pb-trend--down { color: #C0392B; background: rgba(192,57,43,0.08); }

/* ==========================================================================
   HOMEPAGE SECTIONS
   ========================================================================== */
.pb-section { padding: 60px 0; }
.pb-section__title { margin: 0 0 8px; font-size: 28px; font-weight: 600; color: #0E1F26; }
.pb-section__sub { margin: 0; font-size: 15px; color: #6B7A82; }
.pb-section__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 28px; gap: 20px; flex-wrap: wrap; }
.pb-link-arrow { color: #E8873C; text-decoration: none; font-weight: 500; font-size: 14px; }
.pb-link-arrow:hover { text-decoration: underline; }
.pb-empty-panel {
	background: #F5F5F0; border: 2px dashed #E5E9EC; border-radius: 12px;
	padding: 40px; text-align: center; color: #94A3AA; font-size: 14px;
	grid-column: 1 / -1;
}

/* Hero */
.pb-hero {
	background: linear-gradient(135deg, #0E1F26 0%, #1F6B6B 100%);
	color: white; padding: 70px 20px;
	position: relative; overflow: hidden;
}
.pb-hero::before {
	content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
	background: radial-gradient(circle at 70% 50%, rgba(232,135,60,0.15), transparent 60%);
	pointer-events: none;
}
.pb-hero__inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; }
.pb-hero__title { font-size: 42px; font-weight: 600; margin: 0 0 12px; letter-spacing: -0.5px; }
.pb-hero__title span { color: #FFC876; }
.pb-hero__sub { font-size: 16px; color: rgba(255,255,255,0.75); margin: 0 0 32px; }
.pb-hero__search {
	background: white; border-radius: 14px; padding: 8px;
	max-width: 780px; margin: 0 auto;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.pb-hero__tabs { display: flex; gap: 2px; overflow-x: auto; padding: 4px; }
.pb-hero__tabs button {
	background: transparent; border: none; color: #6B7A82;
	padding: 10px 16px; font-size: 13px; font-weight: 500;
	cursor: pointer; border-radius: 6px; white-space: nowrap;
}
.pb-hero__tabs button.is-active { background: #F5F5F0; color: #1F6B6B; }
.pb-hero__form { display: flex; padding: 6px; gap: 6px; align-items: stretch; }
.pb-hero__field { display: flex; flex-direction: column; text-align: left; padding: 6px 12px; border-radius: 8px; }
.pb-hero__field--city { flex: 0 0 140px; border-right: 1px solid #EEE; }
.pb-hero__field--search { flex: 1; }
.pb-hero__field label { font-size: 10px; color: #94A3AA; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 2px; }
.pb-hero__field input, .pb-hero__field select {
	border: none; padding: 4px 0; font-size: 14px; color: #0E1F26; background: transparent; outline: none;
}
.pb-hero__trust {
	display: flex; justify-content: center; gap: 24px; margin-top: 24px;
	flex-wrap: wrap; color: rgba(255,255,255,0.75); font-size: 13px;
}

/* Quick discovery */
.pb-quick__grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
}
.pb-quick__tile {
	background: white; border: 1px solid #E5E9EC; border-radius: 10px;
	padding: 18px 12px; text-align: center; text-decoration: none;
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	color: #0E1F26; font-weight: 500; font-size: 13px;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pb-quick__tile:hover { transform: translateY(-2px); border-color: #E8873C; box-shadow: 0 8px 20px rgba(232,135,60,0.15); }
.pb-quick__icon { font-size: 26px; }

/* Cities */
.pb-cities { background: #F5F5F0; }
.pb-cities__grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 14px; margin-top: 24px;
}
.pb-city-tile {
	background: white; border-radius: 12px; padding: 24px 16px;
	text-align: center; text-decoration: none; color: #0E1F26;
	transition: transform 0.2s, box-shadow 0.2s;
	position: relative;
}
.pb-city-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(14,31,38,0.1); }
.pb-city-tile h3 { margin: 8px 0 4px; font-size: 16px; font-weight: 600; }
.pb-city-tile__icon { font-size: 32px; display: block; }
.pb-city-tile__count { font-size: 12px; color: #94A3AA; }
.pb-city-tile.is-live::after {
	content: '● LIVE'; position: absolute; top: 10px; right: 10px;
	font-size: 9px; color: #0F855F; font-weight: 600; letter-spacing: 0.5px;
}

/* Featured properties grid */
.pb-featured__grid, .pb-projects__scroll {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}
.pb-projects__scroll {
	display: flex; overflow-x: auto; gap: 16px; padding-bottom: 12px;
	scroll-behavior: smooth;
}
.pb-prop-card, .pb-proj-card {
	background: white; border-radius: 12px; overflow: hidden;
	text-decoration: none; color: #0E1F26;
	transition: transform 0.2s, box-shadow 0.2s;
	border: 1px solid #E5E9EC;
}
.pb-proj-card { min-width: 300px; flex-shrink: 0; }
.pb-prop-card:hover, .pb-proj-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(14,31,38,0.12); }
.pb-prop-card__img, .pb-proj-card__img {
	height: 200px; background-size: cover; background-position: center;
	background-color: #F5F5F0; position: relative;
}
.pb-prop-card__badge {
	position: absolute; top: 10px; left: 10px;
	background: #0F855F; color: white; font-size: 10px; padding: 4px 8px;
	border-radius: 4px; font-weight: 600; letter-spacing: 0.5px;
}
.pb-prop-card__body, .pb-proj-card__body { padding: 16px; }
.pb-prop-card__body h3, .pb-proj-card__body h3 { margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.pb-prop-card__loc { margin: 0 0 8px; font-size: 13px; color: #6B7A82; }
.pb-prop-card__specs { display: flex; gap: 12px; margin-bottom: 10px; font-size: 12px; color: #94A3AA; }
.pb-prop-card__price { font-size: 18px; font-weight: 600; color: #1F6B6B; }
.pb-proj-card__loc, .pb-proj-card__price { display: block; font-size: 12px; color: #6B7A82; margin-top: 4px; }
.pb-proj-card__price { color: #E8873C; font-weight: 600; }

/* Types grid */
.pb-types__grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px; margin-top: 24px;
}
.pb-type-tile {
	background: white; border: 1px solid #E5E9EC; border-radius: 12px;
	padding: 24px 12px; text-align: center; text-decoration: none;
	display: flex; flex-direction: column; align-items: center; gap: 10px;
	color: #0E1F26; font-weight: 500; transition: all 0.2s;
}
.pb-type-tile:hover { border-color: #1F6B6B; transform: translateY(-2px); }
.pb-type-tile__icon { font-size: 32px; }

/* Localities */
.pb-localities { background: #F5F5F0; }
.pb-localities__tabs {
	display: flex; gap: 8px; margin-bottom: 24px; overflow-x: auto;
	padding-bottom: 8px;
}
.pb-localities__tabs button {
	background: white; border: 1px solid #E5E9EC; color: #6B7A82;
	padding: 10px 18px; border-radius: 20px; cursor: pointer; font-size: 13px;
	font-weight: 500; white-space: nowrap;
}
.pb-localities__tabs button.is-active { background: #1F6B6B; color: white; border-color: #1F6B6B; }
.pb-localities__panel { display: none; }
.pb-localities__panel.is-active { display: block; }
.pb-localities__grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
}
.pb-locality-card {
	background: white; padding: 16px; border-radius: 8px;
	text-decoration: none; color: #0E1F26; border: 1px solid #E5E9EC;
	transition: transform 0.2s, border-color 0.2s;
}
.pb-locality-card:hover { transform: translateY(-2px); border-color: #1F6B6B; }
.pb-locality-card h4 { margin: 0 0 6px; font-size: 14px; font-weight: 600; }
.pb-locality-card__price { display: block; font-size: 13px; color: #1F6B6B; font-weight: 600; }

/* Investments */
.pb-invest__grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
}
.pb-invest-card {
	background: linear-gradient(135deg, white, #FCFCFB);
	border: 1px solid #E5E9EC; border-radius: 12px; padding: 24px;
	text-decoration: none; color: #0E1F26; display: block;
	transition: all 0.2s;
}
.pb-invest-card:hover { border-color: #E8873C; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(232,135,60,0.12); }
.pb-invest-card__icon { font-size: 32px; margin-bottom: 12px; display: block; }
.pb-invest-card h3 { margin: 0 0 6px; font-size: 17px; font-weight: 600; }
.pb-invest-card p { margin: 0 0 14px; font-size: 13px; color: #6B7A82; line-height: 1.4; }

/* Club promo */
.pb-club-promo { background: linear-gradient(135deg, #0E1F26 0%, #1F3B47 100%); color: white; }
.pb-club-promo__inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }
.pb-club-promo__eyebrow { color: #FFC876; font-size: 11px; letter-spacing: 2px; font-weight: 600; }
.pb-club-promo h2 { font-size: 32px; margin: 12px 0 16px; }
.pb-club-promo p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 20px; line-height: 1.6; }
.pb-club-promo__tiers { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.pb-club-promo__tiers span {
	background: rgba(255,255,255,0.08); padding: 8px 14px; border-radius: 6px;
	font-size: 13px; border: 1px solid rgba(255,255,255,0.15);
}
.pb-club-promo__tiers .is-hero { background: #E8873C; border-color: #E8873C; }
.pb-club-promo__badge {
	font-size: 100px; text-align: center;
	background: rgba(232,135,60,0.15); border-radius: 50%;
	width: 200px; height: 200px; margin: 0 auto;
	display: flex; align-items: center; justify-content: center;
}
@media (max-width: 768px) { .pb-club-promo__inner { grid-template-columns: 1fr; } .pb-club-promo__right { display: none; } }

/* Services */
.pb-services__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 24px; }
.pb-service-card {
	background: white; border: 1px solid #E5E9EC; border-radius: 12px;
	padding: 24px; text-decoration: none; color: #0E1F26; display: block;
	transition: all 0.2s;
}
.pb-service-card:hover { transform: translateY(-3px); border-color: #1F6B6B; box-shadow: 0 8px 24px rgba(31,107,107,0.1); }
.pb-service-card__icon { font-size: 32px; margin-bottom: 12px; display: block; }
.pb-service-card h3 { margin: 0 0 6px; font-size: 17px; }
.pb-service-card p { margin: 0; font-size: 13px; color: #6B7A82; line-height: 1.4; }

/* Loan CTA */
.pb-loan-cta { background: linear-gradient(135deg, #FFF9F0, #FCF3E5); }
.pb-loan-cta__inner { text-align: center; max-width: 780px; margin: 0 auto; }
.pb-loan-cta__eyebrow { color: #E8873C; font-size: 11px; letter-spacing: 2px; font-weight: 600; }
.pb-loan-cta h2 { font-size: 32px; margin: 12px 0 12px; color: #0E1F26; }
.pb-loan-cta p { color: #6B7A82; font-size: 16px; margin-bottom: 28px; }
.pb-loan-cta__stats { display: flex; justify-content: center; gap: 40px; margin-bottom: 28px; flex-wrap: wrap; }
.pb-loan-cta__stats div { text-align: center; }
.pb-loan-cta__stats strong { display: block; font-size: 28px; color: #E8873C; font-weight: 600; }
.pb-loan-cta__stats span { font-size: 12px; color: #6B7A82; text-transform: uppercase; letter-spacing: 0.5px; }

/* Insights (price section) */
.pb-insights { background: #F5F5F0; }
.pb-insights__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin-top: 24px; }
.pb-insights__card { background: white; border-radius: 12px; padding: 24px; }
.pb-insights__card h3 { margin: 0 0 16px; font-size: 18px; }
.pb-insights__card table { width: 100%; border-collapse: collapse; font-size: 13px; }
.pb-insights__card th, .pb-insights__card td { padding: 10px 6px; text-align: left; border-bottom: 1px solid #F5F5F0; }
.pb-insights__card th { color: #94A3AA; font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.pb-metrics { list-style: none; padding: 0; margin: 0; }
.pb-metrics li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #F5F5F0; }
.pb-metrics li:last-child { border-bottom: none; }
.pb-metrics li span { color: #6B7A82; font-size: 13px; }
.pb-metrics li strong { color: #0E1F26; font-size: 14px; }
@media (max-width: 768px) { .pb-insights__grid { grid-template-columns: 1fr; } }

/* Wanted teaser */
.pb-wanted { background: linear-gradient(135deg, #F0F8F5, #E8F4F0); }
.pb-wanted__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.pb-wanted__eyebrow { color: #E8873C; font-size: 11px; letter-spacing: 2px; font-weight: 600; }
.pb-wanted h2 { font-size: 30px; margin: 12px 0 16px; color: #0E1F26; }
.pb-wanted p { color: #6B7A82; font-size: 15px; margin-bottom: 24px; }
.pb-wanted__list { display: flex; flex-direction: column; gap: 12px; }
.pb-wanted-item {
	background: white; padding: 16px 20px; border-radius: 10px;
	text-decoration: none; color: #0E1F26;
	border-left: 4px solid #1F6B6B; transition: transform 0.2s;
}
.pb-wanted-item:hover { transform: translateX(4px); }
.pb-wanted-item strong { display: block; font-size: 15px; margin-bottom: 4px; }
.pb-wanted-item span { display: block; font-size: 12px; color: #6B7A82; }
@media (max-width: 768px) { .pb-wanted__inner { grid-template-columns: 1fr; } }

/* Sell */
.pb-sell__inner { text-align: center; max-width: 900px; margin: 0 auto; }
.pb-sell__inner h2 { font-size: 30px; margin-bottom: 32px; }
.pb-sell__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.pb-sell__steps > div { padding: 24px; }
.pb-sell__steps span {
	display: inline-flex; width: 48px; height: 48px; border-radius: 50%;
	background: #1F6B6B; color: white; align-items: center; justify-content: center;
	font-size: 20px; font-weight: 600; margin-bottom: 12px;
}
.pb-sell__steps h3 { margin: 0 0 6px; font-size: 17px; }
.pb-sell__steps p { margin: 0; color: #6B7A82; font-size: 13px; }
.pb-sell__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 640px) { .pb-sell__steps { grid-template-columns: 1fr; } }

/* Developers */
.pb-devs { background: #F5F5F0; }
.pb-devs__grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 12px; margin-top: 24px;
}
.pb-dev-logo {
	background: white; border-radius: 8px; padding: 24px 12px;
	text-align: center; color: #0E1F26; font-weight: 500; font-size: 13px;
	border: 1px solid #E5E9EC;
}
.pb-devs__link { text-align: center; margin-top: 24px; }
.pb-devs__link a { color: #E8873C; text-decoration: none; font-weight: 500; }

/* Discover */
.pb-discover__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 20px; }
.pb-discover__col h3 { color: #1F6B6B; font-size: 16px; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 2px solid #E5E9EC; }
.pb-discover__col ul { list-style: none; padding: 0; margin: 0; }
.pb-discover__col li { padding: 4px 0; }
.pb-discover__col a { color: #6B7A82; text-decoration: none; font-size: 13px; }
.pb-discover__col a:hover { color: #E8873C; }

/* Reviews */
.pb-reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 24px; }
.pb-review-card {
	background: white; border-radius: 12px; padding: 24px;
	border: 1px solid #E5E9EC;
}
.pb-review-card__stars { margin-bottom: 12px; letter-spacing: 2px; }
.pb-review-card p { font-size: 14px; color: #2C2C2A; line-height: 1.6; margin: 0 0 16px; font-style: italic; }
.pb-review-card__author strong { display: block; color: #0E1F26; font-size: 14px; }
.pb-review-card__author span { display: block; color: #6B7A82; font-size: 12px; }

/* Insights hub */
.pb-insights-hub__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.pb-insight-card { background: white; border-radius: 12px; overflow: hidden; text-decoration: none; color: #0E1F26; border: 1px solid #E5E9EC; }
.pb-insight-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.pb-insight-card__img { height: 180px; background-size: cover; background-position: center; }
.pb-insight-card__body { padding: 20px; }
.pb-insight-card__date { font-size: 11px; color: #94A3AA; text-transform: uppercase; letter-spacing: 0.5px; }
.pb-insight-card h3 { margin: 8px 0 8px; font-size: 17px; }
.pb-insight-card p { margin: 0; font-size: 13px; color: #6B7A82; line-height: 1.5; }

/* App download */
.pb-appdl { background: linear-gradient(135deg, #0E1F26 0%, #1F3B47 100%); color: white; }
.pb-appdl__inner { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; }
.pb-appdl__eyebrow { color: #FFC876; font-size: 11px; letter-spacing: 2px; font-weight: 600; }
.pb-appdl h2 { font-size: 32px; margin: 12px 0 12px; }
.pb-appdl p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 24px; line-height: 1.6; }
.pb-appdl__hint { display: block; margin-top: 12px; color: rgba(255,255,255,0.5); font-size: 12px; }
.pb-appdl__mock { font-size: 100px; text-align: center; }
@media (max-width: 768px) { .pb-appdl__inner { grid-template-columns: 1fr; } .pb-appdl__mock { display: none; } }

/* Final CTA */
.pb-final-cta { background: linear-gradient(135deg, #1F6B6B 0%, #0E1F26 100%); color: white; }
.pb-final-cta__inner { text-align: center; max-width: 700px; margin: 0 auto; }
.pb-final-cta h2 { font-size: 34px; margin: 0 0 16px; }
.pb-final-cta p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 28px; }
.pb-final-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Mobile header adjustments */
@media (max-width: 900px) {
	.pb-mega { display: none; }
	.pb-city-selector__btn { padding: 4px 8px; font-size: 12px; }
	.pb-city-selector__btn svg:last-child { display: none; }
	.pb-header-post { display: none; }
	.pb-hero__title { font-size: 28px; }
	.pb-hero__form { flex-direction: column; }
	.pb-hero__field--city { border-right: none; border-bottom: 1px solid #EEE; flex: none; }
	.pb-section { padding: 40px 0; }
	.pb-section__title { font-size: 22px; }
	.pb-wcard { min-width: 280px; }
}

/* ==========================================================================
   v1.2 — Premium TEAL header, Nunito Black logo, Housing.com hero, clean mega, 4-col carousel
   ========================================================================== */

/* Global font — Nunito everywhere */
body, .pb-container, .pb-main { font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Nunito', sans-serif; letter-spacing: -0.2px; }

/* -------- HEADER (TEAL premium) -------- */
.pb-site-header {
	background: linear-gradient(180deg, #1F6B6B 0%, #185858 100%);
	border-bottom: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 2px 20px rgba(14,31,38,0.15);
	position: sticky; top: 0; z-index: 100;
}
.pb-site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	padding: 14px 24px; gap: 20px; min-height: 68px;
}
.pb-site-header__left { display: flex; align-items: center; gap: 20px; }
.pb-site-header__right { display: flex; align-items: center; gap: 14px; }

/* Logo — Nunito Black 900 to match provided logo */
.pb-brand { text-decoration: none; display: inline-flex; align-items: center; }
.pb-brand__text {
	font-family: 'Nunito', sans-serif;
	font-weight: 900;
	font-size: 26px;
	line-height: 1;
	letter-spacing: -1px;
	display: inline-flex; align-items: baseline;
}
.pb-brand__word--white  { color: #ffffff; }
.pb-brand__word--orange { color: #E8873C; }
.pb-brand__tld          { color: #ffffff; font-size: 12px; font-weight: 900; margin-left: 1px; letter-spacing: -0.3px; }

/* City selector in header — pill */
.pb-city-selector__btn {
	background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
	color: #fff; padding: 7px 14px; border-radius: 20px;
	font-size: 13px; font-weight: 600; cursor: pointer;
	display: inline-flex; align-items: center; gap: 6px;
	transition: background 0.15s, border-color 0.15s;
}
.pb-city-selector__btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); }

/* Post Property CTA — orange accent (matches logo) */
.pb-header-post {
	background: #E8873C; color: #fff !important;
	padding: 8px 16px; border-radius: 6px; text-decoration: none;
	font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
	display: inline-flex; align-items: center; gap: 6px;
	transition: background 0.15s, transform 0.15s;
	border: none;
}
.pb-header-post:hover { background: #D97826; transform: translateY(-1px); }
.pb-header-post span { background: rgba(255,255,255,0.25); font-size: 9px; padding: 2px 5px; border-radius: 3px; font-weight: 800; letter-spacing: 0.5px; }

.pb-site-header__right .pb-link-quiet { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 13px; font-weight: 600; }
.pb-site-header__right .pb-link-quiet:hover { color: #fff; }
.pb-site-header__right .pb-btn { padding: 7px 16px; font-size: 13px; font-weight: 700; }

/* Avatar/account */
.pb-avatar {
	width: 32px; height: 32px; border-radius: 50%;
	background: linear-gradient(135deg, #E8873C, #FFA35C);
	color: #fff; font-weight: 700; font-size: 13px;
	display: inline-flex; align-items: center; justify-content: center;
}

/* Hamburger */
.pb-mobile-toggle { display: none; background: transparent; border: none; padding: 6px; cursor: pointer; flex-direction: column; gap: 4px; }
.pb-mobile-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* -------- MEGA MENU (clean, SquareYards-style, no emojis) -------- */
.pb-mega { flex: 1; }
.pb-mega__list {
	display: flex; gap: 4px; list-style: none; margin: 0; padding: 0;
	justify-content: center; align-items: center;
}
.pb-mega__item { position: relative; }
.pb-mega__trigger {
	background: transparent; border: none; color: rgba(255,255,255,0.92);
	padding: 10px 14px; font-size: 14px; font-weight: 600;
	cursor: pointer; border-radius: 6px;
	transition: background 0.15s, color 0.15s;
	position: relative;
}
.pb-mega__trigger:hover, .pb-mega__item.is-open .pb-mega__trigger {
	background: rgba(255,255,255,0.1); color: #fff;
}
.pb-mega__item.is-open .pb-mega__trigger::after {
	content: ''; position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
	width: 12px; height: 12px; background: #fff;
	rotate: 45deg;
}
.pb-mega__trigger--accent { color: #FFC876 !important; }
.pb-mega__trigger--accent:hover { background: rgba(232,135,60,0.15) !important; }

.pb-mega__panel {
	position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
	background: #fff; border-radius: 12px; padding: 28px 32px;
	box-shadow: 0 24px 60px rgba(14,31,38,0.2);
	min-width: 480px; z-index: 200;
	opacity: 0; visibility: hidden;
	transition: opacity 0.15s, visibility 0.15s;
}
.pb-mega__panel--wide { min-width: 780px; }
.pb-mega__item.is-open .pb-mega__panel { opacity: 1; visibility: visible; }
.pb-mega__grid { display: grid; gap: 40px; }
.pb-mega__grid--1 { grid-template-columns: 1fr; min-width: 360px; gap: 6px; }
.pb-mega__grid--2 { grid-template-columns: repeat(2, 1fr); }
.pb-mega__grid--3 { grid-template-columns: repeat(3, 1fr); }
.pb-mega__grid--4 { grid-template-columns: repeat(4, 1fr); }
.pb-mega__col { min-width: 0; }
.pb-mega__col h4 {
	margin: 0 0 14px; font-size: 11px; letter-spacing: 1.2px;
	text-transform: uppercase; color: #94A3AA; font-weight: 700;
	padding-bottom: 8px; border-bottom: 1px solid #F0F2F4;
}
.pb-mega__col a {
	display: block; padding: 8px 0; color: #2C2C2A;
	font-size: 13px; font-weight: 500; text-decoration: none;
	transition: color 0.12s, padding-left 0.15s;
	border-bottom: 1px solid transparent;
}
.pb-mega__col a:hover { color: #1F6B6B; padding-left: 4px; }
.pb-mega__accent { color: #E8873C !important; font-weight: 700 !important; }
.pb-mega__accent:hover { color: #D97826 !important; }
.pb-mega__soon { color: #C4CBD1 !important; cursor: not-allowed !important; font-style: italic; }
.pb-mega__soon em { color: #94A3AA; background: #F5F5F0; padding: 2px 6px; border-radius: 3px; font-size: 10px; margin-left: 6px; font-style: normal; }
.pb-mega__lg { padding: 14px 16px !important; border-radius: 8px; }
.pb-mega__lg:hover { background: #F5F5F0; padding-left: 20px !important; }
.pb-mega__lg strong { display: block; font-size: 15px; color: #0E1F26; margin-bottom: 4px; font-weight: 700; }
.pb-mega__lg span { display: block; font-size: 12px; color: #94A3AA; font-weight: 500; }

/* -------- HERO (Housing.com-inspired, teal-ink premium) -------- */
.pb-hero {
	position: relative; overflow: hidden;
	padding: 80px 24px 120px; color: #fff;
	min-height: 500px;
}
.pb-hero__bg {
	position: absolute; inset: 0; z-index: 0;
	pointer-events: none;
}
.pb-hero__bg svg { width: 100%; height: 100%; display: block; }
.pb-hero__inner {
	max-width: 900px; margin: 0 auto;
	position: relative; z-index: 1;
	text-align: center;
}
.pb-hero__title {
	font-family: 'Nunito', sans-serif; font-weight: 800;
	font-size: 44px; margin: 0 0 12px;
	letter-spacing: -1px; color: #fff;
}
.pb-hero__title span { color: #FFC876; }
.pb-hero__sub {
	font-size: 15px; color: rgba(255,255,255,0.8);
	margin: 0 0 36px; font-weight: 500;
}

/* Search bar (Housing-style dark tabs + white input + orange button) */
.pb-hero__search {
	background: rgba(14,31,38,0.65); backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 14px; overflow: hidden;
	max-width: 820px; margin: 0 auto;
	box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.pb-hero__tabs {
	display: flex; padding: 4px; gap: 2px;
	overflow-x: auto; scrollbar-width: none;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pb-hero__tabs::-webkit-scrollbar { display: none; }
.pb-hero__tabs button {
	background: transparent; border: none;
	color: rgba(255,255,255,0.65);
	padding: 14px 20px; font-size: 12px; font-weight: 700;
	letter-spacing: 1px; cursor: pointer;
	white-space: nowrap; position: relative;
	transition: color 0.15s;
}
.pb-hero__tabs button:hover { color: rgba(255,255,255,0.9); }
.pb-hero__tabs button.is-active { color: #fff; }
.pb-hero__tabs button.is-active::after {
	content: ''; position: absolute; bottom: 0; left: 20px; right: 20px; height: 2px;
	background: #FFC876; border-radius: 1px;
}

.pb-hero__form {
	display: flex; padding: 12px; background: #fff; gap: 8px; align-items: stretch;
}
.pb-hero__field {
	flex: 1; display: flex; align-items: center; gap: 10px;
	padding: 10px 14px; color: #94A3AA;
}
.pb-hero__field input {
	flex: 1; border: none; padding: 6px 0; font-size: 15px;
	color: #0E1F26; background: transparent; outline: none;
	font-family: inherit; font-weight: 500;
}
.pb-hero__field input::placeholder { color: #94A3AA; }
.pb-hero__submit {
	background: #E8873C; color: #fff; border: none;
	padding: 0 32px; border-radius: 8px;
	font-size: 15px; font-weight: 700; cursor: pointer;
	transition: background 0.15s, transform 0.15s;
	font-family: inherit;
}
.pb-hero__submit:hover { background: #D97826; transform: translateY(-1px); }

.pb-hero__popular {
	display: flex; align-items: center; gap: 16px;
	padding: 14px 20px; background: rgba(255,255,255,0.05);
	border-top: 1px solid rgba(255,255,255,0.05);
	flex-wrap: wrap;
}
.pb-hero__popular-label {
	color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 600;
	display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.3px;
}
.pb-hero__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.pb-hero__chips a {
	background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
	color: #fff; padding: 8px 14px; border-radius: 20px;
	font-size: 12px; font-weight: 600; text-decoration: none;
	display: inline-flex; align-items: center; gap: 4px;
	transition: background 0.15s, transform 0.15s;
}
.pb-hero__chips a span { color: #FFC876; font-weight: 900; }
.pb-hero__chips a:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }

/* Owner CTA strip below search */
.pb-hero__owner-cta {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(14,31,38,0.7); border: 1px solid rgba(255,200,118,0.3);
	color: #fff !important; text-decoration: none;
	padding: 14px 24px; border-radius: 30px;
	font-size: 14px; margin-top: 32px;
	transition: background 0.15s, transform 0.15s;
}
.pb-hero__owner-cta:hover { background: rgba(14,31,38,0.9); transform: translateY(-2px); }
.pb-hero__owner-cta strong { color: #FFC876; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.pb-hero__owner-icon { color: #FFC876; font-weight: 900; }

/* -------- 4-COLUMN CAROUSEL (Featured / Projects / Cities / Investments) -------- */
.pb-featured__grid, .pb-projects__scroll, .pb-cities__grid, .pb-invest__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	position: relative;
	scroll-behavior: smooth;
}

/* When JS enhances into carousel, container gets .pb-is-carousel */
.pb-is-carousel {
	display: flex !important;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 20px;
	padding-bottom: 8px;
	scrollbar-width: none;
}
.pb-is-carousel::-webkit-scrollbar { display: none; }
.pb-is-carousel > * {
	flex: 0 0 calc((100% - 60px) / 4);
	scroll-snap-align: start;
}

/* Wrapper for nav buttons */
.pb-carousel-wrap { position: relative; }
.pb-carousel-nav {
	position: absolute; top: 50%; transform: translateY(-50%);
	background: #fff; border: 1px solid #E5E9EC;
	width: 44px; height: 44px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
	z-index: 10; color: #1F6B6B;
	transition: background 0.15s, transform 0.15s;
}
.pb-carousel-nav:hover { background: #1F6B6B; color: #fff; transform: translateY(-50%) scale(1.05); }
.pb-carousel-nav:disabled { opacity: 0.4; cursor: not-allowed; }
.pb-carousel-nav--prev { left: -22px; }
.pb-carousel-nav--next { right: -22px; }

@media (max-width: 1200px) {
	.pb-featured__grid, .pb-cities__grid, .pb-invest__grid { grid-template-columns: repeat(3, 1fr); }
	.pb-is-carousel > * { flex-basis: calc((100% - 40px) / 3); }
}
@media (max-width: 900px) {
	.pb-mega { display: none; }
	.pb-header-post span { display: none; }
	.pb-header-post { padding: 6px 12px; font-size: 12px; }
	.pb-featured__grid, .pb-projects__scroll, .pb-cities__grid, .pb-invest__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.pb-is-carousel > * { flex-basis: calc((100% - 12px) / 2); }
	.pb-hero { padding: 50px 16px 70px; }
	.pb-hero__title { font-size: 28px; }
	.pb-hero__form { flex-direction: column; }
	.pb-hero__submit { padding: 12px 32px; }
	.pb-carousel-nav { display: none; }
	.pb-mobile-toggle { display: flex; }
}
@media (max-width: 600px) {
	.pb-featured__grid, .pb-projects__scroll, .pb-cities__grid, .pb-invest__grid { grid-template-columns: 1fr; }
	.pb-is-carousel > * { flex-basis: 85%; }
}

/* ==========================================================================
   v1.3 — PORTAL LAYOUT (universal frontend workspace with role-driven sidebar)
   ========================================================================== */

body.pb-body-portal { background: #F5F5F0; margin: 0; }
body.pb-body-portal .pb-site-header,
body.pb-body-portal .pb-site-footer,
body.pb-body-portal #wpadminbar,
body.pb-body-portal .pb-mobile-nav { display: none !important; }

.pb-portal {
	display: grid;
	grid-template-columns: 260px 1fr;
	min-height: 100vh;
	background: #F5F5F0;
}
.pb-portal__sidebar {
	background: linear-gradient(180deg, #1F6B6B 0%, #185858 100%);
	color: white; display: flex; flex-direction: column;
	position: sticky; top: 0; height: 100vh;
	overflow-y: auto;
}
.pb-portal__brand {
	padding: 20px 20px 16px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pb-portal__brand .pb-brand__text {
	font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 22px;
	letter-spacing: -0.8px; display: block;
}
.pb-portal__brand .pb-brand__word--white { color: #fff; }
.pb-portal__brand .pb-brand__word--orange { color: #E8873C; }
.pb-portal__role {
	display: block; margin-top: 6px;
	font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
	color: rgba(255,200,118,0.9); font-weight: 700;
}

.pb-portal__nav { padding: 12px 8px; flex: 1; }
.pb-portal__nav a {
	display: flex; align-items: center; gap: 12px;
	padding: 12px 14px; color: rgba(255,255,255,0.85);
	text-decoration: none; border-radius: 8px;
	font-size: 14px; font-weight: 600;
	margin-bottom: 2px; transition: background 0.15s, color 0.15s;
}
.pb-portal__nav a:hover { background: rgba(255,255,255,0.08); color: white; }
.pb-portal__nav a.is-active { background: rgba(232,135,60,0.15); color: #FFC876; }
.pb-portal__nav-icon svg { width: 20px; height: 20px; display: block; }
.pb-portal__nav a em {
	margin-left: auto; background: #E8873C; color: white;
	font-size: 9px; padding: 2px 6px; border-radius: 3px;
	font-style: normal; font-weight: 800; letter-spacing: 0.5px;
}
.pb-portal__foot { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.pb-portal__foot a { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600; text-decoration: none; }
.pb-portal__foot a:hover { color: #FFC876; }

.pb-portal__main { display: flex; flex-direction: column; min-width: 0; }
.pb-portal__topbar {
	background: white; padding: 16px 32px;
	display: flex; justify-content: space-between; align-items: center;
	border-bottom: 1px solid #E5E9EC;
	position: sticky; top: 0; z-index: 10;
}
.pb-portal__topbar-left { display: flex; align-items: center; gap: 20px; }
.pb-portal__topbar h1 { margin: 0; font-size: 22px; font-weight: 700; color: #0E1F26; letter-spacing: -0.3px; }
.pb-portal__topbar-right { display: flex; align-items: center; gap: 16px; }
.pb-portal__user { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #0E1F26; font-weight: 600; }

.pb-topbar-city .pb-city-selector__btn { background: #F5F5F0; border: 1px solid #E5E9EC; color: #1F6B6B; }
.pb-topbar-city .pb-city-selector__btn:hover { background: #E8873C; color: white; border-color: #E8873C; }

.pb-portal__content { padding: 32px; flex: 1; max-width: 1200px; width: 100%; }
.pb-portal-panel {
	background: white; border-radius: 12px; padding: 28px;
	box-shadow: 0 2px 8px rgba(14,31,38,0.04);
}
.pb-portal-panel--center { text-align: center; }
.pb-portal-panel h3 { margin: 0 0 16px; font-size: 20px; color: #0E1F26; }
.pb-portal-panel h4 { margin: 20px 0 12px; font-size: 15px; color: #0E1F26; }

.pb-portal-welcome h2 { font-size: 26px; margin: 0 0 6px; color: #0E1F26; }
.pb-portal-welcome__sub { font-size: 14px; color: #6B7A82; margin: 0 0 24px; }
.pb-portal-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.pb-stat-card {
	background: white; padding: 20px; border-radius: 12px;
	box-shadow: 0 2px 8px rgba(14,31,38,0.04);
	border-left: 4px solid #1F6B6B;
}
.pb-stat-card__label { font-size: 12px; color: #6B7A82; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 8px; }
.pb-stat-card__value { font-size: 28px; color: #0E1F26; font-weight: 800; font-family: 'Nunito', sans-serif; line-height: 1; }
.pb-stat-card__sub { font-size: 12px; color: #94A3AA; margin-top: 6px; }

.pb-portal-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.pb-portal-table th { text-align: left; padding: 12px 8px; color: #94A3AA; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid #E5E9EC; }
.pb-portal-table td { padding: 12px 8px; border-bottom: 1px solid #F5F5F0; }
.pb-portal-table tr.is-me { background: rgba(232,135,60,0.06); font-weight: 700; }
.pb-tag { display: inline-block; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; }
.pb-tag--publish { background: #E8F5E9; color: #0F855F; }
.pb-tag--draft   { background: #F5F5F0; color: #6B7A82; }
.pb-tag--pending { background: #FFF3E0; color: #E8873C; }
.pb-muted { color: #94A3AA; font-size: 13px; }

/* ==========================================================================
   CATCHER APP (mobile-first field ops UI)
   ========================================================================== */
.pb-catcher { max-width: 500px; margin: 0 auto; }

.pb-catcher-idle, .pb-catcher-live, .pb-catcher-empty {
	background: white; border-radius: 16px; padding: 32px 24px;
	text-align: center; box-shadow: 0 4px 20px rgba(14,31,38,0.06);
}
.pb-catcher-idle h3, .pb-catcher-live h3 { margin: 0 0 24px; font-size: 22px; }
.pb-catcher-empty h3 { color: #C0392B; margin-bottom: 12px; }

.pb-catcher-assign {
	background: #F5F5F0; padding: 16px; border-radius: 8px;
	margin-bottom: 24px; text-align: left;
}
.pb-catcher-assign__label { font-size: 11px; color: #94A3AA; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.pb-catcher-assign__value { font-size: 18px; color: #0E1F26; font-weight: 700; margin: 4px 0; }
.pb-catcher-assign__meta { font-size: 12px; color: #6B7A82; }

.pb-btn--xl {
	padding: 18px 32px; font-size: 16px; width: 100%;
	display: block; margin: 8px 0; text-align: center;
}
.pb-btn--outline { background: white; color: #1F6B6B; border: 1.5px solid #E5E9EC; }
.pb-btn--outline:hover { border-color: #1F6B6B; background: #F5F5F0; }
.pb-btn--danger { background: #C0392B; color: white; border: none; }
.pb-btn--danger:hover { background: #A63020; }
.pb-btn--voice { background: #FFF9F0; color: #E8873C; border: 1.5px dashed #E8873C; width: 100%; padding: 14px; }

.pb-catcher-live__header {
	display: flex; align-items: center; gap: 12px;
	background: #E8F5E9; padding: 14px 16px; border-radius: 10px;
	margin-bottom: 16px; text-align: left;
}
.pb-catcher-live__dot {
	width: 12px; height: 12px; border-radius: 50%;
	background: #0F855F; box-shadow: 0 0 0 4px rgba(15,133,95,0.2);
	animation: pbPulse 1.5s infinite;
}
@keyframes pbPulse { 50% { box-shadow: 0 0 0 8px rgba(15,133,95,0.1); } }
.pb-catcher-live__header strong { display: block; color: #0F855F; font-size: 13px; letter-spacing: 0.5px; }
.pb-catcher-live__header span { display: block; font-size: 12px; color: #6B7A82; }

.pb-geo-status {
	display: flex; justify-content: space-between; align-items: center;
	padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 13px;
}
.pb-geo-status--unknown { background: #F5F5F0; color: #6B7A82; }
.pb-geo-status--in      { background: #E8F5E9; color: #0F855F; }
.pb-geo-status--out     { background: #FFF3E0; color: #E8873C; }
.pb-geo-status__label { font-weight: 600; text-transform: uppercase; font-size: 11px; letter-spacing: 0.5px; }
.pb-geo-status__value { font-weight: 700; }

.pb-catcher-stats {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
	margin-bottom: 16px;
}
.pb-catcher-stats div {
	background: #F5F5F0; padding: 12px; border-radius: 8px;
	text-align: center;
}
.pb-catcher-stats strong { display: block; font-size: 24px; font-weight: 800; color: #1F6B6B; font-family: 'Nunito', sans-serif; }
.pb-catcher-stats span { display: block; font-size: 10px; color: #6B7A82; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

.pb-catcher-form label {
	display: block; margin: 14px 0 6px;
	font-size: 13px; color: #0E1F26; font-weight: 600;
}
.pb-catcher-form label span { color: #C0392B; }
.pb-catcher-form label em { color: #94A3AA; font-style: normal; font-weight: 400; }
.pb-catcher-form input, .pb-catcher-form textarea {
	width: 100%; padding: 12px 14px; border: 1.5px solid #E5E9EC;
	border-radius: 8px; font-size: 15px; font-family: inherit;
	background: white; color: #0E1F26; box-sizing: border-box;
}
.pb-catcher-form input:focus, .pb-catcher-form textarea:focus { border-color: #1F6B6B; outline: none; }
.pb-chip-group { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.pb-chip-group button {
	background: white; border: 1.5px solid #E5E9EC; color: #6B7A82;
	padding: 10px 14px; border-radius: 20px; font-size: 13px; font-weight: 600;
	cursor: pointer;
}
.pb-chip-group button.is-active { background: #1F6B6B; border-color: #1F6B6B; color: white; }
#pb-lead-msg, #pb-escalate-msg { margin-top: 12px; padding: 12px; border-radius: 6px; font-size: 13px; }
#pb-lead-msg.is-ok, #pb-escalate-msg.is-ok { background: #E8F5E9; color: #0F855F; }
#pb-lead-msg.is-err, #pb-escalate-msg.is-err { background: #FFEBEE; color: #C0392B; }

.pb-catcher-voice { margin-bottom: 20px; }

.pb-leaderboard .pb-lb-rank { font-size: 20px; text-align: center; width: 60px; }

.pb-portal-code {
	background: #F5F5F0; padding: 12px 16px; border-radius: 6px;
	margin: 16px 0; font-family: 'Courier New', monospace; font-size: 14px;
}
.pb-portal-code code { color: #E8873C; font-weight: 700; }

.pb-geo-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.pb-geo-dot--in { background: #0F855F; }
.pb-geo-dot--out { background: #E8873C; }
.pb-geo-dot--unknown { background: #94A3AA; }

.pb-esc {
	background: #FFEBEE; padding: 12px; border-radius: 6px;
	margin: 8px 0; border-left: 3px solid #C0392B;
}
.pb-esc p { margin: 8px 0 0; color: #6B7A82; font-size: 13px; }

/* Mobile */
@media (max-width: 900px) {
	.pb-portal { grid-template-columns: 1fr; }
	.pb-portal__sidebar {
		position: fixed; left: -280px; z-index: 200; width: 260px;
		transition: left 0.3s;
	}
	.pb-portal__sidebar.is-open { left: 0; }
	.pb-portal__topbar { padding: 12px 16px; }
	.pb-portal__content { padding: 16px; }
}

/* ==========================================================================
   v1.4 — FIXES: Nunito ONLY for logo, Inter for everything, compact left-cluster header
   NOTE: this block OVERRIDES relevant v1.2/v1.3 rules by cascade (loaded later)
   ========================================================================== */

/* Global font — Inter everywhere. Nunito ONLY inside .pb-brand__text */
body,
.pb-container,
.pb-main,
.pb-portal,
.pb-portal__sidebar,
.pb-portal__brand,
.pb-portal__brand .pb-brand__text,
.pb-portal__role,
.pb-portal__topbar h1,
h1, h2, h3, h4, h5, h6,
.pb-hero__title,
.pb-hero__sub,
.pb-stat-card__value,
.pb-catcher-stats strong,
.pb-btn,
.pb-mega__trigger,
.pb-mega__col h4,
.pb-hero__submit {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Nunito Black 900 — ONLY for logo text */
.pb-brand__text,
.pb-brand__word,
.pb-brand__tld {
	font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif !important;
	font-weight: 900 !important;
}

/* But NOT for the portal sidebar brand — user asked Nunito only for logo everywhere including sidebar */
.pb-portal__brand .pb-brand__text,
.pb-portal__brand .pb-brand__word {
	font-family: 'Nunito', sans-serif !important;
	font-weight: 900 !important;
}

/* -------- COMPACT HEADER (SquareYards left-cluster layout) -------- */

.pb-site-header {
	background: linear-gradient(180deg, #1F6B6B 0%, #185858 100%);
	border-bottom: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 2px 12px rgba(14,31,38,0.12);
	position: sticky; top: 0; z-index: 100;
}
.pb-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 24px;
	gap: 16px;
	min-height: 56px;
	max-width: none;
}

/* LEFT CLUSTER — logo + city + menu all together, left-aligned */
.pb-site-header__left {
	display: flex;
	align-items: center;
	gap: 20px;
	flex: 1;
	min-width: 0;
}
.pb-site-header__right {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

/* Logo — compact size */
.pb-brand { text-decoration: none; display: inline-flex; align-items: center; flex-shrink: 0; }
.pb-brand__text {
	font-size: 22px;
	line-height: 1;
	letter-spacing: -0.5px;
	display: inline-flex;
	align-items: baseline;
}
.pb-brand__word--white  { color: #ffffff; }
.pb-brand__word--orange { color: #E8873C; }
.pb-brand__tld { color: #ffffff; font-size: 10px; margin-left: 1px; letter-spacing: -0.2px; }

/* City selector — compact pill */
.pb-header-city .pb-city-selector__btn {
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.15);
	color: #fff;
	padding: 6px 12px;
	border-radius: 18px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.pb-header-city .pb-city-selector__btn:hover { background: rgba(255,255,255,0.16); }

/* -------- MEGA MENU (5 tabs, left-adjacent, Inter font, tighter) -------- */

.pb-mega { flex: 1; min-width: 0; }
.pb-mega__list {
	display: flex;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: flex-start;
	align-items: center;
}
.pb-mega__item { position: relative; }
.pb-mega__trigger {
	background: transparent;
	border: none;
	color: rgba(255,255,255,0.9);
	padding: 8px 12px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: color 0.15s, background 0.15s;
	white-space: nowrap;
}
.pb-mega__trigger:hover,
.pb-mega__item.is-open .pb-mega__trigger {
	background: rgba(255,255,255,0.08);
	color: #fff;
}
.pb-mega__caret {
	font-size: 9px;
	opacity: 0.7;
	transition: transform 0.15s;
}
.pb-mega__item.is-open .pb-mega__caret { transform: rotate(180deg); }

/* Reset the old ::after arrow that pointed down */
.pb-mega__item.is-open .pb-mega__trigger::after { display: none; }

.pb-mega__panel {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	transform: none;
	background: #fff;
	border-radius: 8px;
	padding: 24px 28px;
	box-shadow: 0 20px 50px rgba(14,31,38,0.18);
	min-width: 380px;
	z-index: 200;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.15s, visibility 0.15s;
}
.pb-mega__panel--wide {
	min-width: 900px;
	max-width: 1100px;
}
.pb-mega__item.is-open .pb-mega__panel {
	opacity: 1;
	visibility: visible;
}
.pb-mega__grid {
	display: grid;
	gap: 40px;
}
.pb-mega__grid--4 { grid-template-columns: repeat(4, 1fr); }
.pb-mega__grid--3 { grid-template-columns: repeat(3, 1fr); }
.pb-mega__grid--2 { grid-template-columns: repeat(2, 1fr); }
.pb-mega__grid--1 { grid-template-columns: 1fr; }
.pb-mega__col { min-width: 0; }
.pb-mega__col h4 {
	margin: 0 0 12px;
	font-size: 11px;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: #0E1F26;
	font-weight: 700;
	padding-bottom: 8px;
	border-bottom: 1px solid #F0F2F4;
}
.pb-mega__col a {
	display: block;
	padding: 6px 0;
	color: #2C2C2A;
	font-size: 13px;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.12s, padding-left 0.12s;
	border: none;
}
.pb-mega__col a:hover {
	color: #1F6B6B;
	padding-left: 3px;
}
.pb-mega__accent {
	color: #E8873C !important;
	font-weight: 600 !important;
}
.pb-mega__accent:hover { color: #D97826 !important; }

/* -------- RIGHT SIDE OF HEADER (utility) -------- */

.pb-header-link {
	color: rgba(255,255,255,0.9);
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	padding: 6px 10px;
	border-radius: 4px;
	transition: background 0.15s;
}
.pb-header-link:hover {
	color: #fff;
	background: rgba(255,255,255,0.08);
}

.pb-header-post {
	background: #E8873C;
	color: #fff !important;
	padding: 7px 14px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: background 0.15s;
	border: none;
	white-space: nowrap;
}
.pb-header-post:hover { background: #D97826; }
.pb-header-post span {
	background: rgba(255,255,255,0.25);
	font-size: 9px;
	padding: 2px 5px;
	border-radius: 3px;
	font-weight: 700;
	letter-spacing: 0.4px;
}

.pb-header-icon {
	color: rgba(255,255,255,0.85);
	padding: 6px;
	display: inline-flex;
	align-items: center;
}
.pb-header-icon:hover { color: #fff; }

.pb-header-avatar { text-decoration: none; }
.pb-header-avatar .pb-avatar {
	width: 30px; height: 30px; font-size: 12px;
	background: linear-gradient(135deg, #E8873C, #FFA35C);
	color: #fff; font-weight: 700;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
}

/* -------- HERO — use Inter (not Nunito), keep dark teal-ink gradient -------- */

.pb-hero__title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
	font-weight: 700;
	font-size: 42px;
	letter-spacing: -0.8px;
}
.pb-hero__sub {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
	font-weight: 400;
}
.pb-hero__tabs button {
	font-family: 'Inter', sans-serif !important;
	font-weight: 600;
}
.pb-hero__submit {
	font-family: 'Inter', sans-serif !important;
	font-weight: 600;
}

/* -------- MOBILE — hide mega on small screens -------- */

.pb-mobile-toggle {
	display: none;
	background: transparent;
	border: none;
	padding: 6px;
	cursor: pointer;
	flex-direction: column;
	gap: 4px;
}
.pb-mobile-toggle span {
	display: block; width: 20px; height: 2px;
	background: #fff; border-radius: 2px;
}

@media (max-width: 1100px) {
	.pb-mega__trigger { padding: 8px 8px; font-size: 13px; }
	.pb-brand__text { font-size: 20px; }
	.pb-header-city .pb-city-selector__btn { padding: 5px 10px; font-size: 12px; }
}

@media (max-width: 900px) {
	.pb-mega { display: none; }
	.pb-mobile-toggle { display: flex; }
	.pb-header-link { display: none; }
	.pb-header-post span { display: none; }
	.pb-header-post { padding: 6px 10px; font-size: 12px; }
	.pb-site-header__inner { padding: 8px 12px; gap: 8px; }
}

/* ==========================================================================
   v1.5 — HubSpot-style CRM workspace + mega menu overflow fix
   ========================================================================== */

/* ---------- MEGA MENU OVERFLOW FIX ---------- */
/* Panel must not exceed viewport; last 2 items align to the right */
.pb-mega__panel {
	max-width: 92vw;
}
.pb-mega__item:nth-last-child(-n+2) .pb-mega__panel {
	left: auto;
	right: 0;
}
@media (max-width: 1200px) {
	.pb-mega__panel--wide { min-width: min(780px, 92vw); }
	.pb-mega__grid { gap: 20px; }
	.pb-mega__grid--4 { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
}

/* ==========================================================================
   HUBSPOT-STYLE CRM (portal replacement)
   ========================================================================== */

body.pb-body-portal {
	background: #F8F9FA;
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
body.pb-body-portal .pb-site-header,
body.pb-body-portal .pb-site-footer,
body.pb-body-portal #wpadminbar,
body.pb-body-portal .pb-mobile-nav { display: none !important; }

.pb-crm {
	display: grid;
	grid-template-columns: 240px 1fr;
	min-height: 100vh;
	background: #F8F9FA;
	transition: grid-template-columns 0.2s;
}
.pb-crm.is-collapsed { grid-template-columns: 60px 1fr; }

/* -------- SIDEBAR -------- */
.pb-crm__sidebar {
	background: #ffffff;
	border-right: 1px solid #E8ECEF;
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 0;
	height: 100vh;
	overflow-y: auto;
	overflow-x: hidden;
}
.pb-crm__sidebar::-webkit-scrollbar { width: 6px; }
.pb-crm__sidebar::-webkit-scrollbar-thumb { background: #E8ECEF; border-radius: 3px; }

.pb-crm__brand {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 16px;
	border-bottom: 1px solid #F0F2F4;
	gap: 8px;
}
.pb-crm__brand-link { text-decoration: none; display: flex; align-items: center; overflow: hidden; }
.pb-crm__brand-link .pb-brand__text { font-size: 20px; letter-spacing: -0.4px; display: inline-flex; }
.pb-crm__brand-link .pb-brand__word--white { color: #0E1F26; }
.pb-crm__brand-link .pb-brand__word--orange { color: #E8873C; }
.pb-crm.is-collapsed .pb-crm__brand-full { display: none; }
.pb-crm:not(.is-collapsed) .pb-crm__brand-link > .pb-brand__text:first-child { display: none; }

.pb-crm__collapse-btn {
	background: transparent; border: none; padding: 6px;
	color: #94A3AA; cursor: pointer; border-radius: 4px;
	transition: background 0.15s, color 0.15s, transform 0.2s;
	flex-shrink: 0;
}
.pb-crm__collapse-btn:hover { background: #F5F5F0; color: #1F6B6B; }
.pb-crm.is-collapsed .pb-crm__collapse-btn svg { transform: rotate(180deg); }

.pb-crm__role-pill {
	margin: 12px 16px 8px;
	padding: 4px 10px;
	background: linear-gradient(135deg, #E8873C, #FFA35C);
	color: white;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	border-radius: 20px;
	text-align: center;
}
.pb-crm.is-collapsed .pb-crm__role-pill { display: none; }

.pb-crm__nav {
	padding: 8px 0;
	flex: 1;
}

.pb-crm__group { margin: 4px 0; }
.pb-crm__group-header {
	width: 100%;
	background: transparent;
	border: none;
	padding: 8px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	color: #94A3AA;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	font-family: inherit;
	transition: color 0.15s;
}
.pb-crm__group-header:hover { color: #1F6B6B; }
.pb-crm__group-chev {
	transition: transform 0.2s;
	color: #C4CBD1;
}
.pb-crm__group.is-open .pb-crm__group-chev { transform: rotate(180deg); }
.pb-crm__group-items {
	display: none;
	padding: 2px 8px;
}
.pb-crm__group.is-open .pb-crm__group-items { display: block; }
.pb-crm.is-collapsed .pb-crm__group-header { justify-content: center; padding: 6px; }
.pb-crm.is-collapsed .pb-crm__group-label,
.pb-crm.is-collapsed .pb-crm__group-chev { display: none; }
.pb-crm.is-collapsed .pb-crm__group-items { display: block !important; }

.pb-crm__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 12px;
	color: #4A5560;
	text-decoration: none;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	transition: background 0.12s, color 0.12s;
	margin: 1px 0;
	position: relative;
	white-space: nowrap;
}
.pb-crm__item:hover {
	background: #F5F5F0;
	color: #1F6B6B;
}
.pb-crm__item.is-active {
	background: #E8873C15;
	color: #E8873C;
	font-weight: 600;
}
.pb-crm__item.is-active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	bottom: 8px;
	width: 3px;
	background: #E8873C;
	border-radius: 0 3px 3px 0;
}
.pb-crm__item-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}
.pb-crm__item-icon svg { width: 18px; height: 18px; display: block; }
.pb-crm__item-label { flex: 1; overflow: hidden; text-overflow: ellipsis; }
.pb-crm.is-collapsed .pb-crm__item-label,
.pb-crm.is-collapsed .pb-crm__item-badge { display: none; }
.pb-crm.is-collapsed .pb-crm__item { justify-content: center; padding: 10px 8px; }

.pb-crm__item-badge {
	margin-left: auto;
	background: #0F855F;
	color: white;
	font-size: 9px;
	padding: 2px 6px;
	border-radius: 3px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.4px;
}

.pb-crm__sidebar-foot {
	border-top: 1px solid #F0F2F4;
	padding: 12px 16px;
}
.pb-crm__signout {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #94A3AA;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	padding: 8px 4px;
	border-radius: 4px;
	transition: color 0.15s;
}
.pb-crm__signout:hover { color: #C0392B; }
.pb-crm.is-collapsed .pb-crm__signout span { display: none; }
.pb-crm.is-collapsed .pb-crm__signout { justify-content: center; }

/* -------- MAIN -------- */
.pb-crm__main {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

/* -------- TOP BAR -------- */
.pb-crm__topbar {
	background: #ffffff;
	border-bottom: 1px solid #E8ECEF;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	position: sticky;
	top: 0;
	z-index: 50;
	min-height: 56px;
}

.pb-crm__mobile-toggle {
	display: none;
	background: transparent; border: none;
	padding: 6px; color: #4A5560;
	cursor: pointer;
}

.pb-crm__search {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
	background: #F5F7F9;
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 0 14px;
	max-width: 520px;
	transition: background 0.15s, border-color 0.15s;
}
.pb-crm__search:focus-within {
	background: white;
	border-color: #1F6B6B;
}
.pb-crm__search svg {
	color: #94A3AA;
	flex-shrink: 0;
}
.pb-crm__search input {
	flex: 1;
	background: transparent;
	border: none;
	padding: 10px 12px;
	font-size: 14px;
	font-family: inherit;
	color: #0E1F26;
	outline: none;
	min-width: 0;
}
.pb-crm__search input::placeholder { color: #94A3AA; }
.pb-crm__search kbd {
	background: white;
	border: 1px solid #E8ECEF;
	padding: 2px 6px;
	border-radius: 3px;
	font-size: 10px;
	color: #94A3AA;
	font-family: inherit;
	font-weight: 600;
	flex-shrink: 0;
}
.pb-crm__search-results {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: white;
	border: 1px solid #E8ECEF;
	border-radius: 8px;
	box-shadow: 0 12px 40px rgba(14,31,38,0.12);
	max-height: 400px;
	overflow-y: auto;
	z-index: 100;
}
.pb-crm__search-results a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	color: #0E1F26;
	text-decoration: none;
	font-size: 13px;
	border-bottom: 1px solid #F5F5F0;
}
.pb-crm__search-results a:hover { background: #F5F5F0; color: #1F6B6B; }
.pb-crm__search-results a span.type {
	background: #F5F5F0;
	color: #94A3AA;
	font-size: 10px;
	padding: 2px 8px;
	border-radius: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	flex-shrink: 0;
}
.pb-crm__search-empty { padding: 20px; color: #94A3AA; text-align: center; font-size: 13px; }

.pb-crm__topbar-right {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.pb-crm__create { position: relative; }
.pb-crm__create-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 600;
	background: #E8873C;
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.15s;
}
.pb-crm__create-btn:hover { background: #D97826; }
.pb-crm__create-drop {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	background: white;
	border: 1px solid #E8ECEF;
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(14,31,38,0.12);
	min-width: 240px;
	padding: 6px;
	z-index: 100;
}
.pb-crm__create-drop a {
	display: block;
	padding: 9px 12px;
	color: #0E1F26;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	border-radius: 4px;
}
.pb-crm__create-drop a:hover { background: #F5F5F0; color: #1F6B6B; }
.pb-crm__create-drop hr { border: 0; border-top: 1px solid #F0F2F4; margin: 6px 0; }

.pb-crm__icon-btn {
	background: transparent;
	border: 1px solid #E8ECEF;
	color: #4A5560;
	width: 36px;
	height: 36px;
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s, color 0.15s;
}
.pb-crm__icon-btn:hover { background: #F5F5F0; color: #1F6B6B; }

.pb-crm__user {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-left: 8px;
	border-left: 1px solid #E8ECEF;
}
.pb-crm__user .pb-avatar {
	width: 34px; height: 34px;
	background: linear-gradient(135deg, #E8873C, #FFA35C);
	color: white; font-weight: 700; font-size: 13px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
}
.pb-crm__user-info { display: flex; flex-direction: column; line-height: 1.2; }
.pb-crm__user-info strong { font-size: 13px; color: #0E1F26; font-weight: 600; }
.pb-crm__user-info span { font-size: 11px; color: #94A3AA; }

/* -------- CONTENT -------- */
.pb-crm__content { padding: 24px 28px; flex: 1; min-width: 0; }
.pb-crm__page-header { margin-bottom: 20px; }
.pb-crm__page-header h1 {
	font-size: 24px;
	font-weight: 700;
	color: #0E1F26;
	margin: 0;
	letter-spacing: -0.5px;
}
.pb-crm__page-body { max-width: 1400px; }

/* -------- 3-COLUMN RECORD LAYOUT (used by view methods that opt in) -------- */
.pb-crm-record {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 20px;
	align-items: start;
}
.pb-crm-record__main { min-width: 0; }
.pb-crm-record__side { min-width: 0; }
.pb-crm-side-card {
	background: white;
	border: 1px solid #E8ECEF;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 16px;
}
.pb-crm-side-card h4 {
	font-size: 11px;
	color: #94A3AA;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	margin: 0 0 12px;
	font-weight: 700;
}

/* -------- MOBILE -------- */
@media (max-width: 900px) {
	.pb-crm { grid-template-columns: 1fr; }
	.pb-crm__sidebar {
		position: fixed; left: -260px; z-index: 200; width: 240px;
		transition: left 0.25s;
	}
	.pb-crm__sidebar.is-open { left: 0; box-shadow: 0 0 30px rgba(0,0,0,0.2); }
	.pb-crm__mobile-toggle { display: flex; }
	.pb-crm__topbar { padding: 8px 12px; }
	.pb-crm__search { max-width: none; }
	.pb-crm__search input::placeholder { font-size: 12px; }
	.pb-crm__search kbd { display: none; }
	.pb-crm__user-info { display: none; }
	.pb-crm__content { padding: 16px; }
	.pb-crm-record { grid-template-columns: 1fr; }
}

/* ==========================================================================
   v1.6 — Listing wizard, verification queue, activity timeline, tasks, record layout
   ========================================================================== */

/* ---------- WIZARD ---------- */
.pb-wiz { max-width: 780px; margin: 40px auto; padding: 0 20px; font-family: 'Inter', sans-serif; }
.pb-wiz__header { text-align: center; margin-bottom: 32px; }
.pb-wiz__header h1 { font-size: 30px; color: #0E1F26; margin: 0 0 8px; font-weight: 700; letter-spacing: -0.5px; }
.pb-wiz__header p { color: #607080; font-size: 15px; margin: 0; }

.pb-wiz__progress { display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; padding: 0 20px; gap: 8px; }
.pb-wiz__step { display: flex; align-items: center; gap: 8px; opacity: 0.4; transition: opacity 0.2s; }
.pb-wiz__step.is-active, .pb-wiz__step.is-done { opacity: 1; }
.pb-wiz__step-num { width: 32px; height: 32px; background: #E8ECEF; color: #607080; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; transition: background 0.2s, color 0.2s; }
.pb-wiz__step.is-active .pb-wiz__step-num, .pb-wiz__step.is-done .pb-wiz__step-num { background: #E8873C; color: white; }
.pb-wiz__step-label { font-size: 13px; font-weight: 600; color: #0E1F26; }
.pb-wiz__line { flex: 1; height: 2px; background: #E8ECEF; max-width: 40px; }
@media (max-width: 640px) { .pb-wiz__step-label { display: none; } .pb-wiz__line { max-width: 20px; } }

.pb-wiz__form { background: white; border: 1px solid #E8ECEF; border-radius: 12px; padding: 32px; box-shadow: 0 4px 20px rgba(14,31,38,0.04); }
.pb-wiz__panel { display: none; animation: fadeIn 0.25s; }
.pb-wiz__panel.is-active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.pb-wiz__panel h2 { font-size: 20px; color: #0E1F26; margin: 0 0 6px; font-weight: 700; }
.pb-wiz__panel h2 small { color: #94A3AA; font-weight: 400; font-size: 14px; }
.pb-wiz__panel > p.pb-muted { color: #607080; font-size: 14px; margin: 0 0 20px; }

.pb-wiz__label { display: block; font-size: 13px; color: #0E1F26; font-weight: 600; margin: 20px 0 8px; }
.pb-wiz__form label { display: block; font-size: 13px; color: #0E1F26; font-weight: 600; margin-bottom: 12px; }
.pb-wiz__form label span { color: #C0392B; }
.pb-wiz__form label small { color: #94A3AA; font-weight: 400; }
.pb-wiz__form input[type="text"],
.pb-wiz__form input[type="tel"],
.pb-wiz__form input[type="email"],
.pb-wiz__form input[type="number"],
.pb-wiz__form input[type="date"],
.pb-wiz__form textarea,
.pb-wiz__form select {
	width: 100%; padding: 11px 14px; border: 1.5px solid #E8ECEF; border-radius: 8px; font-size: 14px; font-family: inherit; color: #0E1F26; background: white; transition: border-color 0.15s; margin-top: 4px;
}
.pb-wiz__form input:focus, .pb-wiz__form textarea:focus, .pb-wiz__form select:focus { outline: none; border-color: #1F6B6B; }
.pb-wiz__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .pb-wiz__row { grid-template-columns: 1fr; } }

.pb-chip-group { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.pb-chip-group button { background: white; border: 1.5px solid #E8ECEF; padding: 9px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; color: #4A5560; cursor: pointer; font-family: inherit; transition: all 0.15s; }
.pb-chip-group button:hover { border-color: #1F6B6B; color: #1F6B6B; }
.pb-chip-group button.is-selected { background: #1F6B6B; color: white; border-color: #1F6B6B; }

.pb-wiz__actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid #F0F2F4; }
.pb-wiz__actions .pb-btn:only-child { margin-left: auto; }

.pb-wiz__autocomplete { position: relative; }
.pb-wiz__autocomplete-drop { position: absolute; top: 100%; left: 0; right: 0; background: white; border: 1px solid #E8ECEF; border-radius: 8px; box-shadow: 0 8px 24px rgba(14,31,38,0.12); max-height: 300px; overflow-y: auto; z-index: 20; margin-top: 4px; }
.pb-wiz__autocomplete-drop div { padding: 10px 14px; cursor: pointer; font-size: 14px; border-bottom: 1px solid #F5F5F0; }
.pb-wiz__autocomplete-drop div:hover { background: #F5F5F0; }
.pb-wiz__autocomplete-drop div strong { display: block; color: #0E1F26; }
.pb-wiz__autocomplete-drop div span { font-size: 12px; color: #94A3AA; }

.pb-wiz__project-matched { margin-top: 12px; padding: 14px 16px; background: #E9F7F0; border: 1px solid #B8E6C8; border-radius: 8px; display: flex; align-items: center; gap: 12px; }
.pb-wiz__matched-badge { background: #0F855F; color: white; font-size: 11px; padding: 4px 8px; border-radius: 4px; font-weight: 700; }
.pb-wiz__matched-info strong { display: block; color: #0E1F26; font-size: 14px; }
.pb-wiz__matched-info span { color: #607080; font-size: 12px; }

.pb-wiz__photos { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; margin: 16px 0; }
.pb-wiz__photo-slot { aspect-ratio: 4/3; border: 2px dashed #E8ECEF; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; color: #94A3AA; transition: border-color 0.15s, color 0.15s; }
.pb-wiz__photo-slot:hover { border-color: #E8873C; color: #E8873C; }
.pb-wiz__photo-slot span { font-size: 32px; line-height: 1; }
.pb-wiz__photo-slot em { font-size: 12px; font-style: normal; margin-top: 4px; }

.pb-wiz__checkbox { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; font-size: 13px; margin: 20px 0; padding: 12px; background: #F5F7F9; border-radius: 6px; }
.pb-wiz__checkbox input { flex-shrink: 0; margin-top: 2px; }

.pb-wiz__success { max-width: 560px; margin: 60px auto; text-align: center; background: white; border: 1px solid #E8ECEF; border-radius: 12px; padding: 48px 32px; box-shadow: 0 4px 20px rgba(14,31,38,0.04); }
.pb-wiz__success-icon { width: 72px; height: 72px; margin: 0 auto 20px; background: #0F855F; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; font-weight: 700; }
.pb-wiz__success h2 { color: #0E1F26; font-size: 24px; margin: 0 0 12px; }
.pb-wiz__success p { color: #607080; margin: 6px 0; }
.pb-wiz__success code { background: #F5F7F9; padding: 2px 8px; border-radius: 4px; font-family: 'SF Mono', monospace; font-size: 13px; color: #E8873C; }
.pb-wiz__success-actions { margin-top: 24px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- VERIFICATION QUEUE ---------- */
.pb-verify-list { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.pb-verify-item { background: white; border: 1px solid #E8ECEF; border-radius: 8px; padding: 16px; }
.pb-verify-item__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.pb-verify-item__head h4 { margin: 0 0 6px; font-size: 15px; color: #0E1F26; }
.pb-verify-item__meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12px; color: #607080; }
.pb-verify-item__body { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; padding-top: 12px; border-top: 1px solid #F5F5F0; flex-wrap: wrap; }
.pb-verify-item__owner { font-size: 13px; color: #4A5560; }
.pb-verify-item__actions { display: flex; gap: 8px; }
.pb-verify-item__reason { margin-top: 10px; padding: 10px 12px; background: #FDF0EE; border-left: 3px solid #C0392B; color: #7C2E24; font-size: 13px; border-radius: 0 4px 4px 0; }
.pb-verify-item__ok { margin-top: 10px; }

.pb-tag--pending  { background: #FEF3E7; color: #D97826; }
.pb-tag--approved { background: #E9F7F0; color: #0F855F; }
.pb-tag--rejected { background: #FDF0EE; color: #C0392B; }
.pb-tag--publish  { background: #E9F7F0; color: #0F855F; }

.pb-btn--sm { padding: 6px 12px; font-size: 12px; }
.pb-btn--danger { background: #C0392B; color: white; border: 1px solid #C0392B; }
.pb-btn--danger:hover { background: #A82F22; }

.pb-portal-panel--full { padding: 0; background: transparent; border: none; }

/* ---------- ACTIVITY TIMELINE ---------- */
.pb-timeline { margin-top: 20px; }
.pb-timeline__composer { background: #F5F7F9; border: 1px solid #E8ECEF; border-radius: 8px; padding: 12px; margin-bottom: 20px; }
.pb-timeline__tabs { display: flex; gap: 4px; margin-bottom: 10px; flex-wrap: wrap; }
.pb-timeline__tabs button { background: transparent; border: none; padding: 6px 10px; font-size: 12px; font-weight: 600; color: #607080; cursor: pointer; border-radius: 4px; font-family: inherit; }
.pb-timeline__tabs button:hover { background: white; color: #1F6B6B; }
.pb-timeline__tabs button.is-active { background: white; color: #1F6B6B; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.pb-timeline__composer textarea { width: 100%; padding: 10px 12px; border: 1px solid #E8ECEF; border-radius: 6px; font-family: inherit; font-size: 14px; resize: vertical; min-height: 60px; box-sizing: border-box; }
.pb-timeline__composer textarea:focus { outline: none; border-color: #1F6B6B; }
.pb-timeline__composer-actions { display: flex; align-items: center; gap: 12px; margin-top: 8px; }

.pb-timeline__list { display: flex; flex-direction: column; gap: 14px; }
.pb-timeline__empty { text-align: center; padding: 40px 20px; color: #94A3AA; font-size: 13px; }
.pb-timeline__item { display: flex; gap: 12px; padding: 12px 14px; background: white; border: 1px solid #F0F2F4; border-radius: 6px; }
.pb-timeline__icon { width: 32px; height: 32px; background: #F5F7F9; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.pb-timeline__body { flex: 1; min-width: 0; }
.pb-timeline__head { display: flex; align-items: baseline; gap: 8px; font-size: 13px; color: #0E1F26; margin-bottom: 4px; flex-wrap: wrap; }
.pb-timeline__when { margin-left: auto; font-size: 11px; color: #94A3AA; }
.pb-timeline__subject { font-weight: 600; font-size: 13px; color: #0E1F26; margin-bottom: 2px; }
.pb-timeline__text { color: #4A5560; font-size: 13px; line-height: 1.5; }
.pb-timeline__item--call { border-left: 3px solid #1F6B6B; }
.pb-timeline__item--email { border-left: 3px solid #E8873C; }
.pb-timeline__item--whatsapp { border-left: 3px solid #25D366; }
.pb-timeline__item--note { border-left: 3px solid #94A3AA; }
.pb-timeline__item--meeting { border-left: 3px solid #A855F7; }

/* ---------- TASKS ---------- */
.pb-tasks__list { display: flex; flex-direction: column; gap: 6px; }
.pb-tasks__empty { color: #94A3AA; font-size: 12px; padding: 8px 4px; }
.pb-tasks__item { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 4px; border-bottom: 1px solid #F5F5F0; }
.pb-tasks__item label { display: flex; align-items: center; gap: 8px; flex: 1; cursor: pointer; font-size: 13px; color: #0E1F26; }
.pb-tasks__title { font-weight: 500; }
.pb-tasks__meta { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #94A3AA; flex-wrap: wrap; }
.pb-tasks__meta .is-overdue { color: #C0392B; font-weight: 700; }
.pb-tasks__item.is-overdue .pb-tasks__title { color: #C0392B; }
.pb-tag--high { background: #FDF0EE; color: #C0392B; padding: 1px 6px; border-radius: 3px; font-size: 9px; text-transform: uppercase; letter-spacing: 0.4px; font-weight: 700; }
.pb-tag--medium { background: #FEF3E7; color: #D97826; padding: 1px 6px; border-radius: 3px; font-size: 9px; text-transform: uppercase; letter-spacing: 0.4px; font-weight: 700; }
.pb-tag--low { background: #F5F7F9; color: #94A3AA; padding: 1px 6px; border-radius: 3px; font-size: 9px; text-transform: uppercase; letter-spacing: 0.4px; font-weight: 700; }
.pb-tasks__composer { display: flex; gap: 6px; margin-top: 10px; padding-top: 10px; border-top: 1px solid #F0F2F4; flex-wrap: wrap; }
.pb-tasks__composer input[type="text"] { flex: 1; min-width: 120px; padding: 7px 10px; border: 1px solid #E8ECEF; border-radius: 4px; font-size: 12px; font-family: inherit; }
.pb-tasks__composer input[type="date"] { padding: 6px; border: 1px solid #E8ECEF; border-radius: 4px; font-size: 12px; font-family: inherit; }

/* ---------- LEAD DETAIL HEADER ---------- */
.pb-lead-header { margin-bottom: 16px; }
.pb-link-back { color: #94A3AA; font-size: 12px; text-decoration: none; display: inline-block; margin-bottom: 12px; }
.pb-link-back:hover { color: #1F6B6B; }
.pb-lead-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.pb-lead-title h2 { margin: 0; font-size: 22px; color: #0E1F26; }
.pb-lead-tags { display: flex; align-items: center; gap: 8px; }
.pb-lead-score { background: #FDF0EE; color: #C0392B; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.pb-side-row { display: flex; justify-content: space-between; gap: 8px; padding: 8px 0; border-bottom: 1px solid #F5F5F0; font-size: 13px; }
.pb-side-row:last-child { border-bottom: none; }
.pb-side-row span { color: #94A3AA; font-size: 12px; }
.pb-side-row a { color: #1F6B6B; text-decoration: none; }

/* ==========================================================================
   v1.7 — Kanban + Unified Inbox + Email Templates + Project Workflow
   ========================================================================== */

/* ---------- KANBAN BOARD ---------- */
.pb-kanban-wrap { margin: -10px 0 0; }
.pb-kanban-filters { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.pb-kanban-filter { padding: 6px 12px; background: white; border: 1px solid #E8ECEF; border-radius: 20px; font-size: 12px; color: #4A5560; text-decoration: none; font-weight: 600; transition: all 0.15s; }
.pb-kanban-filter:hover { border-color: #1F6B6B; color: #1F6B6B; }
.pb-kanban-filter.is-active { background: #1F6B6B; color: white; border-color: #1F6B6B; }
.pb-kanban-filter.pb-filter--hot.is-active { background: #C0392B; border-color: #C0392B; }

.pb-kanban { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 12px; min-height: 500px; }
.pb-kanban::-webkit-scrollbar { height: 8px; }
.pb-kanban::-webkit-scrollbar-thumb { background: #E8ECEF; border-radius: 4px; }
.pb-kanban__col { flex: 0 0 260px; background: #F5F7F9; border-radius: 8px; padding: 10px; display: flex; flex-direction: column; max-height: 75vh; }
.pb-kanban__col--won { background: #E9F7F0; }
.pb-kanban__col--lost { background: #FDF0EE; }
.pb-kanban__col.is-drop-target { background: #E8873C15; box-shadow: inset 0 0 0 2px #E8873C; }

.pb-kanban__col-head { display: flex; justify-content: space-between; align-items: center; padding: 4px 8px 10px; }
.pb-kanban__col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: #4A5560; }
.pb-kanban__col-count { background: white; padding: 2px 8px; border-radius: 12px; font-size: 11px; font-weight: 700; color: #4A5560; }
.pb-kanban__cards { display: flex; flex-direction: column; gap: 8px; overflow-y: auto; flex: 1; padding: 2px; }

.pb-kanban__card { background: white; border: 1px solid #E8ECEF; border-radius: 8px; padding: 10px 12px; cursor: grab; transition: box-shadow 0.15s, transform 0.15s; }
.pb-kanban__card:hover { box-shadow: 0 4px 12px rgba(14,31,38,0.08); }
.pb-kanban__card:active { cursor: grabbing; }
.pb-kanban__card.is-dragging { opacity: 0.4; transform: rotate(1deg); }
.pb-kanban__card.is-stuck { border-color: #F5B94B; background: #FFFCF5; }

.pb-kanban__card-head { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-bottom: 6px; }
.pb-kanban__card-head strong { font-size: 13px; color: #0E1F26; }
.pb-stuck-badge { background: #FEF3E7; color: #C0392B; font-size: 10px; padding: 2px 6px; border-radius: 3px; font-weight: 700; }
.pb-kanban__card-meta { display: flex; flex-wrap: wrap; gap: 6px; font-size: 11px; color: #607080; margin-bottom: 4px; }
.pb-kanban__card-budget { font-size: 12px; color: #E8873C; font-weight: 700; margin-bottom: 6px; }
.pb-kanban__card-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 6px; border-top: 1px solid #F5F5F0; }
.pb-kanban__card-owner { font-size: 10px; color: #94A3AA; font-weight: 600; }
.pb-kanban__card-open { font-size: 11px; color: #1F6B6B; text-decoration: none; font-weight: 600; }

/* ---------- UNIFIED INBOX ---------- */
.pb-inbox { display: flex; flex-direction: column; gap: 4px; }
.pb-inbox__item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; background: white; border: 1px solid #F0F2F4; border-radius: 8px; text-decoration: none; color: inherit; transition: background 0.15s; }
.pb-inbox__item:hover { background: #F5F7F9; }
.pb-inbox__item--inbound { border-left: 3px solid #0F855F; }
.pb-inbox__item--outbound { border-left: 3px solid #94A3AA; }
.pb-inbox__icon { width: 34px; height: 34px; background: #F5F5F0; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.pb-inbox__body { flex: 1; min-width: 0; }
.pb-inbox__head { display: flex; gap: 8px; align-items: baseline; margin-bottom: 2px; flex-wrap: wrap; }
.pb-inbox__head strong { font-size: 13px; color: #0E1F26; }
.pb-inbox__channel { font-size: 10px; background: #F5F5F0; color: #607080; padding: 1px 6px; border-radius: 3px; font-weight: 600; text-transform: uppercase; }
.pb-inbox__when { margin-left: auto; font-size: 11px; color: #94A3AA; }
.pb-inbox__preview { font-size: 12px; color: #607080; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- EMAIL TEMPLATE CARDS ---------- */
.pb-tpl-card { background: white; border: 1px solid #E8ECEF; border-radius: 8px; padding: 16px; margin-bottom: 12px; }
.pb-tpl-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.pb-tpl-card__head strong { font-size: 14px; color: #0E1F26; }
.pb-tpl-card__head code { background: #F5F5F0; padding: 2px 8px; border-radius: 4px; font-size: 11px; color: #E8873C; font-family: 'SF Mono', monospace; }
.pb-tpl-card__subject { font-size: 13px; color: #4A5560; margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid #F5F5F0; }
.pb-tpl-card__body { font-size: 13px; color: #4A5560; padding: 8px; background: #F8F9FA; border-radius: 4px; }
.pb-tpl-card__body h3 { font-size: 15px; margin: 0 0 6px; color: #0E1F26; }

/* ---------- PROJECT WORKFLOW METABOX ---------- */
.pb-proj-wf { padding: 8px 0; }
.pb-proj-wf__progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #E8ECEF; }
@media (max-width: 900px) { .pb-proj-wf__progress { grid-template-columns: repeat(2, 1fr); } }
.pb-proj-wf__step { display: flex; gap: 8px; padding: 10px; background: #F5F7F9; border-radius: 6px; opacity: 0.6; }
.pb-proj-wf__step.is-current { opacity: 1; background: #FEF3E7; border-left: 3px solid #E8873C; }
.pb-proj-wf__step.is-done { opacity: 1; background: #E9F7F0; border-left: 3px solid #0F855F; }
.pb-proj-wf__step-num { flex-shrink: 0; width: 26px; height: 26px; background: white; color: #607080; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.pb-proj-wf__step.is-current .pb-proj-wf__step-num { background: #E8873C; color: white; }
.pb-proj-wf__step.is-done .pb-proj-wf__step-num { background: #0F855F; color: white; }
.pb-proj-wf__step-body { flex: 1; min-width: 0; }
.pb-proj-wf__step-body strong { display: block; font-size: 12px; color: #0E1F26; }
.pb-proj-wf__step-body small { font-size: 10px; color: #94A3AA; }

.pb-proj-wf__stage { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #F5F5F0; }
.pb-proj-wf__stage h4 { font-size: 13px; color: #1F6B6B; margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0.4px; }
.pb-proj-wf__checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (max-width: 700px) { .pb-proj-wf__checklist { grid-template-columns: 1fr; } }
.pb-proj-wf__check { display: flex; align-items: center; gap: 8px; padding: 6px 10px; background: #F8F9FA; border-radius: 4px; font-size: 13px; color: #4A5560; cursor: pointer; }
.pb-proj-wf__check:hover { background: #F5F5F0; }
.pb-proj-wf__check input[type="checkbox"]:checked + span { text-decoration: line-through; color: #94A3AA; }

/* ---------- WIZARD PHOTO UPLOAD (real) ---------- */
.pb-wiz__photo-thumb { position: relative; }
.pb-wiz__photo-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; display: block; }
.pb-wiz__photo-remove { position: absolute; top: 4px; right: 4px; width: 20px; height: 20px; background: rgba(0,0,0,0.6); color: white; border-radius: 50%; border: none; cursor: pointer; font-size: 12px; line-height: 1; padding: 0; display: flex; align-items: center; justify-content: center; }
.pb-wiz__photo-thumb:first-child::after { content: 'MAIN'; position: absolute; bottom: 4px; left: 4px; background: #E8873C; color: white; font-size: 9px; padding: 2px 6px; border-radius: 3px; font-weight: 700; letter-spacing: 0.4px; }

/* ==========================================================================
   v1.8 — Deals, commissions, template builder, automation, broadcasts
   ========================================================================== */

/* Deal stage colors */
.pb-kanban__col--closed_won { background: #E9F7F0; }
.pb-kanban__col--closed_lost { background: #FDF0EE; }

/* Commissions summary */
.pb-comm-summary { display: flex; gap: 12px; margin: 12px 0 20px; }
.pb-comm-summary > div { flex: 1; background: white; border: 1px solid #E8ECEF; border-radius: 8px; padding: 14px; }
.pb-comm-summary span { display: block; font-size: 11px; color: #94A3AA; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 4px; }
.pb-comm-summary strong { display: block; font-size: 20px; color: #0E1F26; font-weight: 700; }

/* Template builder */
.pb-tpl-builder__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.pb-tpl-card__actions { display: flex; gap: 6px; margin-top: 10px; padding-top: 10px; border-top: 1px solid #F5F5F0; }
.pb-tpl-editor { position: fixed; inset: 0; background: rgba(14,31,38,0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
.pb-tpl-editor__box { background: white; border-radius: 12px; padding: 24px; max-width: 640px; width: 100%; max-height: 90vh; overflow-y: auto; }
.pb-tpl-editor__box h3 { margin: 0 0 16px; color: #0E1F26; }
.pb-tpl-editor__box label { display: block; margin-bottom: 12px; font-weight: 600; font-size: 13px; color: #0E1F26; }
.pb-tpl-editor__box input, .pb-tpl-editor__box textarea { width: 100%; padding: 10px 12px; border: 1.5px solid #E8ECEF; border-radius: 6px; font-family: inherit; font-size: 13px; margin-top: 4px; box-sizing: border-box; }
.pb-tpl-editor__box textarea { font-family: 'SF Mono', monospace; font-size: 12px; }
.pb-tpl-editor__actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 12px; }

/* Automation toggle */
.pb-auto-rules { display: flex; flex-direction: column; gap: 10px; }
.pb-auto-rule { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px; background: white; border: 1px solid #E8ECEF; border-radius: 8px; }
.pb-auto-rule__body strong { display: block; font-size: 14px; color: #0E1F26; margin-bottom: 3px; }
.pb-auto-rule__body small { font-size: 12px; color: #607080; }

.pb-toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.pb-toggle input { opacity: 0; width: 0; height: 0; }
.pb-toggle__slider { position: absolute; cursor: pointer; inset: 0; background: #E8ECEF; border-radius: 24px; transition: 0.2s; }
.pb-toggle__slider::before { position: absolute; content: ''; height: 18px; width: 18px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: 0.2s; }
.pb-toggle input:checked + .pb-toggle__slider { background: #0F855F; }
.pb-toggle input:checked + .pb-toggle__slider::before { transform: translateX(20px); }

/* Broadcast composer */
.pb-broadcast-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 12px; }
@media (max-width: 700px) { .pb-broadcast-grid { grid-template-columns: 1fr; } }
.pb-broadcast-grid label { display: block; font-weight: 600; font-size: 12px; color: #0E1F26; }
.pb-broadcast-grid input, .pb-broadcast-grid select { width: 100%; padding: 9px 12px; border: 1.5px solid #E8ECEF; border-radius: 6px; font-family: inherit; font-size: 13px; margin-top: 4px; box-sizing: border-box; }
#pb-broadcast-form > label { display: block; font-weight: 600; font-size: 12px; color: #0E1F26; margin-bottom: 12px; }
#pb-broadcast-form textarea { width: 100%; padding: 10px 12px; border: 1.5px solid #E8ECEF; border-radius: 6px; font-family: inherit; font-size: 13px; margin-top: 4px; box-sizing: border-box; resize: vertical; }
.pb-broadcast-actions { display: flex; align-items: center; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid #F0F2F4; }

/* v1.10 — Matches + Invoice */
.pb-matches { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.pb-match-item { background: white; border: 1px solid #E8ECEF; border-radius: 6px; padding: 8px 10px; }
.pb-match-item__head { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 4px; }
.pb-match-item__meta { display: flex; gap: 8px; font-size: 11px; color: #607080; flex-wrap: wrap; }
.pb-match-score { font-size: 11px; color: #0F855F; font-weight: 700; white-space: nowrap; }

.pb-invoice { background: white; border: 1px solid #E8ECEF; border-radius: 6px; padding: 14px; }
.pb-invoice h3 { margin: 0 0 8px; color: #1F6B6B; }
.pb-invoice table { width: 100%; }
.pb-invoice td { padding: 6px 10px; border-bottom: 1px solid #F5F5F0; }

/* ==========================================================================
   v1.11 — 3-Layer Search Box + Verified Listings 4-col + Load More
   ========================================================================== */

.pb-search3 { max-width: 900px; margin-top: 24px; }

/* Layer 1: purpose tabs */
.pb-search3__purpose { display: flex; gap: 2px; margin-bottom: 0; flex-wrap: wrap; }
.pb-search3__purpose button {
	background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75);
	border: none; padding: 10px 16px; font-size: 12px; font-weight: 700;
	letter-spacing: 0.4px; cursor: pointer; border-radius: 8px 8px 0 0;
	transition: 0.15s;
}
.pb-search3__purpose button:hover { background: rgba(255,255,255,0.14); color: white; }
.pb-search3__purpose button.is-active { background: white; color: #0E1F26; }

/* Layer 2: city + search bar */
.pb-search3__bar {
	background: white; border-radius: 0 12px 12px 12px; padding: 14px;
	display: flex; align-items: center; gap: 10px; position: relative;
	box-shadow: 0 20px 50px rgba(14,31,38,0.25);
}
.pb-search3__city { display: flex; align-items: center; gap: 6px; padding: 0 12px; border-right: 1.5px solid #E8ECEF; color: #0E1F26; flex-shrink: 0; }
.pb-search3__city select { border: none; font-weight: 700; font-size: 14px; color: #0E1F26; background: transparent; cursor: pointer; }
.pb-search3__field { display: flex; align-items: center; gap: 8px; flex: 1; padding: 0 8px; position: relative; color: #94A3AA; }
.pb-search3__field input { border: none; flex: 1; font-size: 14px; padding: 10px 0; color: #0E1F26; }
.pb-search3__field input:focus { outline: none; }
.pb-search3__submit { background: #E8873C; color: white; border: none; padding: 12px 28px; border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer; flex-shrink: 0; transition: 0.15s; }
.pb-search3__submit:hover { background: #D67826; }

/* Intent dropdown (Layer 2 sub-options) */
.pb-search3__dropdown {
	position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: white;
	border-radius: 10px; box-shadow: 0 12px 30px rgba(14,31,38,0.18); padding: 14px 16px; z-index: 20;
}
.pb-search3__dropdown-label { font-size: 11px; font-weight: 700; color: #94A3AA; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.pb-search3__dropdown-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.pb-search3__chip { background: #F5F5F0; border: 1.5px solid #E8ECEF; padding: 7px 14px; border-radius: 20px; font-size: 13px; color: #0E1F26; cursor: pointer; transition: 0.15s; }
.pb-search3__chip:hover { border-color: #1F6B6B; }
.pb-search3__chip.is-selected { background: #1F6B6B; border-color: #1F6B6B; color: white; }

/* Layer 3: popular localities */
.pb-search3__popular { display: flex; align-items: center; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.pb-search3__popular-label { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600; }
/* v1.37: the chip rules that lived here are gone. There is now exactly one
   definition, at the end of this file. Two rules for the same element is how
   this component ended up illegible in the first place. */

@media (max-width: 700px) {
	.pb-search3__bar { flex-wrap: wrap; }
	.pb-search3__city { border-right: none; border-bottom: 1.5px solid #E8ECEF; padding-bottom: 8px; width: 100%; }
	.pb-search3__submit { width: 100%; }
}

/* Verified Listings — 4-col grid */
.pb-featured__grid--4col { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .pb-featured__grid--4col { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .pb-featured__grid--4col { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 480px)  { .pb-featured__grid--4col { grid-template-columns: 1fr; } }

.pb-prop-card__posted { margin-top: 6px; color: #94A3AA; font-size: 11px; }

.pb-featured__loadmore-wrap { text-align: center; margin-top: 28px; }
.pb-featured__count { color: #607080; font-size: 13px; margin-bottom: 12px; }
.pb-featured__loadmore { min-width: 220px; }

/* Hot Selling badge on project cards */
.pb-proj-card__hot { position: absolute; top: 10px; left: 10px; background: #E8873C; color: white; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.pb-proj-card__img { position: relative; }

/* ==========================================================================
   v1.12 — Category landing pages + filter sidebar
   ========================================================================== */

.pb-archive__cat-tabs { display: flex; gap: 8px; margin: 16px 0 24px; flex-wrap: wrap; }
.pb-archive__cat-tabs a { background: white; border: 1.5px solid #E8ECEF; color: #607080; padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; text-decoration: none; transition: 0.15s; }
.pb-archive__cat-tabs a:hover { border-color: #1F6B6B; color: #1F6B6B; }
.pb-archive__cat-tabs a.is-active { background: #1F6B6B; border-color: #1F6B6B; color: white; }

.pb-filter__pills { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.pb-pill { cursor: pointer; }
.pb-pill input { position: absolute; opacity: 0; pointer-events: none; }
.pb-pill span { display: inline-block; padding: 6px 14px; border: 1.5px solid #E8ECEF; border-radius: 20px; font-size: 12px; color: #0E1F26; transition: 0.15s; }
.pb-pill input:checked + span { background: #1F6B6B; border-color: #1F6B6B; color: white; }

.pb-filter__checks { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.pb-check { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; color: #0E1F26; }
.pb-check input { width: 15px; height: 15px; accent-color: #1F6B6B; }

.pb-archive__toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.pb-archive__toolbar-count { color: #607080; font-size: 13px; font-weight: 600; }
.pb-archive__sort { border: 1.5px solid #E8ECEF; border-radius: 6px; padding: 8px 12px; font-size: 13px; color: #0E1F26; background: white; cursor: pointer; }

#pb-archive-grid-wrap { transition: opacity 0.2s; }

/* ==========================================================================
   v1.13 — Single Property: Gallery, EMI Calculator, Similar Properties
   ========================================================================== */

.pb-gallery { margin: 20px 0; }
.pb-gallery__main { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; background: #F5F5F0; }
.pb-gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pb-gallery__count { position: absolute; bottom: 12px; right: 12px; background: rgba(14,31,38,0.75); color: white; font-size: 12px; padding: 5px 12px; border-radius: 20px; }
.pb-gallery__thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; }
.pb-gallery__thumb { flex: 0 0 90px; width: 90px; height: 64px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; background: none; }
.pb-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pb-gallery__thumb.is-active { border-color: #1F6B6B; }
.pb-gallery__thumb:hover { opacity: 0.85; }

.pb-emi__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: center; margin-top: 12px; }
@media (max-width: 700px) { .pb-emi__grid { grid-template-columns: 1fr; } }
.pb-emi__inputs { display: flex; flex-direction: column; gap: 12px; }
.pb-emi__inputs label { font-size: 12px; font-weight: 600; color: #0E1F26; }
.pb-emi__inputs input { width: 100%; margin-top: 4px; padding: 9px 12px; border: 1.5px solid #E8ECEF; border-radius: 6px; font-size: 14px; box-sizing: border-box; }
.pb-emi__result { background: #F5F5F0; border-radius: 10px; padding: 20px; text-align: center; }
.pb-emi__result span { display: block; font-size: 12px; color: #607080; margin-bottom: 4px; }
.pb-emi__result strong { display: block; font-size: 28px; color: #1F6B6B; font-weight: 800; margin-bottom: 10px; }

.pb-similar { margin-top: 32px; }
.pb-similar h2 { margin-bottom: 16px; }

/* ==========================================================================
   v1.16 — Premium split-panel auth pages (login/register/forgot/reset)
   No WordPress footprint — full CRM-grade branded experience.
   ========================================================================== */

.pb-auth-split {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.pb-auth-split--wide { grid-template-columns: 0.85fr 1.15fr; }

.pb-auth-split__brand {
	background: linear-gradient(160deg, #0E1F26 0%, #144F4F 55%, #1F6B6B 100%);
	color: white;
	padding: 48px 56px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}
.pb-auth-split__brand::before {
	content: '';
	position: absolute; inset: 0;
	background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06) 0%, transparent 50%),
	                  radial-gradient(circle at 80% 80%, rgba(232,135,60,0.08) 0%, transparent 50%);
	pointer-events: none;
}
.pb-auth-split__logo {
	font-family: 'Nunito', sans-serif;
	font-weight: 900;
	font-size: 24px;
	text-decoration: none;
	display: inline-block;
	position: relative;
	z-index: 1;
}
.pb-auth-split__logo-word1 { color: white; }
.pb-auth-split__logo-word2 { color: #E8873C; }

.pb-auth-split__brand-body { position: relative; z-index: 1; margin: 40px 0; }
.pb-auth-split__brand-body h2 { font-size: 30px; line-height: 1.25; margin: 0 0 14px; color: white; font-weight: 700; }
.pb-auth-split__brand-body p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.78); margin: 0; max-width: 420px; }

.pb-auth-split__stats {
	display: flex; gap: 32px;
	position: relative; z-index: 1;
	padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15);
}
.pb-auth-split__stats > div { display: flex; flex-direction: column; gap: 2px; }
.pb-auth-split__stats strong { font-size: 22px; font-weight: 800; color: white; }
.pb-auth-split__stats span { font-size: 12px; color: rgba(255,255,255,0.65); }

.pb-auth-split__form {
	background: #FAFAF7;
	display: flex; align-items: center; justify-content: center;
	padding: 40px 24px;
}
.pb-auth-split__form-inner { max-width: 440px; width: 100%; }
.pb-auth-split__form-inner h1 { font-size: 26px; margin: 0 0 6px; color: #0E1F26; }

@media (max-width: 900px) {
	.pb-auth-split, .pb-auth-split--wide { grid-template-columns: 1fr; }
	.pb-auth-split__brand { padding: 36px 28px; min-height: 260px; }
	.pb-auth-split__brand-body { margin: 24px 0; }
	.pb-auth-split__brand-body h2 { font-size: 22px; }
	.pb-auth-split__stats { gap: 20px; flex-wrap: wrap; }
	.pb-auth-split__form { padding: 32px 20px; }
}

/* Redirect notice (shown briefly when already-logged-in users hit login/register) */
.pb-redirect-notice { padding: 60px 20px; text-align: center; color: var(--pb-warm-gray); }

/* ==========================================================================
   v1.17 — RM Leaderboard + Cohort Analysis
   ========================================================================== */

.pb-lb-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.pb-lb-period { display: flex; gap: 6px; }
.pb-lb-period__btn { background: #F5F5F0; border: 1.5px solid #E8ECEF; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; color: #607080; text-decoration: none; transition: 0.15s; }
.pb-lb-period__btn:hover { border-color: #1F6B6B; color: #1F6B6B; }
.pb-lb-period__btn.is-active { background: #1F6B6B; border-color: #1F6B6B; color: white; }

.pb-lb-table .pb-lb-rank { font-size: 16px; font-weight: 800; text-align: center; width: 50px; }
.pb-lb-row--top { background: rgba(232,135,60,0.04); }

.pb-cohort-table-wrap { overflow-x: auto; }
.pb-cohort-table { min-width: 720px; }
.pb-cohort-cell {
	position: relative; background: #F0F2F0; border-radius: 4px; height: 26px;
	display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pb-cohort-cell::before {
	content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: var(--pct, 0%);
	background: linear-gradient(90deg, rgba(31,107,107,0.25), rgba(31,107,107,0.5));
}
.pb-cohort-cell span { position: relative; z-index: 1; font-size: 11px; font-weight: 700; color: #0E1F26; }

/* ==========================================================================
   v1.18 — NRI Vertical: hero, currency toggle, visit booking form
   ========================================================================== */

.pb-nri-hero {
	background: linear-gradient(160deg, #0E1F26 0%, #144F4F 55%, #1F6B6B 100%);
	color: white; padding: 64px 0 56px; text-align: center;
}
.pb-nri-hero__inner { max-width: 720px; margin: 0 auto; }
.pb-nri-hero__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; color: #E8873C; margin-bottom: 12px; }
.pb-nri-hero h1 { font-size: 38px; font-weight: 800; margin: 0 0 14px; color: white; }
.pb-nri-hero__sub { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 32px; }
.pb-nri-hero__stats { display: flex; justify-content: center; gap: 40px; margin-bottom: 32px; flex-wrap: wrap; }
.pb-nri-hero__stats > div { display: flex; flex-direction: column; gap: 2px; }
.pb-nri-hero__stats strong { font-size: 22px; font-weight: 800; }
.pb-nri-hero__stats span { font-size: 12px; color: rgba(255,255,255,0.65); }
.pb-nri-hero__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

@media (max-width: 700px) {
	.pb-nri-hero h1 { font-size: 26px; }
	.pb-nri-hero__stats { gap: 24px; }
}

/* Currency toggle (single property page) */
.pb-currency-toggle { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 13px; color: #607080; }
.pb-currency-toggle select { border: 1.5px solid #E8ECEF; border-radius: 6px; padding: 4px 8px; font-size: 12px; }
.pb-currency-output { font-weight: 700; color: #1F6B6B; }

/* Visit booking form */
.pb-visit-form-wrap { max-width: 600px; }
.pb-visit-form__property { background: #F5F5F0; border-radius: 8px; padding: 10px 14px; margin-bottom: 16px; }
.pb-visit-form__hint { margin-top: 8px; }
.pb-radios--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pb-form-field--sm { max-width: 130px; }

/* NRI callback form embedded in hero section */
.pb-nri-callback-wrap { max-width: 620px; margin: 0 auto; }

/* v1.19 — 5-col mega menu variant (For Buyers panel, adds Commercial column) */
.pb-mega__grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .pb-mega__grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .pb-mega__grid--5 { grid-template-columns: repeat(2, 1fr); row-gap: 24px; } }

/* ==========================================================================
   v1.19 — Commercial Hub landing page
   ========================================================================== */

.pb-comm-hero {
	background: linear-gradient(160deg, #0E1F26 0%, #1A3F45 60%, #1F6B6B 100%);
	color: white; padding: 56px 0 48px; text-align: center;
}
.pb-comm-hero__inner { max-width: 680px; margin: 0 auto; }
.pb-comm-hero h1 { font-size: 34px; font-weight: 800; color: white; margin: 0 0 12px; }
.pb-comm-hero__sub { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.6; }

.pb-comm-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1000px) { .pb-comm-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pb-comm-tiles { grid-template-columns: 1fr; } }

.pb-comm-tile {
	background: white; border: 1.5px solid #E8ECEF; border-radius: 12px; padding: 24px;
	text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 8px;
	transition: 0.15s;
}
.pb-comm-tile:hover { border-color: #1F6B6B; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(14,31,38,0.1); }
.pb-comm-tile__icon { font-size: 32px; margin-bottom: 4px; }
.pb-comm-tile h3 { font-size: 17px; color: #0E1F26; margin: 0; }
.pb-comm-tile p { font-size: 13px; color: #607080; line-height: 1.5; margin: 0; flex: 1; }
.pb-comm-tile__stat { font-size: 12px; color: #94A3AA; font-weight: 600; }
.pb-comm-tile__cta { font-size: 13px; font-weight: 700; color: #1F6B6B; margin-top: 6px; }

/* ==========================================================================
   v1.20 — Rental vertical: agreement document + tenant verification
   ========================================================================== */

.pb-rental-form-wrap { max-width: 640px; margin: 0 auto; }

.pb-rent-tools-banner {
	display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
	background: #F5F5F0; border: 1px solid #E8ECEF; border-radius: 8px;
	padding: 12px 16px; margin-bottom: 20px; font-size: 13px; color: #0E1F26;
}

.pb-rental-doc {
	max-width: 720px; margin: 24px auto; background: white; padding: 48px;
	border: 1px solid #E8ECEF; border-radius: 8px; line-height: 1.7; color: #1a1a1a;
}
.pb-rental-doc h1 { text-align: center; font-size: 22px; letter-spacing: 1px; margin-bottom: 4px; }
.pb-rental-doc__ref { text-align: center; color: #94A3AA; font-size: 12px; margin-bottom: 28px; }
.pb-rental-doc h3 { font-size: 14px; margin: 22px 0 8px; color: #1F6B6B; }
.pb-rental-doc p { font-size: 14px; margin: 0 0 10px; }
.pb-rental-doc__sign { display: flex; justify-content: space-between; margin-top: 60px; }
.pb-rental-doc__sign p { margin: 0; font-size: 13px; }
.pb-rental-doc__footer { margin-top: 32px; padding-top: 16px; border-top: 1px solid #eee; color: #94A3AA; }

.pb-rental-doc-actions { max-width: 720px; margin: 0 auto 16px; display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-start; }

@media print {
	.pb-no-print, .pb-site-header, .pb-site-footer, .pb-mega, nav { display: none !important; }
	.pb-rental-doc { border: none; padding: 0; margin: 0; box-shadow: none; }
}

/* ==========================================================================
   v1.21 — Franchise / City Partner white-label landing page
   ========================================================================== */

.pb-franchise-landing { --fp-primary: #1F6B6B; --fp-accent: #E8873C; }
.pb-franchise-hero {
	background: linear-gradient(160deg, #0E1F26 0%, var(--fp-primary) 100%);
	color: white; padding: 56px 0; text-align: center;
}
.pb-franchise-hero__inner { max-width: 640px; margin: 0 auto; }
.pb-franchise-hero__logo { max-height: 64px; margin-bottom: 16px; }
.pb-franchise-hero__wordmark { color: white; font-size: 26px; margin: 0 0 8px; }
.pb-franchise-hero__powered { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.pb-franchise-hero h1 { font-size: 28px; color: white; margin: 0 0 24px; }
.pb-franchise-cta { background: var(--fp-accent); color: white; border: none; padding: 12px 28px; border-radius: 8px; font-weight: 700; text-decoration: none; display: inline-block; }

.pb-franchise-contact-card { background: white; border: 1px solid #E8ECEF; border-radius: 12px; padding: 24px; text-align: center; }
.pb-franchise-contact-card p { font-size: 15px; margin: 0 0 10px; }

/* ==========================================================================
   v1.22 — AI Concierge chat widget + floating launcher
   ========================================================================== */

.pb-concierge { display: flex; flex-direction: column; height: 100%; }
.pb-concierge__messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.pb-concierge__msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.5; }
.pb-concierge__msg--bot { background: #F5F5F0; color: #0E1F26; align-self: flex-start; border-bottom-left-radius: 4px; }
.pb-concierge__msg--user { background: #1F6B6B; color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.pb-concierge__props { display: flex; flex-direction: column; gap: 8px; }
.pb-concierge__props .pb-prop-card { display: flex; gap: 10px; padding: 8px; border: 1px solid #E8ECEF; border-radius: 8px; text-decoration: none; color: inherit; }
.pb-concierge__props .pb-prop-card__img { width: 70px; height: 56px; flex-shrink: 0; border-radius: 6px; background-size: cover; background-position: center; }
.pb-concierge__props .pb-prop-card__body h3 { font-size: 12px; margin: 0 0 2px; }
.pb-concierge__props .pb-prop-card__price { font-size: 12px; font-weight: 700; color: #1F6B6B; }
.pb-concierge__props .pb-prop-card__specs, .pb-concierge__props .pb-prop-card__loc, .pb-concierge__props .pb-prop-card__posted { display: none; }

.pb-concierge__input-row { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid #E8ECEF; }
.pb-concierge__input-row input { flex: 1; border: 1.5px solid #E8ECEF; border-radius: 20px; padding: 9px 16px; font-size: 13px; }
.pb-concierge__human-link { text-align: center; padding: 8px; font-size: 12px; }
.pb-concierge__handoff { padding: 12px 16px; background: #FEF3E7; border-top: 1px solid #E8ECEF; font-size: 13px; }
.pb-concierge__handoff-row { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.pb-concierge__handoff-row input { flex: 1; min-width: 100px; border: 1.5px solid #E8ECEF; border-radius: 6px; padding: 7px 10px; font-size: 12px; }

/* Standalone page widget */
#pb-ai-search .pb-concierge, .pb-page-ai-search .pb-concierge { height: 560px; border: 1px solid #E8ECEF; border-radius: 12px; background: white; max-width: 640px; margin: 0 auto; }

/* Floating launcher */
.pb-concierge-launcher {
	position: fixed; bottom: 24px; right: 24px; z-index: 9999;
	background: #1F6B6B; color: white; border: none; border-radius: 30px;
	padding: 12px 20px; font-weight: 700; font-size: 13px; cursor: pointer;
	box-shadow: 0 10px 30px rgba(14,31,38,0.25); display: flex; align-items: center; gap: 8px;
	transition: transform 0.15s;
}
.pb-concierge-launcher:hover { transform: translateY(-2px); }
.pb-concierge-launcher__icon { font-size: 16px; }

.pb-concierge-drawer {
	position: fixed; bottom: 90px; right: 24px; z-index: 9999;
	width: 360px; height: 520px; background: white; border-radius: 16px;
	box-shadow: 0 20px 50px rgba(14,31,38,0.3); display: flex; flex-direction: column; overflow: hidden;
}
.pb-concierge-drawer__head { background: #0E1F26; color: white; padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; }
.pb-concierge-drawer__head button { background: none; border: none; color: white; font-size: 16px; cursor: pointer; }
.pb-concierge-drawer__body { flex: 1; overflow: hidden; }
.pb-concierge-drawer__body .pb-concierge { height: 100%; }

@media (max-width: 480px) {
	.pb-concierge-drawer { width: calc(100vw - 24px); right: 12px; height: 70vh; }
	.pb-concierge-launcher__label { display: none; }
}

/* ==========================================================================
   v1.25 — Developer Portal: project form inventory rows
   ========================================================================== */

.pb-inventory-row {
	display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr auto;
	gap: 8px; margin-bottom: 8px; align-items: center;
}
.pb-inventory-row input { padding: 8px 10px; border: 1.5px solid #E8ECEF; border-radius: 6px; font-size: 13px; }
.pb-inventory-remove {
	background: #FDF0EE; color: #C0392B; border: none; border-radius: 6px;
	width: 32px; height: 32px; cursor: pointer; font-size: 14px;
}
@media (max-width: 700px) {
	.pb-inventory-row { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   v1.26 — Public Project detail page
   ========================================================================== */

.pb-inventory-table-wrap { overflow-x: auto; }
.pb-inventory-table { min-width: 480px; }

.pb-amenity-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.pb-amenity-chip {
	background: #F5F5F0; border: 1px solid #E8ECEF; border-radius: 20px;
	padding: 6px 14px; font-size: 13px; color: #0E1F26;
}

.pb-brochure-cta {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	background: #F5F5F0; border-radius: 10px; padding: 18px 20px; flex-wrap: wrap;
}
.pb-brochure-cta strong { display: block; margin-bottom: 2px; color: #0E1F26; }

/* ==========================================================================
   v1.27 — Homepage refresh: category strip + slim banners
   ========================================================================== */

.pb-cat-strip { padding-top: 8px; padding-bottom: 8px; }
.pb-cat-strip__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 900px) { .pb-cat-strip__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .pb-cat-strip__grid { grid-template-columns: repeat(2, 1fr); } }

.pb-cat-strip__tile {
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	background: white; border: 1.5px solid #E8ECEF; border-radius: 12px;
	padding: 20px 12px; text-decoration: none; color: #0E1F26; text-align: center;
	transition: 0.15s;
}
.pb-cat-strip__tile:hover { border-color: #1F6B6B; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(14,31,38,0.08); }
.pb-cat-strip__icon { font-size: 26px; }
.pb-cat-strip__label { font-size: 13px; font-weight: 700; }

.pb-slim-banner { padding-top: 4px; padding-bottom: 4px; }
.pb-slim-banner__inner {
	display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
	border-radius: 12px; padding: 18px 24px;
}
.pb-slim-banner--nri .pb-slim-banner__inner { background: linear-gradient(90deg, #0E1F26, #1F6B6B); }
.pb-slim-banner--partner .pb-slim-banner__inner { background: #F5F5F0; border: 1px solid #E8ECEF; }
.pb-slim-banner--nri .pb-slim-banner__text strong,
.pb-slim-banner--nri .pb-slim-banner__text span { color: white; }
.pb-slim-banner--partner .pb-slim-banner__text strong { color: #0E1F26; }
.pb-slim-banner--partner .pb-slim-banner__text span { color: #607080; }
.pb-slim-banner__text { display: flex; flex-direction: column; gap: 2px; }
.pb-slim-banner__text strong { font-size: 15px; }
.pb-slim-banner__text span { font-size: 13px; }
.pb-slim-banner--nri .pb-btn--outline { border-color: rgba(255,255,255,0.5); color: white; }
.pb-slim-banner--nri .pb-btn--outline:hover { background: rgba(255,255,255,0.1); }

/* ==========================================================================
   SPRINT 30 (v1.28) — City homepage rebuild
   Brand tokens only: teal #1F6B6B, orange #E8873C, ink #0E1F26.
   Nunito remains logo-only; everything here uses --pb-font.
   ========================================================================== */

.pb-section { padding: 44px 0; }
.pb-section + .pb-section { padding-top: 0; }

.pb-h2 {
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--pb-ink);
	margin: 0 0 6px;
}
.pb-sub { margin: 0; color: var(--pb-warm-gray); font-size: 15px; max-width: 74ch; }
.pb-sechead { margin-bottom: 22px; }

.pb-panel {
	background: var(--pb-white);
	border: 1px solid var(--pb-border);
	border-radius: 16px;
	padding: 28px;
}
.pb-empty {
	flex: 1 1 100%;
	padding: 32px;
	border: 1px dashed var(--pb-border);
	border-radius: var(--pb-radius-lg);
	color: var(--pb-warm-gray);
	background: var(--pb-white);
}

/* --- Buttons -------------------------------------------------------------- */
.pb-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 7px;
	padding: 11px 18px; border-radius: 8px; border: 1px solid transparent;
	font-size: 14px; font-weight: 700; line-height: 1; cursor: pointer;
	font-family: inherit; transition: background .15s, color .15s, border-color .15s;
}
.pb-btn--sm      { padding: 8px 13px; font-size: 13px; }
.pb-btn--primary { background: var(--pb-teal); color: #fff; }
.pb-btn--primary:hover { background: var(--pb-teal-dark); color: #fff; }
.pb-btn--accent  { background: var(--pb-orange); color: #fff; }
.pb-btn--accent:hover { background: var(--pb-orange-dark); color: #fff; }
.pb-btn--ink     { background: var(--pb-ink); color: #fff; }
.pb-btn--ink:hover { background: #1a3541; color: #fff; }
.pb-btn--outline { border-color: var(--pb-teal); color: var(--pb-teal); background: transparent; }
.pb-btn--outline:hover { background: var(--pb-teal); color: #fff; }
.pb-btn--ghost   { border-color: var(--pb-border); color: var(--pb-warm-gray); background: var(--pb-white); }
.pb-btn--ghost:hover { border-color: var(--pb-teal); color: var(--pb-teal); }

/* --- Tabs ----------------------------------------------------------------- */
.pb-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.pb-tabs .pb-tab {
	font-family: inherit; font-size: 13.5px; font-weight: 700; cursor: pointer;
	background: var(--pb-white); color: var(--pb-warm-gray);
	border: 1px solid var(--pb-border); padding: 9px 16px; border-radius: 999px;
	transition: background .15s, color .15s, border-color .15s;
}
.pb-tabs .pb-tab:hover { border-color: var(--pb-teal); color: var(--pb-teal); }
.pb-tabs .pb-tab.is-active { background: var(--pb-ink); border-color: var(--pb-ink); color: #fff; }

.pb-tabs--box { gap: 4px; margin-bottom: 0; }
.pb-tabs--box .pb-tab { border-radius: 10px 10px 0 0; border-bottom-color: transparent; }
.pb-tabs--box .pb-tab.is-active { background: var(--pb-ink); color: #fff; }

.pb-tabs--underline { gap: 0; border-bottom: 1px solid rgba(255,255,255,.14); margin-bottom: 26px; flex-wrap: nowrap; overflow-x: auto; }
.pb-tabs--underline .pb-tab {
	background: transparent; border: 0; border-bottom: 2px solid transparent;
	border-radius: 0; color: rgba(255,255,255,.6); padding: 14px 22px;
	letter-spacing: .08em; text-transform: uppercase; font-size: 12px; white-space: nowrap;
}
.pb-tabs--underline .pb-tab:hover { color: #fff; }
.pb-tabs--underline .pb-tab.is-active { color: #fff; border-bottom-color: var(--pb-orange); background: transparent; }

/* --- Horizontal scroller -------------------------------------------------- */
.pb-hscroll { position: relative; }
.pb-hscroll__track {
	display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth;
	scroll-snap-type: x proximity; padding: 4px 2px 14px;
	scrollbar-width: thin; scrollbar-color: var(--pb-border) transparent;
}
.pb-hscroll__track > * { scroll-snap-align: start; }
.pb-hscroll__track::-webkit-scrollbar { height: 6px; }
.pb-hscroll__track::-webkit-scrollbar-thumb { background: var(--pb-border); border-radius: 3px; }
.pb-hscroll__nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
	width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
	background: var(--pb-white); border: 1px solid var(--pb-border);
	color: var(--pb-ink); display: none; align-items: center; justify-content: center;
	box-shadow: var(--pb-shadow-lg);
}
.pb-hscroll__nav:hover { background: var(--pb-ink); color: #fff; border-color: var(--pb-ink); }
.pb-hscroll__nav--prev { left: -18px; }
.pb-hscroll__nav--next { right: -18px; }
.pb-hscroll.has-overflow .pb-hscroll__nav { display: flex; }
.pb-hscroll__nav[disabled] { opacity: .3; pointer-events: none; }

/* --- Panels (tab bodies) -------------------------------------------------- */
.pb-hub__panel, .pb-loc__panel, .pb-seofooter__panel { display: none; }
.pb-hub__panel.is-active, .pb-loc__panel.is-active, .pb-seofooter__panel.is-active { display: block; }

/* ==========================================================================
   FOLD 1 — Personalization strip
   ========================================================================== */
.pb-pstrip { padding-top: 34px; }
.pb-pstrip__head { margin-bottom: 18px; }

.pb-pcard {
	flex: 0 0 300px; display: flex; flex-direction: column;
	background: var(--pb-white); border: 1px solid var(--pb-border);
	border-radius: 14px; overflow: hidden; min-height: 330px;
}
.pb-pcard__head { display: flex; align-items: center; gap: 10px; padding: 16px 18px 10px; }
.pb-pcard__head h3 { margin: 0; font-size: 14.5px; font-weight: 800; color: var(--pb-ink); }
.pb-pcard__ico { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.pb-pcard__ico--teal   { background: #E4F0F0; color: var(--pb-teal); }
.pb-pcard__ico--orange { background: var(--pb-orange-soft); color: var(--pb-orange-dark); }
.pb-pcard__ico--green  { background: #E3F5EE; color: #1F7A5C; }
.pb-pcard__ico--pink   { background: #F7ECE6; color: #A0522D; }
.pb-pcard__ico--ink    { background: #E7EBED; color: var(--pb-ink); }
.pb-pcard__body { padding: 6px 18px 16px; flex: 1; }
.pb-pcard__body h4 { margin: 12px 0 4px; font-size: 15px; font-weight: 800; }
.pb-pcard__body p { margin: 0; font-size: 13px; color: var(--pb-warm-gray); line-height: 1.5; }
.pb-pcard__body--list { display: flex; flex-direction: column; gap: 10px; }
.pb-pcard__empty { font-size: 13px; color: var(--pb-warm-gray); }
.pb-pcard__label { font-size: 12.5px; color: var(--pb-warm-gray); margin: 12px 0 8px; }
.pb-pcard__foot {
	display: flex; align-items: center; justify-content: space-between;
	padding: 13px 18px; border-top: 1px solid var(--pb-cream-dark);
	background: #FCFCFA; font-size: 13.5px; font-weight: 700; color: var(--pb-teal);
}
.pb-pcard__foot:hover { background: var(--pb-cream); }

.pb-reco-rail { display: flex; align-items: center; gap: 6px; margin: 6px 0 4px; }
.pb-reco-rail__node { width: 34px; height: 34px; border-radius: 50%; background: #E4F0F0; color: var(--pb-teal); display: grid; place-items: center; }
.pb-reco-rail i { flex: 1; height: 2px; background: var(--pb-cream-dark); }

.pb-compare-viz { display: flex; align-items: center; gap: 10px; margin: 4px 0; }
.pb-compare-viz span {
	width: 54px; height: 62px; border-radius: 8px; background: var(--pb-cream);
	border: 1px solid var(--pb-cream-dark); display: grid; place-items: center;
	font-weight: 800; color: var(--pb-warm-gray-light);
}
.pb-compare-viz em { width: 22px; height: 22px; border-radius: 50%; background: var(--pb-orange); }

.pb-chiprow { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 0; padding: 0; }
.pb-chiprow li, .pb-chiprow a {
	font-size: 11.5px; font-weight: 700; padding: 5px 10px; border-radius: 999px;
	background: var(--pb-cream); color: var(--pb-warm-gray); border: 1px solid var(--pb-cream-dark);
}
.pb-chiprow--add a { color: var(--pb-teal); }
.pb-chiprow--add a em { font-style: normal; color: var(--pb-orange); font-weight: 800; }

.pb-fauxinput {
	display: flex; align-items: center; gap: 8px; padding: 11px 13px;
	border: 1px solid var(--pb-border); border-radius: 9px; background: var(--pb-white);
	font-size: 13px; color: var(--pb-charcoal);
}
.pb-fauxinput span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.pb-minirow { display: flex; gap: 10px; align-items: flex-start; }
.pb-minirow img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; flex: none; }
.pb-minirow span { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pb-minirow strong { font-size: 13px; color: var(--pb-ink); }
.pb-minirow em { font-style: normal; font-size: 11.5px; color: var(--pb-warm-gray-light); }
.pb-minirow b { font-size: 13px; color: var(--pb-teal); }

.pb-pricerow { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding-bottom: 8px; border-bottom: 1px dashed var(--pb-cream-dark); }
.pb-pricerow:last-child { border-bottom: 0; }
.pb-pricerow strong { display: block; font-size: 13px; color: var(--pb-ink); }
.pb-pricerow em { font-style: normal; font-size: 11px; color: var(--pb-warm-gray-light); }
.pb-pricerow__v { font-size: 13px; font-weight: 700; color: var(--pb-ink); text-align: right; white-space: nowrap; }
.pb-pricerow__v i { font-style: normal; font-weight: 400; font-size: 11px; color: var(--pb-warm-gray-light); }
.pb-pricerow__v b { display: block; font-size: 11px; }
.pb-pricerow__v b.up { color: #1F7A5C; }
.pb-pricerow__v b.dn { color: #B4472E; }

.pb-calcgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 4px; }
.pb-calcgrid a {
	display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 4px;
	border: 1px solid var(--pb-cream-dark); border-radius: 10px; background: var(--pb-cream);
	color: var(--pb-ink); font-size: 11px; font-weight: 700; text-align: center;
}
.pb-calcgrid a:hover { border-color: var(--pb-teal); color: var(--pb-teal); background: var(--pb-white); }

/* ==========================================================================
   HOT SELLING — ranked cards
   ========================================================================== */
.pb-rankcard {
	flex: 0 0 290px; position: relative; padding-left: 26px;
	display: flex; flex-direction: column; color: inherit;
}
.pb-rankcard[hidden] { display: none; }
.pb-rankcard__num {
	position: absolute; left: 0; top: 4px; z-index: 1;
	font-size: 76px; font-weight: 900; line-height: .8;
	color: var(--pb-cream-dark); letter-spacing: -0.06em;
}
.pb-rankcard__img { position: relative; z-index: 2; display: block; border-radius: 12px 12px 0 0; overflow: hidden; }
.pb-rankcard__img img { width: 100%; height: 168px; object-fit: cover; }
.pb-rankcard__body {
	position: relative; z-index: 2; background: var(--pb-white);
	border: 1px solid var(--pb-border); border-top: 0; border-radius: 0 0 12px 12px;
	padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1;
}
.pb-rankcard__body strong { font-size: 15px; font-weight: 800; color: var(--pb-ink); }
.pb-rankcard__body em { font-style: normal; font-size: 12.5px; color: var(--pb-warm-gray); }
.pb-rankcard__body b { font-size: 15px; color: var(--pb-ink); margin-top: 4px; }
.pb-rankcard:hover .pb-rankcard__body { border-color: var(--pb-teal); }

/* ==========================================================================
   BUILDER SPOTLIGHT — 70%-width scroller with rotating preview
   ========================================================================== */
.pb-hscroll--wide .pb-hscroll__track { gap: 24px; }
.pb-pick {
	flex: 0 0 72%; background: var(--pb-white);
	border: 1px solid var(--pb-border); border-radius: 16px; padding: 16px;
}
.pb-pick__rail { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--pb-cream-dark); }
.pb-pick__thumb {
	flex: 0 0 92px; border: 2px solid transparent; border-radius: 8px; padding: 0;
	background: none; cursor: pointer; font-family: inherit; overflow: hidden; text-align: center;
}
.pb-pick__thumb img { width: 100%; height: 54px; object-fit: cover; border-radius: 6px; }
.pb-pick__thumb span { display: block; font-size: 10.5px; font-weight: 700; color: var(--pb-warm-gray); padding: 4px 2px; }
.pb-pick__thumb.is-active { border-color: var(--pb-orange); }
.pb-pick__thumb.is-active span { color: var(--pb-ink); }

.pb-pick__main { display: grid; grid-template-columns: 300px 1fr; gap: 18px; align-items: stretch; }
.pb-pick__info {
	background: linear-gradient(160deg, #F1F7F7, var(--pb-cream));
	border-radius: 12px; padding: 18px; display: flex; flex-direction: column; gap: 12px;
}
.pb-pick__builder { display: flex; gap: 10px; align-items: center; }
.pb-pick__logo { width: 44px; height: 44px; object-fit: contain; background: #fff; border-radius: 9px; padding: 4px; border: 1px solid var(--pb-cream-dark); }
.pb-pick__builder strong { display: block; font-size: 14px; color: var(--pb-ink); font-weight: 800; }
.pb-pick__builder a { font-size: 12px; color: var(--pb-teal); text-decoration: underline; }
.pb-pick__detail { display: none; flex: 1; }
.pb-pick__detail.is-active { display: block; }
.pb-pick__detail h3 { margin: 0 0 4px; font-size: 19px; font-weight: 800; }
.pb-pick__detail h3 a { color: var(--pb-ink); }
.pb-pick__loc { display: flex; align-items: center; gap: 5px; margin: 0 0 8px; font-size: 12.5px; color: var(--pb-warm-gray); }
.pb-pick__price { margin: 0 0 2px; font-size: 18px; font-weight: 800; color: var(--pb-ink); }
.pb-pick__cfg { margin: 0; font-size: 12.5px; color: var(--pb-warm-gray); }
.pb-pick__cta { align-self: stretch; }

.pb-pick__stage { position: relative; border-radius: 12px; overflow: hidden; min-height: 300px; background: var(--pb-cream); }
.pb-pick__hero {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
	opacity: 0; transition: opacity .6s ease;
}
.pb-pick__hero.is-active { opacity: 1; }
.pb-pick__dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.pb-pick__dots button {
	width: 7px; height: 7px; padding: 0; border-radius: 50%; cursor: pointer;
	border: 0; background: rgba(255,255,255,.55);
}
.pb-pick__dots button.is-active { background: var(--pb-orange); width: 18px; border-radius: 4px; }

/* ==========================================================================
   Grids — featured developers / trusted / high-demand
   ========================================================================== */
.pb-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pb-grid3--tight { gap: 16px; }

.pb-fdevcard {
	background: var(--pb-white); border: 1px solid var(--pb-border);
	border-radius: 14px; padding: 20px; border-top: 4px solid var(--pb-teal);
	display: flex; flex-direction: column; gap: 12px;
}
.pb-fdevcard header { display: flex; gap: 12px; align-items: flex-start; }
.pb-fdevcard__logo { width: 62px; height: 62px; object-fit: contain; border: 1px solid var(--pb-cream-dark); border-radius: 10px; padding: 5px; background: #fff; flex: none; }
.pb-fdevcard__id h3 { margin: 0 0 8px; font-size: 16px; font-weight: 800; }
.pb-fdevcard__id h3 a { color: var(--pb-ink); }
.pb-fdevcard__stats { display: flex; gap: 22px; }
.pb-fdevcard__stats span { display: flex; flex-direction: column; font-size: 11.5px; color: var(--pb-warm-gray-light); }
.pb-fdevcard__stats b { font-size: 17px; font-weight: 800; color: var(--pb-ink); }
.pb-fdevcard__blurb { margin: 0; font-size: 13px; line-height: 1.55; color: var(--pb-warm-gray); }
.pb-fdevcard__link { font-size: 13.5px; font-weight: 700; color: var(--pb-teal); border-bottom: 2px solid var(--pb-orange); align-self: flex-start; padding-bottom: 2px; }
.pb-fdevcard__hero { position: relative; border-radius: 12px; overflow: hidden; display: block; margin-top: auto; }
.pb-fdevcard__hero img { width: 100%; height: 190px; object-fit: cover; }
.pb-fdevcard__hero span {
	position: absolute; inset: auto 0 0 0; padding: 34px 16px 14px; color: #fff;
	background: linear-gradient(180deg, transparent, rgba(14,31,38,.88));
	display: flex; flex-direction: column; gap: 1px;
}
.pb-fdevcard__hero strong { font-size: 15px; }
.pb-fdevcard__hero em { font-style: normal; font-size: 12px; opacity: .85; }
.pb-fdevcard__hero b { font-size: 15px; margin-top: 3px; }

.pb-tcard {
	background: var(--pb-white); border: 1px solid var(--pb-border);
	border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; color: inherit;
}
.pb-tcard:hover { border-color: var(--pb-teal); box-shadow: var(--pb-shadow-lg); }
.pb-tcard__img img { width: 100%; height: 210px; object-fit: cover; }
.pb-tcard__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 3px; }
.pb-tcard__body strong { font-size: 16.5px; font-weight: 800; color: var(--pb-ink); }
.pb-tcard__body em { font-style: normal; font-size: 12.5px; color: var(--pb-warm-gray-light); margin-bottom: 8px; }
.pb-tcard__cfg { font-size: 13px; color: var(--pb-charcoal); }
.pb-tcard__loc { font-size: 12.5px; color: var(--pb-warm-gray); }
.pb-tcard__body b { font-size: 16px; color: var(--pb-ink); margin-top: 10px; }

.pb-scard {
	display: grid; grid-template-columns: 118px 1fr; background: var(--pb-white);
	border: 1px solid var(--pb-border); border-radius: 12px; overflow: hidden; color: inherit;
}
.pb-scard:hover { border-color: var(--pb-teal); box-shadow: var(--pb-shadow-lg); }
.pb-scard__img img { width: 100%; height: 100%; min-height: 150px; object-fit: cover; }
.pb-scard__body { padding: 14px 15px; display: flex; flex-direction: column; gap: 2px; }
.pb-scard__body strong { font-size: 14.5px; font-weight: 800; color: var(--pb-ink); }
.pb-scard__body em { font-style: normal; font-size: 11.5px; color: var(--pb-warm-gray-light); margin-bottom: 7px; }
.pb-scard__body span { font-size: 12.5px; color: var(--pb-charcoal); }
.pb-scard__loc { color: var(--pb-warm-gray) !important; }
.pb-scard__body b { font-size: 15px; color: var(--pb-ink); margin-top: 7px; }

/* ==========================================================================
   NEWLY ADDED
   ========================================================================== */
.pb-ncard { flex: 0 0 268px; display: flex; flex-direction: column; }
.pb-ncard__img { display: block; border-radius: 12px; overflow: hidden; }
.pb-ncard__img img { width: 100%; height: 176px; object-fit: cover; }
.pb-ncard__body { padding: 12px 2px 0; display: flex; flex-direction: column; gap: 2px; }
.pb-ncard__body h3 { margin: 0; font-size: 16px; font-weight: 800; }
.pb-ncard__body h3 a { color: var(--pb-ink); }
.pb-ncard__cfg { margin: 4px 0 0; font-size: 13px; color: var(--pb-charcoal); }
.pb-ncard__loc { margin: 0; font-size: 12.5px; color: var(--pb-warm-gray); }
.pb-ncard__price { margin: 8px 0 12px; font-size: 16px; font-weight: 800; color: var(--pb-ink); }
.pb-ncard__acts { display: flex; gap: 8px; }
.pb-ncard__acts .is-added { border-color: var(--pb-orange); color: var(--pb-orange-dark); }

/* ==========================================================================
   EVERYTHING YOU NEED — tools hub
   ========================================================================== */
.pb-hub .pb-panel { padding-bottom: 8px; }
.pb-hub .pb-tabs--box { margin-top: 18px; }
.pb-hub__panel {
	border: 1px solid var(--pb-border); border-radius: 0 12px 12px 12px;
	padding: 22px 10px; margin-bottom: 20px;
	grid-template-columns: repeat(6, 1fr); gap: 8px;
}
.pb-hub__panel.is-active { display: grid; }
.pb-hubtile {
	display: flex; flex-direction: column; align-items: center; gap: 10px;
	padding: 16px 8px; border-radius: 10px; color: var(--pb-charcoal);
	text-align: center; position: relative;
}
.pb-hubtile + .pb-hubtile::before {
	content: ""; position: absolute; left: -4px; top: 22%; bottom: 22%;
	width: 1px; background: var(--pb-cream-dark);
}
.pb-hubtile:hover { background: var(--pb-cream); color: var(--pb-teal); }
.pb-hubtile__ico { width: 52px; height: 52px; border-radius: 14px; background: #E4F0F0; color: var(--pb-teal); display: grid; place-items: center; }
.pb-hubtile:hover .pb-hubtile__ico { background: var(--pb-orange-soft); color: var(--pb-orange-dark); }
.pb-hubtile__label { font-size: 12.5px; font-weight: 700; line-height: 1.3; }

/* ==========================================================================
   TOP LOCALITIES
   ========================================================================== */
.pb-loc .pb-tabs { margin-top: 18px; }
.pb-loccard {
	flex: 0 0 340px; background: var(--pb-white); border: 1px solid var(--pb-border);
	border-radius: 14px; padding: 18px; display: flex; flex-direction: column; gap: 12px;
}
.pb-loccard header { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.pb-loccard header h3 { margin: 0; font-size: 17px; font-weight: 800; }
.pb-badge { font-size: 11px; font-weight: 800; padding: 4px 9px; border-radius: 999px; }
.pb-badge--up { background: #E3F5EE; color: #1F7A5C; }
.pb-loccard__rates { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--pb-cream-dark); border-radius: 10px; overflow: hidden; }
.pb-loccard__rates > div { padding: 11px 13px; display: flex; flex-direction: column; gap: 2px; }
.pb-loccard__rates > div + div { border-left: 1px solid var(--pb-cream-dark); }
.pb-loccard__rates span { font-size: 11px; color: var(--pb-warm-gray-light); }
.pb-loccard__rates strong { font-size: 15px; font-weight: 800; color: var(--pb-ink); }
.pb-loccard__rates em { font-style: normal; font-size: 10.5px; color: var(--pb-warm-gray-light); background: var(--pb-cream); border-radius: 4px; padding: 2px 6px; align-self: flex-start; }
.pb-loccard__note { margin: 0; font-size: 12.5px; line-height: 1.5; color: var(--pb-warm-gray); min-height: 38px; }
.pb-loccard__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pb-loccard__stats a {
	background: var(--pb-cream); border-radius: 9px; padding: 11px 6px;
	display: flex; flex-direction: column; align-items: center; gap: 2px; color: var(--pb-ink);
}
.pb-loccard__stats a:hover { background: #E4F0F0; }
.pb-loccard__stats b { font-size: 17px; font-weight: 800; }
.pb-loccard__stats span { font-size: 10.5px; color: var(--pb-warm-gray); text-align: center; }
.pb-loccard footer { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; }

/* ==========================================================================
   DISCOVER MORE
   ========================================================================== */
.pb-discover__grid { display: grid; grid-template-columns: 300px 1fr; gap: 20px; margin-top: 20px; }
.pb-accord { border: 1px solid var(--pb-border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.pb-accord__btn {
	width: 100%; display: flex; justify-content: space-between; align-items: center;
	padding: 15px 16px; background: var(--pb-white); border: 0; cursor: pointer;
	font-family: inherit; font-size: 14.5px; font-weight: 800; color: var(--pb-ink);
}
.pb-accord__btn .pb-i { transition: transform .2s; color: var(--pb-warm-gray); }
.pb-accord.is-open .pb-accord__btn .pb-i { transform: rotate(90deg); }
.pb-accord__body { display: none; padding: 0 16px 16px; }
.pb-accord.is-open .pb-accord__body { display: block; }
.pb-accord__body p { margin: 0 0 12px; font-size: 13px; line-height: 1.55; color: var(--pb-warm-gray); }
.pb-linklist { list-style: none; margin: 0; padding: 0; }
.pb-linklist li { padding: 6px 0; border-bottom: 1px dashed var(--pb-cream-dark); }
.pb-linklist li:last-child { border-bottom: 0; }
.pb-linklist a { font-size: 13.5px; }

.pb-discover__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pb-dtile {
	position: relative; border-radius: 12px; overflow: hidden; min-height: 230px;
	background: linear-gradient(150deg, var(--pb-teal-dark), var(--pb-ink));
	display: flex; align-items: flex-end; color: #fff;
}
.pb-dtile:nth-child(2) { background: linear-gradient(150deg, #2C6C7E, var(--pb-ink)); }
.pb-dtile:nth-child(3) { background: linear-gradient(150deg, var(--pb-orange-dark), #6B3417); }
.pb-dtile:nth-child(4) { background: linear-gradient(150deg, #3D5A5A, var(--pb-ink)); }
.pb-dtile__meta { padding: 18px; display: flex; flex-direction: column; gap: 2px; color: #fff; }
.pb-dtile__meta b { font-size: 20px; font-weight: 800; }
.pb-dtile__meta strong { font-size: 15px; font-weight: 700; }
.pb-dtile__meta em { font-style: normal; font-size: 12.5px; opacity: .8; }
.pb-dtile:hover { transform: translateY(-2px); box-shadow: var(--pb-shadow-lg); }

/* ==========================================================================
   POPULAR CITIES
   ========================================================================== */
.pb-citygrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px; }
.pb-citytile {
	display: flex; align-items: center; gap: 0; border: 1px solid var(--pb-border);
	border-radius: 10px; overflow: hidden; color: var(--pb-ink); background: var(--pb-white);
}
.pb-citytile__ico { padding: 12px 14px; background: var(--pb-cream); border-right: 1px solid var(--pb-border); display: grid; place-items: center; }
.pb-citytile__name { padding: 0 16px; font-size: 14.5px; font-weight: 600; }
.pb-citytile:hover { border-color: var(--pb-teal); color: var(--pb-teal); }
.pb-citytile:hover .pb-citytile__ico { background: #E4F0F0; }

/* ==========================================================================
   SEO FOOTER — teal-to-ink, sits directly above the dark footer
   ========================================================================== */
.pb-seofooter { background: linear-gradient(180deg, #123C3C 0%, var(--pb-ink) 100%); padding: 8px 0 34px; }
.pb-seofooter__title { color: #fff; font-size: 16px; font-weight: 800; margin: 0 0 18px; }
.pb-seofooter__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 28px; }
.pb-seofooter__cols ul { list-style: none; margin: 0; padding: 0; }
.pb-seofooter__cols li { margin-bottom: 9px; }
.pb-seofooter__cols a { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.4; }
.pb-seofooter__cols a:hover { color: var(--pb-orange); }

.pb-site-footer--tealink { background: var(--pb-ink); }
.pb-site-footer--tealink .pb-footer-inner { background: transparent; }
.pb-site-footer--tealink .pb-footer-heading { color: var(--pb-orange); }
.pb-site-footer--tealink .pb-footer-copy { background: #081418; border-top: 1px solid rgba(255,255,255,.08); }

/* ==========================================================================
   Compare tray
   ========================================================================== */
.pb-comparetray {
	position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%) translateY(140%);
	z-index: 60; background: var(--pb-ink); color: #fff; border-radius: 14px;
	padding: 12px 16px; display: flex; align-items: center; gap: 14px;
	box-shadow: 0 12px 34px rgba(14,31,38,.34); transition: transform .25s ease;
	max-width: calc(100vw - 32px);
}
.pb-comparetray.is-open { transform: translateX(-50%) translateY(0); }
.pb-comparetray__items { display: flex; gap: 8px; }
.pb-comparetray__item { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.09); border-radius: 9px; padding: 6px 9px; }
.pb-comparetray__item img { width: 30px; height: 30px; border-radius: 6px; object-fit: cover; }
.pb-comparetray__item span { font-size: 12px; max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pb-comparetray__item button { background: none; border: 0; color: rgba(255,255,255,.6); cursor: pointer; font-size: 15px; line-height: 1; padding: 0 2px; }
.pb-comparetray__item button:hover { color: #fff; }
.pb-comparetray__hint { font-size: 12px; color: rgba(255,255,255,.55); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.pb-grid3 { grid-template-columns: repeat(2, 1fr); }
	.pb-hub__panel.is-active { grid-template-columns: repeat(3, 1fr); }
	.pb-pick { flex-basis: 88%; }
	.pb-pick__main { grid-template-columns: 260px 1fr; }
	.pb-discover__grid { grid-template-columns: 1fr; }
	.pb-discover__tiles { grid-template-columns: repeat(2, 1fr); }
	.pb-citygrid { grid-template-columns: repeat(3, 1fr); }
	.pb-seofooter__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
	.pb-section { padding: 30px 0; }
	.pb-panel { padding: 18px; border-radius: 12px; }
	.pb-grid3 { grid-template-columns: 1fr; }
	.pb-hub__panel.is-active { grid-template-columns: repeat(2, 1fr); }
	.pb-hubtile + .pb-hubtile::before { display: none; }
	.pb-pick { flex-basis: 92%; padding: 12px; }
	.pb-pick__main { grid-template-columns: 1fr; }
	.pb-pick__stage { min-height: 220px; order: -1; }
	.pb-pcard { flex-basis: 84vw; }
	.pb-loccard { flex-basis: 84vw; }
	.pb-rankcard { flex-basis: 78vw; }
	.pb-ncard { flex-basis: 74vw; }
	.pb-scard { grid-template-columns: 100px 1fr; }
	.pb-citygrid { grid-template-columns: repeat(2, 1fr); }
	.pb-discover__tiles { grid-template-columns: 1fr; }
	.pb-seofooter__cols { grid-template-columns: 1fr; }
	.pb-hscroll__nav { display: none !important; }
	.pb-loccard footer { grid-template-columns: 1fr; }
}

/* Accessibility floor */
.pb-tab:focus-visible,
.pb-btn:focus-visible,
.pb-hscroll__nav:focus-visible,
.pb-accord__btn:focus-visible,
.pb-pick__thumb:focus-visible {
	outline: 2px solid var(--pb-orange);
	outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
	.pb-hscroll__track { scroll-behavior: auto; }
	.pb-pick__hero { transition: none; }
	.pb-comparetray { transition: none; }
}

/* ==========================================================================
   SPRINT 31 (v1.29) — Property Price Insights
   ========================================================================== */

.pb-insights__track { gap: 16px; }

.pb-insights__cold {
	border: 1px dashed var(--pb-border);
	border-radius: 12px;
	padding: 28px;
	background: var(--pb-cream);
	margin-top: 18px;
}
.pb-insights__cold strong { display: block; font-size: 15px; color: var(--pb-ink); margin-bottom: 4px; }
.pb-insights__cold p { margin: 0; font-size: 13.5px; color: var(--pb-warm-gray); max-width: 62ch; }

.pb-insights__foot {
	margin: 6px 0 0; font-size: 12px; color: var(--pb-warm-gray-light); line-height: 1.55;
}
.pb-insights__foot a { font-weight: 700; white-space: nowrap; margin-left: 6px; }
.pb-insights__foot .pb-i { vertical-align: -2px; }

/* --- Widget card ---------------------------------------------------------- */
.pb-iw {
	flex: 0 0 330px;
	display: flex; flex-direction: column;
	background: var(--pb-white);
	border: 1px solid var(--pb-border);
	border-radius: 14px;
	overflow: hidden;
	min-height: 430px;
}
.pb-iw__head {
	display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
	padding: 16px 18px 12px;
}
.pb-iw__head h3 { margin: 0; font-size: 15px; font-weight: 800; color: var(--pb-ink); line-height: 1.25; }
.pb-iw__head span { font-size: 12px; color: var(--pb-warm-gray-light); }
.pb-iw__ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }

.pb-iw--blue  .pb-iw__ico { background: #E4F0F0; color: var(--pb-teal); }
.pb-iw--amber .pb-iw__ico { background: var(--pb-orange-soft); color: var(--pb-orange-dark); }
.pb-iw--rose  .pb-iw__ico { background: #F7ECE6; color: #A0522D; }
.pb-iw--teal  .pb-iw__ico { background: #E4F0F0; color: var(--pb-teal); }
.pb-iw--green .pb-iw__ico { background: #E3F5EE; color: #1F7A5C; }

.pb-iw__callout {
	display: flex; gap: 8px; align-items: flex-start;
	margin: 0 14px 14px; padding: 11px 13px; border-radius: 10px;
	font-size: 12.5px; line-height: 1.45; color: var(--pb-ink);
}
.pb-iw__callout .pb-i { flex: none; margin-top: 1px; opacity: .7; }
.pb-iw--blue  .pb-iw__callout { background: #EBF4F4; }
.pb-iw--amber .pb-iw__callout { background: var(--pb-orange-soft); }
.pb-iw--rose  .pb-iw__callout { background: #FAF0EC; }
.pb-iw--teal  .pb-iw__callout { background: #EBF4F4; }
.pb-iw--green .pb-iw__callout { background: #E9F6F0; }

.pb-iw__body { padding: 0 18px 16px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.pb-iw__foot {
	padding: 12px 18px; border-top: 1px solid var(--pb-cream-dark);
	background: #FCFCFA; font-size: 12px; color: var(--pb-warm-gray);
}
.pb-iw__foot a { font-weight: 700; }
.pb-iw__source { font-size: 11.5px; color: var(--pb-warm-gray-light); line-height: 1.45; display: block; }
.pb-iw__empty { margin: 0; font-size: 13px; color: var(--pb-warm-gray); line-height: 1.55; }
.pb-iw__hint { margin: 0; font-size: 11.5px; color: var(--pb-warm-gray-light); line-height: 1.45; }

.pb-iw__big { margin: 0; font-size: 26px; font-weight: 800; color: var(--pb-ink); line-height: 1.1; }
.pb-iw__big small { display: block; font-size: 11.5px; font-weight: 400; color: var(--pb-warm-gray-light); margin-top: 3px; }

/* Charts replace their table only once drawn. */
.pb-iw__chart { position: relative; height: 160px; }
.pb-iw__table--fallback.is-replaced { display: none; }

/* --- Map ----------------------------------------------------------------- */
.pb-iw__map {
	height: 168px; border-radius: 10px; overflow: hidden;
	background: var(--pb-cream) url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23D3D1C7' stroke-width='1'/%3E%3C/svg%3E");
	border: 1px solid var(--pb-cream-dark);
}
.pb-iw__map.is-nogeo { display: none; }
.pb-iw__map.is-live { background-image: none; }
.pb-iw__map .leaflet-container { font-family: var(--pb-font); }

.pb-iw__ranks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.pb-iw__ranks li { display: flex; align-items: center; gap: 9px; font-size: 12.5px; }
.pb-iw__swatch { width: 11px; height: 11px; border-radius: 3px; background: var(--pb-teal); flex: none; }
.pb-iw__ranktext { flex: 1; color: var(--pb-charcoal); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pb-iw__ranktext em { font-style: normal; font-size: 10.5px; color: var(--pb-warm-gray-light); }
.pb-iw__ranks b { font-weight: 800; color: var(--pb-ink); }

/* --- Tables -------------------------------------------------------------- */
.pb-iw__table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.pb-iw__table th, .pb-iw__table td { padding: 7px 4px; text-align: left; border-bottom: 1px dashed var(--pb-cream-dark); }
.pb-iw__table thead th { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--pb-warm-gray-light); font-weight: 700; }
.pb-iw__table tbody th { font-weight: 600; color: var(--pb-charcoal); }
.pb-iw__table tbody th em { font-style: normal; font-size: 10px; color: var(--pb-warm-gray-light); }
.pb-iw__table td { text-align: right; font-weight: 700; color: var(--pb-ink); }
.pb-iw__table tr:last-child th, .pb-iw__table tr:last-child td { border-bottom: 0; }
.pb-iw__table .is-up { color: #1F7A5C; }
.pb-iw__table .is-down { color: #B4472E; }

/* --- Bar lists ----------------------------------------------------------- */
.pb-iw__bars { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.pb-iw__bars li { display: grid; grid-template-columns: 84px 1fr 42px; align-items: center; gap: 8px; font-size: 12px; }
.pb-iw__bars span { color: var(--pb-warm-gray); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pb-iw__bars i { height: 8px; border-radius: 4px; background: var(--pb-orange); display: block; min-width: 3px; }
.pb-iw__bars b { text-align: right; font-weight: 800; color: var(--pb-ink); }

/* --- Stat stack ---------------------------------------------------------- */
.pb-iw__stats { display: flex; flex-direction: column; gap: 10px; }
.pb-iw__stats div {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 12px 13px; border: 1px solid var(--pb-cream-dark); border-radius: 10px;
}
.pb-iw__stats span { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--pb-warm-gray); }
.pb-iw__stats b { font-size: 16px; font-weight: 800; color: var(--pb-ink); white-space: nowrap; }

/* --- Ranked lists -------------------------------------------------------- */
.pb-iw__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; counter-reset: none; }
.pb-iw__list li { display: flex; align-items: center; gap: 10px; }
.pb-iw__n {
	width: 21px; height: 21px; border-radius: 6px; flex: none;
	background: var(--pb-cream); color: var(--pb-warm-gray);
	font-size: 11px; font-weight: 800; display: grid; place-items: center;
}
.pb-iw__listtext { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.pb-iw__listtext a, .pb-iw__listtext { font-size: 12.5px; color: var(--pb-ink); font-weight: 600; }
.pb-iw__listtext em { font-style: normal; font-size: 11px; color: var(--pb-warm-gray-light); font-weight: 400; }
.pb-iw__list b { font-size: 12.5px; font-weight: 800; color: var(--pb-teal); white-space: nowrap; }

.pb-iw__projects { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.pb-iw__projects a { display: flex; align-items: center; gap: 9px; color: inherit; }
.pb-iw__projects img { width: 46px; height: 46px; object-fit: cover; border-radius: 8px; flex: none; }
.pb-iw__projects span { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.pb-iw__projects strong { font-size: 12.5px; color: var(--pb-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pb-iw__projects em { font-style: normal; font-size: 11px; color: var(--pb-warm-gray-light); }
.pb-iw__projects b { font-size: 12px; font-weight: 800; color: var(--pb-ink); white-space: nowrap; }

/* ==========================================================================
   Price trends page
   ========================================================================== */
.pb-h1 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.02em; color: var(--pb-ink); margin: 0 0 18px; }

.pb-crumbs { display: flex; gap: 8px; align-items: center; font-size: 12.5px; color: var(--pb-warm-gray-light); margin-bottom: 14px; flex-wrap: wrap; }
.pb-crumbs a { color: var(--pb-teal); }
.pb-crumbs strong { color: var(--pb-ink); font-weight: 700; }

.pb-trends__headline { display: flex; gap: 16px; flex-wrap: wrap; }
.pb-trends__headline > div {
	flex: 1 1 260px; background: var(--pb-white); border: 1px solid var(--pb-border);
	border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 4px;
}
.pb-trends__headline span { font-size: 12px; color: var(--pb-warm-gray-light); }
.pb-trends__headline strong { font-size: 32px; font-weight: 800; color: var(--pb-ink); line-height: 1.1; }
.pb-trends__headline strong small { font-size: 15px; font-weight: 500; color: var(--pb-warm-gray); }
.pb-trends__headline strong.is-up { color: #1F7A5C; }
.pb-trends__headline strong.is-down { color: #B4472E; }
.pb-trends__headline em { font-style: normal; font-size: 12px; color: var(--pb-warm-gray); line-height: 1.45; }

.pb-datatable { width: 100%; border-collapse: collapse; font-size: 13.5px; margin-top: 16px; }
.pb-datatable th, .pb-datatable td { padding: 11px 10px; border-bottom: 1px solid var(--pb-cream-dark); text-align: left; }
.pb-datatable thead th { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--pb-warm-gray-light); }
.pb-datatable tbody th { font-weight: 700; color: var(--pb-ink); }
.pb-datatable td { color: var(--pb-charcoal); }
.pb-datatable .is-up { color: #1F7A5C; font-weight: 700; }
.pb-datatable .is-down { color: #B4472E; font-weight: 700; }
.pb-thin { font-style: normal; font-size: 10.5px; color: var(--pb-warm-gray-light); background: var(--pb-cream); border-radius: 4px; padding: 2px 6px; margin-left: 4px; }

@media (max-width: 720px) {
	.pb-iw { flex-basis: 84vw; min-height: 0; }
	.pb-iw__chart { height: 150px; }
	.pb-trends__headline strong { font-size: 26px; }
	.pb-datatable { font-size: 12.5px; }
	.pb-datatable th, .pb-datatable td { padding: 9px 6px; }
}

/* ==========================================================================
   SPRINT 32 (v1.30) — Geo capture + locality landing pages
   ========================================================================== */

.pb-sechead--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.pb-link-arrow { font-size: 13.5px; font-weight: 700; color: var(--pb-teal); display: inline-flex; align-items: center; gap: 5px; }

/* --- Locality page top ---------------------------------------------------- */
.pb-locpage__top { display: grid; grid-template-columns: 1fr 1.15fr; gap: 20px; margin-top: 22px; align-items: start; }

.pb-locpage__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pb-fact {
	background: var(--pb-white); border: 1px solid var(--pb-border);
	border-radius: 12px; padding: 16px 18px;
	display: flex; flex-direction: column; gap: 3px; min-height: 108px;
}
.pb-fact span { font-size: 11.5px; color: var(--pb-warm-gray-light); }
.pb-fact strong { font-size: 26px; font-weight: 800; color: var(--pb-ink); line-height: 1.15; }
.pb-fact strong small { font-size: 13px; font-weight: 500; color: var(--pb-warm-gray); }
.pb-fact em { font-style: normal; font-size: 11.5px; color: var(--pb-warm-gray); line-height: 1.4; margin-top: auto; }
.pb-fact em a { font-weight: 700; }

/* --- Locality map --------------------------------------------------------- */
.pb-locpage__map {
	background: var(--pb-white); border: 1px solid var(--pb-border);
	border-radius: 12px; padding: 12px;
}
.pb-locmap {
	height: 300px; border-radius: 9px; overflow: hidden;
	background: var(--pb-cream) url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23D3D1C7' stroke-width='1'/%3E%3C/svg%3E");
	border: 1px solid var(--pb-cream-dark);
}
.pb-locmap[data-empty], .pb-locmap.is-dead { display: none; }
.pb-locmap.is-live { background-image: none; }
.pb-locmap .leaflet-container { font-family: var(--pb-font); }
.pb-locmap__note, .pb-locmap__empty {
	margin: 10px 2px 0; font-size: 12px; color: var(--pb-warm-gray); line-height: 1.5;
}
.pb-locmap__empty { color: var(--pb-warm-gray-light); }

/* --- FAQ ------------------------------------------------------------------ */
.pb-faq { margin-top: 16px; }
.pb-faq .pb-accord__btn { font-size: 14.5px; text-align: left; }
.pb-faq .pb-accord__body p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--pb-warm-gray); }

/* --- Wizard map picker ---------------------------------------------------- */
.pb-wiz__opt {
	font-size: 11px; font-weight: 600; color: var(--pb-warm-gray-light);
	background: var(--pb-cream); border-radius: 4px; padding: 2px 7px; margin-left: 6px;
}
.pb-wiz__geo { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 10px 0 6px; }
.pb-wiz__geo-status { font-size: 12.5px; color: var(--pb-warm-gray); line-height: 1.45; flex: 1 1 240px; }
.pb-wiz__geo-status.is-error { color: #B4472E; }
.pb-wiz__map {
	height: 280px; border-radius: 10px; overflow: hidden; margin-bottom: 12px;
	border: 1px solid var(--pb-border); background: var(--pb-cream);
}
.pb-wiz__map .leaflet-container { font-family: var(--pb-font); }

@media (max-width: 900px) {
	.pb-locpage__top { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
	.pb-locpage__facts { grid-template-columns: 1fr 1fr; gap: 10px; }
	.pb-fact { padding: 13px 14px; min-height: 96px; }
	.pb-fact strong { font-size: 21px; }
	.pb-locmap { height: 240px; }
	.pb-wiz__map { height: 230px; }
}

/* ==========================================================================
   SPRINT 33 (v1.31) — Developer profiles
   ========================================================================== */

.pb-devhero { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 22px; }
.pb-devhero__logo {
	width: 92px; height: 92px; object-fit: contain; flex: none;
	background: #fff; border: 1px solid var(--pb-border);
	border-radius: 14px; padding: 8px;
}
.pb-devhero__id { flex: 1; min-width: 0; }
.pb-devhero__id .pb-h1 { margin-bottom: 6px; }
.pb-devhero__id .pb-sub { margin-bottom: 8px; }

.pb-devfacts { grid-template-columns: repeat(4, 1fr); }

.pb-devrera {
	display: flex; align-items: flex-start; gap: 9px;
	margin: 16px 0 0; padding: 13px 16px; border-radius: 10px;
	background: #E9F6F0; color: var(--pb-ink);
	font-size: 13px; line-height: 1.5;
}
.pb-devrera .pb-i { flex: none; margin-top: 1px; color: #1F7A5C; }

.pb-devabout { margin-top: 22px; }
.pb-prose { font-size: 14.5px; line-height: 1.7; color: var(--pb-charcoal); }
.pb-prose p { margin: 0 0 1em; }
.pb-prose p:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
	.pb-devfacts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
	.pb-devhero { gap: 14px; }
	.pb-devhero__logo { width: 64px; height: 64px; border-radius: 11px; }
}

/* ==========================================================================
   SPRINT 34 (v1.32) — Recommendations wizard + matches
   ========================================================================== */

.pb-reco { padding: 28px 0 56px; }
.pb-reco__back {
	display: inline-flex; align-items: center; gap: 6px; margin-bottom: 18px;
	font-size: 13.5px; font-weight: 700; color: var(--pb-warm-gray);
}
.pb-reco__back:hover { color: var(--pb-teal); }

.pb-reco__layout { display: grid; grid-template-columns: 1fr 336px; gap: 26px; align-items: start; }

/* --- Banner --------------------------------------------------------------- */
.pb-reco__banner {
	display: flex; align-items: center; gap: 26px;
	background: linear-gradient(120deg, #F1F7F7 0%, var(--pb-cream) 100%);
	border: 1px solid var(--pb-border); border-radius: 16px;
	padding: 20px 26px; margin-bottom: 26px;
}
.pb-reco__stack { position: relative; width: 190px; height: 118px; flex: none; }
.pb-reco__stackcard {
	position: absolute; top: 12px; width: 92px; border-radius: 9px; overflow: hidden;
	background: var(--pb-white); border: 1px solid var(--pb-border);
	box-shadow: 0 6px 16px rgba(14,31,38,.12); padding-bottom: 6px;
}
.pb-reco__stackcard img { width: 100%; height: 52px; object-fit: cover; display: block; }
.pb-reco__stackcard em { display: block; font-style: normal; font-size: 8.5px; color: var(--pb-warm-gray); padding: 4px 6px 0; }
.pb-reco__stackcard b { display: block; font-size: 10px; color: var(--pb-ink); padding: 0 6px; }
.pb-reco__stackcard--0 { left: 0; transform: rotate(-7deg) scale(.9); opacity: .75; }
.pb-reco__stackcard--1 { left: 48px; z-index: 2; top: 0; }
.pb-reco__stackcard--2 { left: 98px; transform: rotate(7deg) scale(.9); opacity: .75; }
.pb-reco__promise { margin: 0; font-size: 19px; line-height: 1.45; color: var(--pb-warm-gray); }
.pb-reco__promise strong { color: var(--pb-ink); font-weight: 800; }

/* --- Steps ---------------------------------------------------------------- */
.pb-reco__step { display: none; }
.pb-reco__step.is-active { display: block; }
/* With JS off every step stays visible rather than the page appearing blank. */
.no-js .pb-reco__step { display: block; margin-bottom: 34px; }

.pb-reco__stepno {
	display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .1em;
	text-transform: uppercase; color: var(--pb-orange-dark);
	background: var(--pb-orange-soft); border-radius: 999px; padding: 5px 12px; margin-bottom: 12px;
}
.pb-reco__h { font-size: clamp(23px, 2.8vw, 33px); font-weight: 800; letter-spacing: -0.02em; color: var(--pb-ink); margin: 0 0 8px; }
.pb-reco__sub { margin: 0 0 26px; font-size: 14.5px; color: var(--pb-warm-gray); max-width: 62ch; line-height: 1.6; }
.pb-reco__q { font-size: 16px; font-weight: 800; color: var(--pb-ink); margin: 26px 0 12px; }
.pb-reco__q:first-of-type { margin-top: 0; }
.pb-reco__opt { font-size: 11px; font-weight: 600; color: var(--pb-warm-gray-light); background: var(--pb-cream); border-radius: 4px; padding: 2px 7px; margin-left: 6px; }
.pb-reco__hint { font-size: 12.5px; color: var(--pb-warm-gray-light); margin: 10px 0 0; }
.pb-reco__hint.is-warn { color: var(--pb-orange-dark); font-weight: 600; }

/* --- Choice cards --------------------------------------------------------- */
.pb-reco__choices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pb-reco__choices--4 { grid-template-columns: repeat(4, 1fr); }

.pb-choice {
	display: flex; flex-direction: column; gap: 8px; text-align: left; cursor: pointer;
	background: var(--pb-white); border: 1.5px solid var(--pb-border);
	border-radius: 13px; padding: 20px; font-family: inherit;
	transition: border-color .15s, box-shadow .15s, background .15s;
}
.pb-choice:hover { border-color: var(--pb-teal); }
.pb-choice.is-on { border-color: var(--pb-teal); background: #F1F7F7; box-shadow: 0 0 0 3px rgba(31,107,107,.12); }
.pb-choice__ico {
	width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
	background: var(--pb-cream); color: var(--pb-warm-gray);
}
.pb-choice.is-on .pb-choice__ico { background: var(--pb-teal); color: #fff; }
.pb-choice strong { font-size: 15.5px; font-weight: 800; color: var(--pb-ink); }
.pb-choice em { font-style: normal; font-size: 12.5px; color: var(--pb-warm-gray); line-height: 1.5; }
.pb-choice--sm { padding: 15px; gap: 7px; }
.pb-choice--sm .pb-choice__ico { width: 34px; height: 34px; border-radius: 9px; }
.pb-choice--sm strong { font-size: 13.5px; }

/* --- Chips ---------------------------------------------------------------- */
.pb-reco__chips { display: flex; flex-wrap: wrap; gap: 9px; }
.pb-rchip {
	display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
	background: var(--pb-white); border: 1.5px solid var(--pb-border);
	border-radius: 999px; padding: 9px 16px; font-family: inherit;
	font-size: 13.5px; font-weight: 600; color: var(--pb-charcoal);
	transition: border-color .15s, background .15s, color .15s;
}
.pb-rchip em { font-style: normal; font-size: 11px; color: var(--pb-warm-gray-light); }
.pb-rchip:hover { border-color: var(--pb-teal); color: var(--pb-teal); }
.pb-rchip.is-on { background: var(--pb-teal); border-color: var(--pb-teal); color: #fff; }
.pb-rchip.is-on em { color: rgba(255,255,255,.7); }

.pb-reco__range { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 14px; }
.pb-reco__range label { display: flex; flex-direction: column; gap: 5px; font-size: 12.5px; color: var(--pb-warm-gray); }
.pb-reco__range input {
	width: 190px; padding: 11px 13px; border: 1px solid var(--pb-border);
	border-radius: 9px; font-family: inherit; font-size: 14px; color: var(--pb-ink);
}
.pb-reco__range input:focus { outline: 2px solid var(--pb-teal); outline-offset: 1px; }

.pb-reco__nav { display: flex; justify-content: flex-end; gap: 10px; margin-top: 30px; }

/* --- Rail ----------------------------------------------------------------- */
.pb-reco__rail {
	background: var(--pb-white); border: 1px solid var(--pb-border);
	border-radius: 16px; padding: 22px; position: sticky; top: 96px;
}
.pb-reco__railhead { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.pb-reco__railhead h3 { display: flex; align-items: center; gap: 7px; margin: 0; font-size: 15px; font-weight: 800; color: var(--pb-ink); }

.pb-gauge { position: relative; width: 54px; height: 54px; flex: none; }
.pb-gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.pb-gauge circle { fill: none; stroke-width: 5; }
.pb-gauge__bg { stroke: var(--pb-cream-dark); }
.pb-gauge__fg { stroke: var(--pb-orange); stroke-linecap: round; transition: stroke-dashoffset .5s ease; }
.pb-gauge span {
	position: absolute; inset: 0; display: grid; place-items: center;
	font-size: 12.5px; font-weight: 800; color: var(--pb-ink);
}

.pb-reco__nudge {
	margin: 0 0 16px; padding: 11px 13px; border-radius: 10px;
	background: var(--pb-orange-soft); color: var(--pb-ink);
	font-size: 12.5px; line-height: 1.45; font-weight: 600;
}

.pb-reco__summary { list-style: none; margin: 0 0 20px; padding: 0; }
.pb-reco__summary li {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 11px 0; border-bottom: 1px solid var(--pb-cream-dark);
}
.pb-reco__summary li:last-child { border-bottom: 0; }
.pb-reco__summary span { font-size: 11px; font-weight: 800; letter-spacing: .07em; color: var(--pb-warm-gray-light); }
.pb-reco__summary b { font-size: 13px; font-weight: 700; color: var(--pb-warm-gray-light); text-align: right; }
.pb-reco__summary li.is-done b { color: var(--pb-ink); }
.pb-reco__summary li.is-done span { color: var(--pb-teal); }
.pb-reco__summary li.is-current { background: #F1F7F7; margin: 0 -10px; padding-left: 10px; padding-right: 10px; border-radius: 8px; }

.pb-reco__perks h4 { margin: 0 0 10px; font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--pb-warm-gray-light); }
.pb-reco__perks ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pb-reco__perks li { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; color: var(--pb-warm-gray); line-height: 1.45; }
.pb-reco__perks .pb-i { flex: none; margin-top: 1px; color: var(--pb-teal); }

.pb-reco__save {
	margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--pb-cream-dark);
	font-size: 12px; color: var(--pb-warm-gray-light); line-height: 1.5;
}

/* --- Results -------------------------------------------------------------- */
.pb-recoresults__cold { text-align: center; padding: 44px 28px; }
.pb-recoresults__cold h2, .pb-recoresults__cold h3 { margin-top: 0; }
.pb-recoresults__cold .pb-sub { margin: 0 auto 20px; max-width: 58ch; }
.pb-recoresults__foot { margin-top: 22px; font-size: 12px; color: var(--pb-warm-gray-light); line-height: 1.55; }

.pb-mcard {
	background: var(--pb-white); border: 1px solid var(--pb-border);
	border-radius: 14px; overflow: hidden; display: flex; flex-direction: column;
}
.pb-mcard:hover { border-color: var(--pb-teal); box-shadow: var(--pb-shadow-lg); }
.pb-mcard__img { position: relative; display: block; }
.pb-mcard__img img { width: 100%; height: 190px; object-fit: cover; display: block; }
.pb-mcard__score {
	position: absolute; top: 12px; right: 12px;
	background: var(--pb-ink); color: #fff; border-radius: 10px;
	padding: 7px 11px; display: flex; flex-direction: column; align-items: center; line-height: 1;
}
.pb-mcard__score b { font-size: 16px; font-weight: 800; }
.pb-mcard__score i { font-style: normal; font-size: 8.5px; letter-spacing: .08em; text-transform: uppercase; opacity: .7; margin-top: 2px; }
.pb-mcard__seen {
	position: absolute; bottom: 12px; left: 12px;
	background: rgba(14,31,38,.82); color: #fff; border-radius: 6px;
	padding: 4px 9px; font-size: 10.5px; font-weight: 700;
}
.pb-mcard__body { padding: 15px 17px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.pb-mcard__body h3 { margin: 0; font-size: 16px; font-weight: 800; }
.pb-mcard__body h3 a { color: var(--pb-ink); }
.pb-mcard__meta { margin: 2px 0 0; font-size: 12.5px; color: var(--pb-warm-gray); }
.pb-mcard__price { margin: 6px 0 10px; font-size: 16.5px; font-weight: 800; color: var(--pb-ink); }

.pb-mcard__why { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.pb-mcard__why li { display: flex; align-items: center; gap: 6px; font-size: 12px; line-height: 1.4; }
.pb-mcard__why .is-plus { color: #1F7A5C; }
.pb-mcard__why .is-plus .pb-i { flex: none; }
.pb-mcard__why .is-minus { color: var(--pb-warm-gray-light); }
.pb-mcard__why .is-minus::before { content: "—"; flex: none; }
.pb-mcard__acts { display: flex; gap: 8px; margin-top: auto; }

.pb-minirow__score {
	margin-left: auto; align-self: center; font-style: normal;
	background: var(--pb-cream); color: var(--pb-ink);
	border-radius: 7px; padding: 5px 8px; font-size: 12px; font-weight: 800;
}
.pb-pcard__note { margin: 6px 0 0; font-size: 12px; color: var(--pb-warm-gray-light); }
.pb-reco-progress { height: 7px; background: var(--pb-cream-dark); border-radius: 4px; overflow: hidden; margin-bottom: 4px; }
.pb-reco-progress span { display: block; height: 100%; background: var(--pb-orange); }

@media (max-width: 1024px) {
	.pb-reco__layout { grid-template-columns: 1fr; }
	.pb-reco__rail { position: static; order: -1; }
	.pb-reco__choices { grid-template-columns: repeat(2, 1fr); }
	.pb-reco__choices--4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
	.pb-reco__banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 18px; }
	.pb-reco__promise { font-size: 16px; }
	.pb-reco__choices, .pb-reco__choices--4 { grid-template-columns: 1fr 1fr; }
	.pb-reco__range input { width: 100%; }
	.pb-reco__range label { flex: 1 1 100%; }
	.pb-reco__nav { flex-direction: column-reverse; }
	.pb-reco__nav .pb-btn { width: 100%; }
}

/* ==========================================================================
   SPRINT 37 (v1.35) — wizard project typeahead
   ========================================================================== */
.pb-wiz__typeahead {
	border: 1px solid var(--pb-border); border-top: 0;
	border-radius: 0 0 9px 9px; max-height: 260px; overflow: auto;
	background: var(--pb-white); margin-bottom: 12px;
}
.pb-wiz__typeahead-row {
	display: flex; gap: 10px; align-items: center; width: 100%; text-align: left;
	padding: 10px 12px; border: 0; border-bottom: 1px solid var(--pb-cream-dark);
	background: var(--pb-white); cursor: pointer; font-family: inherit;
}
.pb-wiz__typeahead-row:last-child { border-bottom: 0; }
.pb-wiz__typeahead-row:hover { background: var(--pb-cream); }
.pb-wiz__typeahead-row img { width: 34px; height: 34px; border-radius: 7px; object-fit: cover; flex: none; }
.pb-wiz__typeahead-row strong { display: block; font-size: 13.5px; color: var(--pb-ink); }
.pb-wiz__typeahead-row em { font-style: normal; font-size: 11.5px; color: var(--pb-warm-gray-light); }
.pb-wiz__typeahead-empty { margin: 0; padding: 12px; font-size: 12.5px; color: var(--pb-warm-gray); }

.pb-wiz__chosen {
	display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
	padding: 12px 14px; border-radius: 10px; margin-bottom: 12px;
	background: #E4F0F0; border: 1px solid var(--pb-teal);
}
.pb-wiz__chosen strong { font-size: 14px; color: var(--pb-ink); }
.pb-wiz__chosen em { font-style: normal; font-size: 12px; color: var(--pb-warm-gray); flex: 1 1 100%; }
.pb-wiz__chosen button {
	margin-left: auto; background: none; border: 0; cursor: pointer;
	color: var(--pb-orange-dark); font-family: inherit; font-size: 12.5px; font-weight: 700;
}
.pb-wiz__note { margin: 0 0 14px; font-size: 12px; color: var(--pb-warm-gray-light); line-height: 1.5; }

/* ==========================================================================
   SPRINT 38 (v1.36) — mega menu, one authoritative block
   --------------------------------------------------------------------------
   .pb-mega was declared three separate times across earlier sprints (lines
   ~1357, ~1966, ~2532), each partially overriding the last. This block is
   last in the file and settles every property that matters, so the earlier
   declarations no longer decide anything. They are left in place because
   other headers still reference some of their sub-classes.

   The panel is positioned by assets/js/mega.js, which measures it against
   the viewport. CSS only supplies the fallback offset used before the
   script runs and when it is unavailable.
   ========================================================================== */

.pb-mega { flex: 1 1 auto; min-width: 0; margin: 0 16px; }
.pb-mega__list {
	display: flex; gap: 2px; list-style: none; margin: 0; padding: 0;
	justify-content: center; align-items: center; flex-wrap: nowrap;
}
.pb-mega__item { position: relative; }

.pb-mega__trigger {
	display: inline-flex; align-items: center; gap: 5px;
	background: transparent; border: 0; cursor: pointer;
	color: rgba(255,255,255,0.92);
	font-family: inherit; font-size: 13.5px; font-weight: 600;
	padding: 10px 13px; border-radius: 8px; white-space: nowrap;
	transition: background .15s, color .15s;
}
.pb-mega__trigger:hover,
.pb-mega__item.is-open .pb-mega__trigger {
	background: rgba(255,255,255,0.14); color: #fff;
}
.pb-mega__caret { font-size: 10px; opacity: .75; transition: transform .18s; }
.pb-mega__item.is-open .pb-mega__caret { transform: rotate(180deg); }

/* A hover bridge across the gap between trigger and panel. Without it the
   panel closes when the pointer crosses the 14px of empty space. */
.pb-mega__item.is-open::after {
	content: ""; position: absolute; left: 0; right: 0; top: 100%;
	height: 16px; z-index: 199;
}

.pb-mega__panel {
	position: absolute;
	top: calc(100% + 14px);
	left: 0;                 /* JS overwrites this with a clamped offset */
	transform: none;         /* the old translateX(-50%) is what pushed
	                            edge panels off-screen */
	background: #fff;
	border: 1px solid #E8ECEF;
	border-radius: 14px;
	padding: 26px 30px;
	box-shadow: 0 28px 64px rgba(14,31,38,0.22);
	z-index: 200;
	opacity: 0; visibility: hidden;
	transition: opacity .15s ease, visibility .15s ease;
	max-height: calc(100vh - 130px);
	overflow-y: auto;
	overscroll-behavior: contain;
}
.pb-mega__item.is-open .pb-mega__panel { opacity: 1; visibility: visible; }

.pb-mega__panel--wide { width: 860px; max-width: calc(100vw - 32px); }

.pb-mega__grid { display: grid; gap: 12px 32px; align-items: start; }
.pb-mega__grid--1 { grid-template-columns: 1fr; min-width: 340px; }
.pb-mega__grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); min-width: 460px; }
.pb-mega__grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.pb-mega__grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
/* --grid--5 was used in the markup but never defined, so that panel fell
   back to a single implicit column and rendered as one long list. */
.pb-mega__grid--5 { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 12px 26px; }

.pb-mega__col { min-width: 0; }
.pb-mega__col h4 {
	margin: 0 0 12px; font-size: 10.5px; letter-spacing: .11em;
	text-transform: uppercase; color: #94A3AA; font-weight: 800;
	padding-bottom: 8px; border-bottom: 1px solid #F0F2F4;
}
.pb-mega__col a {
	display: block; padding: 7px 0; color: #2C2C2A;
	font-size: 13px; font-weight: 500; text-decoration: none; line-height: 1.35;
	transition: color .12s, padding-left .15s;
}
.pb-mega__col a:hover { color: #1F6B6B; padding-left: 4px; }
.pb-mega__col hr { border: 0; border-top: 1px solid #F0F2F4; margin: 10px 0; }

.pb-mega__accent { color: #E8873C; font-weight: 700; }
.pb-mega__accent:hover { color: #C26A25; }
.pb-mega__soon { color: #C4CBD1; cursor: not-allowed; font-style: italic; }
.pb-mega__soon em {
	color: #94A3AA; background: #F5F5F0; padding: 2px 6px; border-radius: 3px;
	font-size: 10px; margin-left: 6px; font-style: normal;
}
.pb-mega__lg { padding: 12px 14px; border-radius: 9px; }
.pb-mega__lg:hover { background: #F5F7F7; padding-left: 18px; }
.pb-mega__lg strong { display: block; font-size: 14.5px; color: #0E1F26; margin-bottom: 3px; font-weight: 700; }
.pb-mega__lg span { display: block; font-size: 12px; color: #94A3AA; font-weight: 500; }

@media (max-width: 1180px) {
	.pb-mega__trigger { font-size: 12.5px; padding: 9px 9px; }
	.pb-mega__panel--wide { width: 720px; }
	.pb-mega__grid--5 { grid-template-columns: repeat(3, minmax(0,1fr)); }
	.pb-mega__grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 900px) {
	.pb-mega { display: none; }
}

/* ==========================================================================
   SPRINT 39 (v1.37) — trending search pills, single definition
   --------------------------------------------------------------------------
   Two things were wrong.

   The pills were white text on rgba(255,255,255,.1). That is legible on a
   dark hero and vanishes against anything lighter, so the component depended
   on its surroundings to be readable. Solid pills with their own background
   and ink text do not.

   Worse, the hero ships on SEVERAL templates — the homepage, the city page,
   and the listings archive — but only the homepage wraps it in .pb-home.
   Every .pb-home-scoped fix written since Sprint 36 therefore missed the
   listings page entirely, which is exactly where the problem was reported.
   Nothing below is scoped to a wrapper.
   ========================================================================== */
.pb-search3__popular {
	display: flex; align-items: center; gap: 12px;
	margin-top: 18px; flex-wrap: wrap;
}
.pb-search3__popular-label {
	color: #fff; font-size: 12.5px; font-weight: 700;
	letter-spacing: .04em; text-shadow: 0 1px 2px rgba(14,31,38,.4);
}
.pb-search3__chips { display: flex; gap: 8px; flex-wrap: wrap; }

/* Specificity 0,3,1 — above anything a wrapper rule can reach without
   resorting to !important. */
.pb-search3 .pb-search3__popular .pb-search3__chips a,
.pb-search3__popular .pb-search3__chips a {
	display: inline-flex; align-items: center;
	background: #FFFFFF;
	color: #0E1F26;
	border: 1px solid rgba(255,255,255,.92);
	padding: 7px 15px;
	border-radius: 999px;
	font-size: 12.5px; font-weight: 600; line-height: 1.2;
	text-decoration: none; white-space: nowrap;
	box-shadow: 0 2px 8px rgba(14,31,38,.16);
	transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.pb-search3 .pb-search3__popular .pb-search3__chips a:hover,
.pb-search3__popular .pb-search3__chips a:hover {
	background: #E8873C; color: #FFFFFF; border-color: #E8873C;
	transform: translateY(-1px);
}
.pb-search3 .pb-search3__popular .pb-search3__chips a:focus-visible,
.pb-search3__popular .pb-search3__chips a:focus-visible {
	outline: 2px solid #E8873C; outline-offset: 2px;
}
