/*
Theme Name: ListingHive Child
Theme URI: https://kimveriman.com/
Description: A child theme for ListingHive
Author: Kimver Iman
Author URI: https://kimveriman.com/
Template: listinghive
Version: 1.0.0
Text Domain: listinghive-child
*/

/* ═══════════════════════════════════════════════════════════════════════════
   1. DESIGN SYSTEM TOKENS
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
	/* Brand */
	--brand-navy:       #0f2351;
	--brand-navy-mid:   #1a3a7c;
	--brand-navy-light: #2952a3;
	--brand-gold:       #f5a623;
	--brand-gold-dark:  #d4891a;
	--brand-gold-light: #ffd07a;

	/* Neutrals */
	--gray-50:  #f8fafc;
	--gray-100: #f1f5f9;
	--gray-200: #e2e8f0;
	--gray-300: #cbd5e1;
	--gray-400: #94a3b8;
	--gray-500: #64748b;
	--gray-700: #334155;
	--gray-900: #0f172a;

	/* Semantic */
	--color-text:    var(--gray-700);
	--color-muted:   var(--gray-500);
	--color-border:  var(--gray-200);
	--color-bg:      var(--gray-50);
	--color-surface: #ffffff;
	--color-success: #059669;
	--color-verified:#2563eb;

	/* Radius */
	--r-xs: 4px;
	--r-sm: 8px;
	--r-md: 12px;
	--r-lg: 16px;
	--r-xl: 24px;
	--r-full: 9999px;

	/* Shadow */
	--shadow-xs: 0 1px 3px rgba(15,23,81,0.07), 0 1px 2px rgba(15,23,81,0.05);
	--shadow-sm: 0 4px 6px rgba(15,23,81,0.07), 0 2px 4px rgba(15,23,81,0.05);
	--shadow-md: 0 10px 24px rgba(15,23,81,0.10), 0 4px 8px rgba(15,23,81,0.06);
	--shadow-lg: 0 20px 48px rgba(15,23,81,0.14), 0 8px 16px rgba(15,23,81,0.08);
	--shadow-gold: 0 8px 24px rgba(245,166,35,0.30);

	/* Typography */
	--font-heading: 'Poppins', sans-serif;
	--font-body:    'Open Sans', sans-serif;

	/* Transition */
	--ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   2. BASE RESET & BODY
   ═══════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body {
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a { color: var(--brand-navy-light); transition: color var(--ease); }
a:hover { color: var(--brand-gold-dark); }

/* ── CUSTOMIZER YELLOW OVERRIDES ──────────────────────────────────────────────
   The theme customizer sets color:#ffc107 (bright yellow) on many interactive
   elements. Yellow on white/light backgrounds fails WCAG contrast. We override
   every affected selector here with high-specificity !important rules.
   Gold accent is kept only where it is decorative (underline bars, dots).
   ─────────────────────────────────────────────────────────────────────────── */

/* HivePress tabbed nav - Details / Edit / etc. tabs on listing & account pages */
.hp-menu--tabbed .hp-menu__item--current > a,
.hp-menu--tabbed .hp-menu__item--current a,
.hp-menu--tabbed .hp-menu__item a:hover {
	color: var(--brand-navy) !important;
}
/* Keep the gold underline indicator but fix text */
.hp-menu--tabbed .hp-menu__item--current::before {
	background-color: var(--brand-gold) !important;
}
/* Fix the tab bar spacing on single listing pages.
   HivePress sets margin-top:-1rem (pulls it into content above) and margin-bottom:2rem (too large).
   Override both so the tab bar has proper breathing room on all sides. */
.hp-page__topbar--separate {
	margin-top: 1.25rem !important;
}
.hp-page__topbar--separate:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

/* Sidebar widgets: categories, archives, nav menus, pages, recent posts */
.widget_archive li a:hover,
.widget_categories li a:hover,
.widget_categories li.current-cat > a,
.widget_product_categories li a:hover,
.widget_product_categories li.current-cat > a,
.widget_meta li a:hover,
.widget_nav_menu li a:hover,
.widget_nav_menu li.current-menu-item > a,
.widget_pages li a:hover,
.widget_recent_entries li a:hover,
.widget_archive li:hover > a,
.widget_categories li:hover > a,
.widget_product_categories li:hover > a,
.widget_meta li:hover > a,
.widget_nav_menu li:hover > a,
.widget_pages li:hover > a,
.widget_recent_entries li:hover > a {
	color: var(--brand-navy) !important;
}
/* Active indicators (::before dots) stay gold */
.widget_categories li.current-cat::before,
.widget_product_categories li.current-cat::before,
.widget_nav_menu li.current-menu-item::before,
.widget_categories li:hover::before,
.widget_product_categories li:hover::before,
.widget_meta li:hover::before,
.widget_nav_menu li:hover::before,
.widget_pages li:hover::before,
.widget_recent_entries li:hover::before,
.widget_archive li:hover::before {
	color: var(--brand-gold) !important;
}

/* Block widgets */
.wp-block-archives li a:hover,
.wp-block-categories li a:hover,
.wp-block-latest-posts li a:hover,
.wp-block-rss li a:hover,
.wp-block-archives li:hover > a,
.wp-block-categories li:hover > a,
.wp-block-latest-posts li:hover > a,
.wp-block-rss li:hover > a,
.wp-block-archives li:hover::before,
.wp-block-categories li:hover::before,
.wp-block-latest-posts li:hover::before,
.wp-block-rss li:hover::before {
	color: var(--brand-navy) !important;
}

/* WooCommerce My Account default nav is suppressed -
   our custom sidebar in page-my-account.php replaces it. */

/* Post/blog detail links and comment links */
.post__details a:hover,
.post-navbar__link:hover i,
.comment__details a:hover,
.comment-respond .comment-reply-title a:hover {
	color: var(--brand-navy) !important;
}

/* Tag cloud */
.tagcloud a:hover,
.wp-block-tag-cloud a:hover {
	color: var(--brand-navy) !important;
}

/* Google Maps autocomplete */
.pac-item:hover .pac-item-query {
	color: var(--brand-navy) !important;
}

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

/* Section spacing */
.hp-section,
.hp-page { padding-top: 3.5rem; padding-bottom: 3.5rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   3. TYPOGRAPHY & SECTION TITLES
   ═══════════════════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6,
.title {
	font-family: var(--font-heading);
	color: var(--gray-900);
	line-height: 1.25;
	letter-spacing: -0.02em;
}

/* Accent underline bar */
.title::before,
.hp-page__title::before,
.hp-section__title::before,
.footer-widgets .widget__title::before,
.widget--footer .widget__title::before {
	background-color: var(--brand-gold) !important;
	background-image: none !important;
	border-radius: 2px;
	height: 3px !important;
	width: 32px !important;
}

/* Uppercase meta labels */
.hp-listing--view-block .hp-listing__created-date,
.hp-listing--view-page .hp-listing__created-date,
.hp-field__label,
.widget__title,
.hp-listing-category__item-count {
	text-transform: uppercase;
	letter-spacing: 0.07em;
	font-size: 0.6875rem;
	font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════
   4. STICKY HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */
.header-navbar {
	background: var(--color-surface) !important;
	box-shadow: 0 1px 0 var(--color-border), var(--shadow-xs) !important;
	position: sticky !important;
	top: 0;
	z-index: 9999;
	transition: box-shadow var(--ease);
}

/* Logo */
.header-navbar__logo img { max-height: 42px; }

/* Top-level nav links */
.header-navbar__menu > ul > li > a,
.header-navbar__burger > ul > li > a {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.01em;
	color: var(--gray-700) !important;
	padding: 0.5rem 0.875rem;
	border-radius: var(--r-sm);
	transition: background var(--ease), color var(--ease);
}
.header-navbar__menu > ul > li > a:hover,
.header-navbar__menu > ul > li.current-menu-item > a {
	color: var(--brand-navy) !important;
	background: var(--gray-100);
}
.header-navbar__menu > ul > li.current-menu-item::before,
.header-navbar__burger > ul > li.current-menu-item::before {
	background-image: none !important;
	background-color: var(--brand-gold) !important;
	height: 3px;
	border-radius: 2px;
}

/* Dropdown */
.header-navbar__menu ul li ul {
	border-radius: var(--r-md) !important;
	box-shadow: var(--shadow-md) !important;
	border: 1px solid var(--color-border);
	padding: 0.375rem;
	background: var(--color-surface);
}
.header-navbar__menu ul li ul li a {
	border-radius: var(--r-sm) !important;
	font-size: 0.875rem;
	color: var(--gray-700);
	padding: 0.5rem 0.875rem;
	transition: background var(--ease), color var(--ease);
}
.header-navbar__menu ul li ul li a:hover {
	background: var(--gray-100);
	color: var(--brand-navy);
}

/* Submit listing CTA in nav */
.header-navbar .button--secondary {
	background: var(--brand-gold) !important;
	color: var(--brand-navy) !important;
	font-weight: 700 !important;
	border-radius: var(--r-sm) !important;
	padding: 0.5rem 1.25rem !important;
	box-shadow: var(--shadow-gold) !important;
	transition: background var(--ease), transform var(--ease), box-shadow var(--ease) !important;
}
.header-navbar .button--secondary:hover {
	background: var(--brand-gold-dark) !important;
	transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   5. HERO / BANNER
   ═══════════════════════════════════════════════════════════════════════════ */
.header-hero--cover::after {
	background: linear-gradient(
		135deg,
		rgba(15,35,81,0.82) 0%,
		rgba(15,35,81,0.55) 60%,
		rgba(15,35,81,0.30) 100%
	) !important;
}

.header-hero--cover .title,
.header-hero--cover h1,
.header-hero--cover h2 {
	font-size: clamp(1.875rem, 4.5vw, 3.25rem);
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 20px rgba(0,0,0,0.20);
	letter-spacing: -0.03em;
	line-height: 1.15;
}
.header-hero--cover p,
.header-hero--cover .subtitle {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: rgba(255,255,255,0.85);
	margin-top: 0.75rem;
	font-weight: 400;
}

/* Hero search bar */
.header-hero .hp-form--listing-search,
.header-hero .hp-form--primary {
	background: var(--color-surface) !important;
	border-radius: var(--r-xl) !important;
	box-shadow: var(--shadow-lg) !important;
	border: none !important;
	padding: 0.375rem 0.375rem 0.375rem 1.5rem !important;
	margin-top: 2rem !important;
	align-items: center !important;
	gap: 0 !important;
}
.header-hero .hp-form--listing-search .hp-form__field,
.header-hero .hp-form--primary .hp-form__field {
	border-right-color: var(--color-border) !important;
}
.header-hero .hp-form--listing-search .hp-field input,
.header-hero .hp-form--primary .hp-field input {
	border: none !important;
	box-shadow: none !important;
	background: transparent !important;
	font-size: 1rem !important;
	color: var(--gray-900) !important;
	height: 3rem !important;
}
.header-hero .hp-form--listing-search .hp-form__button .button,
.header-hero .hp-form--primary .hp-form__button .button {
	border-radius: var(--r-xl) !important;
	background: var(--brand-navy) !important;
	color: #fff !important;
	font-weight: 700 !important;
	font-size: 0.9rem !important;
	padding: 0 1.75rem !important;
	height: 3rem !important;
	line-height: 3rem !important;
	letter-spacing: 0.02em;
	box-shadow: none !important;
	transition: background var(--ease) !important;
}
.header-hero .hp-form--listing-search .hp-form__button .button:hover,
.header-hero .hp-form--primary .hp-form__button .button:hover {
	background: var(--brand-navy-mid) !important;
}

/* Hero stat counters (if present via shortcode/widget) */
.header-hero .hp-counter {
	color: #fff;
	font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════
   6. LISTING CATEGORY TILES
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-listing-category--view-block,
.hp-listing-category--submit-block {
	border-radius: var(--r-lg) !important;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--ease), box-shadow var(--ease);
}
.hp-listing-category--view-block:hover,
.hp-listing-category--submit-block:hover {
	transform: translateY(-6px) !important;
	box-shadow: var(--shadow-md);
}

/* Stronger gradient overlay */
.hp-listing-category--view-block .hp-listing-category__image a::after,
.hp-listing-category--submit-block .hp-listing-category__image a::after {
	background-image: linear-gradient(
		to top,
		rgba(15,35,81,0.88) 0%,
		rgba(15,35,81,0.30) 55%,
		transparent 100%
	) !important;
	border-radius: var(--r-lg) !important;
}
.hp-listing-category--view-block .hp-listing-category__image img,
.hp-listing-category--submit-block .hp-listing-category__image img {
	border-radius: var(--r-lg) !important;
	transition: transform 0.4s ease;
}
.hp-listing-category--view-block:hover .hp-listing-category__image img {
	transform: scale(1.06);
}

/* Category name */
.hp-listing-category--view-block .hp-listing-category__name,
.hp-listing-category--submit-block .hp-listing-category__name {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1rem;
	color: #fff;
	text-shadow: 0 1px 6px rgba(0,0,0,0.30);
}

/* Item count badge */
.hp-listing-category__item-count {
	background: rgba(245,166,35,0.90) !important;
	color: var(--brand-navy) !important;
	font-weight: 800;
	border-radius: var(--r-full) !important;
	padding: 0.2rem 0.65rem !important;
	font-size: 0.65rem !important;
	letter-spacing: 0.06em;
	backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   7. LISTING CARDS - VIEW BLOCK
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-listing--view-block {
	border-radius: var(--r-lg) !important;
	border: 1px solid var(--color-border) !important;
	box-shadow: var(--shadow-xs) !important;
	background: var(--color-surface) !important;
	transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease) !important;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.hp-listing--view-block:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md) !important;
	border-color: rgba(15,35,81,0.15) !important;
}

/* Featured listing */
.hp-listing--view-block.hp-listing--featured {
	border-color: var(--brand-gold) !important;
	box-shadow: 0 0 0 2px rgba(245,166,35,0.15), var(--shadow-sm) !important;
}

/* Featured badge */
.hp-listing--view-block .hp-listing__featured-badge {
	background-color: var(--brand-gold) !important;
	background-image: none !important;
	color: var(--brand-navy) !important;
	border-radius: 0 var(--r-xs) var(--r-xs) 0 !important;
	font-weight: 800;
	width: auto !important;
	padding: 0 0.5rem;
	height: 1.625rem !important;
	font-size: 0.6rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Card thumbnail */
.hp-listing--view-block .hp-listing__image {
	overflow: hidden;
	background: var(--gray-100);
	position: relative;
}
.hp-listing--view-block .hp-listing__image img {
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	transition: transform 0.4s ease;
	display: block;
}
.hp-listing--view-block:hover .hp-listing__image img {
	transform: scale(1.05);
}

/* Card content padding */
.hp-listing--view-block .hp-listing__content {
	padding: 1.125rem 1.25rem 0.75rem !important;
	flex: 1;
}
.hp-listing--view-block .hp-listing__footer {
	padding: 0.75rem 1.25rem !important;
	border-top: 1px solid var(--color-border) !important;
	background: var(--gray-50);
}

/* Card title */
.hp-listing--view-block .hp-listing__title a,
.hp-listing--view-block .hp-listing__header .title a {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1rem;
	color: var(--gray-900);
	line-height: 1.35;
	transition: color var(--ease);
}
.hp-listing--view-block .hp-listing__title a:hover {
	color: var(--brand-navy-light);
}

/* Category pill on card */
.hp-listing--view-block .hp-listing__categories a,
.hp-listing--view-page .hp-listing__categories a {
	background-color: rgba(15,35,81,0.07) !important;
	color: var(--brand-navy-light) !important;
	border-radius: var(--r-full) !important;
	padding: 0.25rem 0.7rem !important;
	font-size: 0.65rem !important;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	transition: background var(--ease), color var(--ease) !important;
}
.hp-listing--view-block .hp-listing__categories a:hover,
.hp-listing--view-page .hp-listing__categories a:hover {
	background-color: var(--brand-navy) !important;
	color: #fff !important;
}

/* Attribute rows on card (phone, address, etc.) */
.hp-listing--view-block .hp-listing__attribute {
	font-size: 0.8125rem;
	color: var(--gray-500);
	display: flex;
	align-items: center;
	gap: 0.4rem;
	line-height: 1.4;
}
.hp-listing--view-block .hp-listing__attribute i.fas,
.hp-listing--view-block .hp-listing__attribute i.far {
	color: var(--brand-gold);
	width: 14px;
	text-align: center;
	flex-shrink: 0;
}

/* Date */
.hp-listing--view-block .hp-listing__created-date,
.hp-listing--view-page .hp-listing__created-date {
	color: var(--gray-400);
	font-size: 0.65rem;
	letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   8. SINGLE LISTING PAGE - VIEW PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Attributes sidebar card */
.hp-listing--view-page .hp-listing__attributes--primary {
	border: 1px solid var(--color-border) !important;
	border-radius: var(--r-lg) !important;
	box-shadow: var(--shadow-sm) !important;
	background: var(--color-surface) !important;
	padding: 0 !important;
	overflow: hidden;
}
.hp-listing--view-page .hp-listing__attributes--primary .hp-listing__attribute {
	padding: 0.75rem 1.25rem !important;
	background: transparent !important;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
}
.hp-listing--view-page .hp-listing__attributes--primary .hp-listing__attribute:not(:last-child) {
	border-bottom: 1px solid var(--color-border) !important;
	margin-bottom: 0 !important;
	padding-bottom: 0.75rem !important;
}
.hp-listing--view-page .hp-listing__attributes--primary .hp-listing__attribute .hp-listing__attribute-label {
	font-weight: 700;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gray-400);
	min-width: 90px;
	padding-top: 2px;
}

/* Listing images */
.hp-listing__images-slider {
	border-radius: var(--r-md) !important;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.hp-listing__images > img {
	border-radius: var(--r-md) !important;
}
.hp-listing__images-carousel .slick-slide img {
	border-radius: var(--r-xs) !important;
	border: 2px solid transparent !important;
	opacity: 0.65 !important;
	transition: border-color var(--ease), opacity var(--ease) !important;
}
.hp-listing__images-carousel .slick-current img {
	border-color: var(--brand-gold) !important;
	opacity: 1 !important;
}

/* JBD imported fields block (our custom template part) */
.hp-listing__attributes.hp-listing__attributes--view-page {
	border: 1px solid var(--color-border) !important;
	border-radius: var(--r-lg) !important;
	box-shadow: var(--shadow-xs) !important;
	background: var(--color-surface) !important;
	overflow: hidden;
	padding: 0 !important;
	margin-top: 1.5rem !important;
}
.hp-listing__attributes.hp-listing__attributes--view-page > div {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 0.75rem 1.25rem !important;
	border-bottom: 1px solid var(--color-border) !important;
	font-size: 0.875rem;
	line-height: 1.5;
	transition: background var(--ease);
}
.hp-listing__attributes.hp-listing__attributes--view-page > div:last-child {
	border-bottom: none !important;
}
.hp-listing__attributes.hp-listing__attributes--view-page > div:hover {
	background: var(--gray-50);
}
.hp-listing__attributes.hp-listing__attributes--view-page .hp-listing__attribute-label {
	font-size: 0.68rem !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	color: var(--gray-400) !important;
	min-width: 115px !important;
	flex-shrink: 0;
	padding-top: 2px;
}
.hp-listing__attributes.hp-listing__attributes--view-page .hp-listing__attribute-value a {
	color: var(--brand-navy-light);
	font-weight: 600;
	word-break: break-word;
}
.hp-listing__attributes.hp-listing__attributes--view-page .hp-listing__attribute-value a:hover {
	color: var(--brand-gold-dark);
}

/* Verified & claimed badges */
.hp-listing--view-page .hp-listing__verified-badge {
	background: var(--color-verified);
	color: #fff;
	border-radius: var(--r-full);
	padding: 0.2rem 0.65rem;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   9. SEARCH FORM - LISTING / FILTER BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-form--listing-search:not(.header-hero .hp-form--listing-search),
.hp-form--vendor-search {
	border: 1px solid var(--color-border) !important;
	border-radius: var(--r-md) !important;
	box-shadow: var(--shadow-xs) !important;
	background: var(--color-surface) !important;
	padding: 0.5rem !important;
}
.hp-form--listing-search .hp-form__field:not(:last-child),
.hp-form--vendor-search .hp-form__field:not(:last-child),
.hp-form--listing-search .hp-form__fields:not(:last-child),
.hp-form--vendor-search .hp-form__fields:not(:last-child) {
	border-right-color: var(--color-border) !important;
}
.hp-form--listing-search .hp-form__button .button,
.hp-form--vendor-search .hp-form__button .button {
	border-radius: var(--r-sm) !important;
	background: var(--brand-navy) !important;
	color: #fff !important;
	font-weight: 700 !important;
	letter-spacing: 0.02em;
	transition: background var(--ease) !important;
}
.hp-form--listing-search .hp-form__button .button:hover,
.hp-form--vendor-search .hp-form__button .button:hover {
	background: var(--brand-navy-mid) !important;
}

/* All form inputs */
input[type='email'],
input[type='number'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='url'],
select,
textarea {
	border-radius: var(--r-sm) !important;
	border-color: var(--color-border) !important;
	color: var(--gray-900) !important;
	transition: border-color var(--ease), box-shadow var(--ease) !important;
	font-family: var(--font-body) !important;
}
input:focus,
select:focus,
textarea:focus {
	border-color: var(--brand-navy-light) !important;
	box-shadow: 0 0 0 3px rgba(26,58,124,0.12) !important;
	outline: none !important;
}

.hp-field__label {
	color: var(--gray-700);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* Sort dropdown */
.hp-form--listing-sort select,
.hp-form--vendor-sort select {
	border-radius: var(--r-sm) !important;
	border-color: var(--color-border) !important;
	font-size: 0.75rem !important;
	letter-spacing: 0.06em;
	font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   10. BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */
.button {
	font-family: var(--font-heading) !important;
	font-weight: 700 !important;
	letter-spacing: 0.02em !important;
	border-radius: var(--r-sm) !important;
	transition: background var(--ease), color var(--ease), box-shadow var(--ease), transform var(--ease) !important;
	background-image: none !important;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button--primary,
button[type='submit'],
input[type='submit'],
.wp-block-button__link {
	background: var(--brand-navy) !important;
	color: #fff !important;
	background-image: none !important;
	box-shadow: var(--shadow-sm) !important;
	border-radius: var(--r-sm) !important;
}
.button--primary:hover,
button[type='submit']:hover,
input[type='submit']:hover,
.wp-block-button__link:hover {
	background: var(--brand-navy-mid) !important;
	box-shadow: var(--shadow-md) !important;
}

.button--secondary {
	background: var(--brand-gold) !important;
	color: var(--brand-navy) !important;
	background-image: none !important;
	box-shadow: var(--shadow-gold) !important;
}
.button--secondary:hover {
	background: var(--brand-gold-dark) !important;
	color: var(--brand-navy) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   11. PAGINATION
   ═══════════════════════════════════════════════════════════════════════════ */
.pagination > span,
.pagination .nav-links > a,
.pagination .nav-links > span,
.pagination > a,
.pagination ul li a,
.pagination ul li span.current,
.pagination ul li span.dots {
	border: 1px solid var(--color-border) !important;
	border-radius: var(--r-sm) !important;
	width: 2.5rem !important;
	height: 2.5rem !important;
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--gray-700);
	transition: background var(--ease), border-color var(--ease), color var(--ease) !important;
}
.pagination .nav-links > a:hover,
.pagination > a:hover {
	background: var(--gray-100) !important;
	border-color: var(--gray-300) !important;
	color: var(--brand-navy) !important;
}
.pagination .nav-links > span:not(.dots),
.pagination > span:not(.dots),
.pagination ul li span.current:not(.dots) {
	background: var(--brand-navy) !important;
	border-color: var(--brand-navy) !important;
	color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   12. SIDEBAR WIDGETS
   ═══════════════════════════════════════════════════════════════════════════ */
.widget--sidebar {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-xs);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}
.widget__title {
	font-family: var(--font-heading);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gray-900);
	padding-top: 1rem;
	position: relative;
}
.widget--footer .widget__title {
	color: #fff;
}

/* Tag cloud */
.tagcloud a,
.wp-block-tag-cloud a {
	border: 1px solid var(--color-border) !important;
	border-radius: var(--r-full) !important;
	font-size: 0.75rem !important;
	padding: 0.25rem 0.75rem !important;
	font-weight: 600;
	color: var(--gray-600) !important;
	transition: background var(--ease), border-color var(--ease), color var(--ease) !important;
	display: inline-block;
}
.tagcloud a:hover,
.wp-block-tag-cloud a:hover {
	background: var(--brand-navy) !important;
	border-color: var(--brand-navy) !important;
	color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   13. REVIEWS
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-review--view-block {
	border: 1px solid var(--color-border) !important;
	border-radius: var(--r-md) !important;
	box-shadow: var(--shadow-xs) !important;
	background: var(--color-surface) !important;
	padding: 1.25rem !important;
	transition: box-shadow var(--ease) !important;
}
.hp-review--view-block:hover {
	box-shadow: var(--shadow-sm) !important;
}

/* Star color */
.hp-rating i { color: var(--brand-gold); }

/* ═══════════════════════════════════════════════════════════════════════════
   14. LISTING PACKAGES / PRICING
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-listing-package--view-block {
	border: 1px solid var(--color-border) !important;
	border-radius: var(--r-lg) !important;
	box-shadow: var(--shadow-xs) !important;
	overflow: hidden;
	transition: transform var(--ease), box-shadow var(--ease) !important;
	background: var(--color-surface);
}
.hp-listing-package--view-block:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md) !important;
}
.hp-listing-package--view-block .hp-listing-package__header {
	background: var(--brand-navy) !important;
	color: #fff !important;
	padding: 1.5rem;
}
.hp-listing-package--view-block .hp-listing-package__price {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 800;
	color: var(--brand-gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   15. MAP
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-map {
	border-radius: var(--r-md) !important;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border);
}

/* ═══════════════════════════════════════════════════════════════════════════
   16. STATUS BADGES
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-status {
	border-radius: var(--r-full) !important;
	font-size: 0.65rem !important;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	padding: 0.2rem 0.65rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   17. FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer-widgets {
	background: var(--gray-900) !important;
	color: rgba(255,255,255,0.65);
}
.footer-widgets .widget__title::before,
.widget--footer .widget__title::before {
	background-color: var(--brand-gold) !important;
	background-image: none !important;
}
.footer-widgets a {
	color: rgba(255,255,255,0.60);
	transition: color var(--ease);
}
.footer-widgets a:hover { color: var(--brand-gold); }
.footer-widgets p,
.footer-widgets li {
	color: rgba(255,255,255,0.55);
	font-size: 0.875rem;
	line-height: 1.75;
}
.footer-widgets li { margin-bottom: 0.375rem; }

/* Footer bottom bar */
.footer-bar,
.site-footer .footer-bar {
	background: rgba(0,0,0,0.30) !important;
	border-top: 1px solid rgba(255,255,255,0.06);
	color: rgba(255,255,255,0.40);
	font-size: 0.8125rem;
}
.footer-bar a { color: rgba(255,255,255,0.50); }
.footer-bar a:hover { color: var(--brand-gold); }

/* ═══════════════════════════════════════════════════════════════════════════
   18. UTILITY: RESULTS HEADER (count + sort)
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-results { color: var(--gray-500); font-size: 0.875rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   19. RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
	.header-hero--cover .title,
	.header-hero--cover h1 { font-size: 2rem; }
}

@media (max-width: 640px) {
	.hp-listing--view-block { border-radius: var(--r-md) !important; }
	.hp-listing-category--view-block { border-radius: var(--r-md) !important; }

	.hp-listing__attributes.hp-listing__attributes--view-page .hp-listing__attribute-label {
		min-width: 85px !important;
	}

	.header-hero .hp-form--listing-search,
	.header-hero .hp-form--primary {
		flex-direction: column;
		border-radius: var(--r-lg) !important;
		padding: 0.75rem !important;
		gap: 0.5rem !important;
	}
	.header-hero .hp-form--listing-search .hp-form__button .button,
	.header-hero .hp-form--primary .hp-form__button .button {
		border-radius: var(--r-sm) !important;
		width: 100%;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   SHARED LAYOUT UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */
.jbd-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.jbd-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1.375rem;
	border-radius: var(--r-sm);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.jbd-btn:hover { transform: translateY(-2px); text-decoration: none !important; }
/* !important overrides the global a{color} rule so button text is always readable */
.jbd-btn--primary  { background: var(--brand-navy) !important; color: #fff !important; }
.jbd-btn--primary:hover { background: var(--brand-navy-mid) !important; color: #fff !important; box-shadow: var(--shadow-md); }
.jbd-btn--gold     { background: var(--brand-gold) !important; color: var(--brand-navy) !important; }
.jbd-btn--gold:hover { background: var(--brand-gold-dark) !important; color: var(--brand-navy) !important; box-shadow: var(--shadow-gold); }
/* Outline: use gray-400 border so the button is clearly visible */
.jbd-btn--outline  { background: transparent !important; color: var(--brand-navy) !important; border-color: var(--gray-400) !important; }
.jbd-btn--outline:hover { border-color: var(--brand-navy) !important; background: var(--gray-100) !important; color: var(--brand-navy) !important; }
.jbd-btn--ghost    { background: rgba(255,255,255,0.12) !important; color: #fff !important; border-color: rgba(255,255,255,0.40) !important; }
.jbd-btn--ghost:hover { background: rgba(255,255,255,0.22) !important; color: #fff !important; }
.jbd-btn--full     { width: 100%; justify-content: center; }

/* ── HivePress action links (Favorites, Write a Review, Report Listing)
   The customizer sets .hp-link:hover to #ffc107 (yellow on white = unreadable).
   Override to brand-navy for consistent, high-contrast hover state.        ── */
.hp-listing__action.hp-link,
.hp-listing__actions .hp-link {
	color: var(--gray-700) !important;
}
.hp-listing__action.hp-link:hover,
.hp-listing__actions .hp-link:hover,
.hp-listing__action.hp-link:hover i,
.hp-listing__actions .hp-link:hover i {
	color: var(--brand-navy) !important;
	text-decoration: none;
}

.jbd-section {
	padding: 4rem 0;
}
.jbd-section__header {
	text-align: center;
	margin-bottom: 2.5rem;
}
.jbd-section__eyebrow {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--brand-gold-dark);
	background: rgba(245,166,35,0.10);
	padding: 0.3rem 0.85rem;
	border-radius: var(--r-full);
	margin-bottom: 0.75rem;
}
.jbd-section__title {
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	font-weight: 800;
	color: var(--gray-900);
	margin: 0 0 0.75rem;
	letter-spacing: -0.03em;
}
.jbd-section__subtitle {
	font-size: 1rem;
	color: var(--gray-500);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.65;
}
.jbd-section__cta {
	text-align: center;
	margin-top: 2.25rem;
}

.jbd-breadcrumb ol {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.8125rem;
}
.jbd-breadcrumb li { display: flex; align-items: center; gap: 0.375rem; color: var(--gray-400); }
.jbd-breadcrumb li::after { content: '/'; color: var(--gray-300); }
.jbd-breadcrumb li:last-child::after { display: none; }
.jbd-breadcrumb a { color: var(--gray-500); text-decoration: none; }
.jbd-breadcrumb a:hover { color: var(--brand-navy); }
.jbd-breadcrumb--light li { color: rgba(255,255,255,0.60); }
.jbd-breadcrumb--light li::after { color: rgba(255,255,255,0.30); }
.jbd-breadcrumb--light a { color: rgba(255,255,255,0.75); }
.jbd-breadcrumb--light a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE - STATS BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.jbd-stats {
	background: var(--brand-navy);
	padding: 1.125rem 0;
}
.jbd-stats__grid {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
}
.jbd-stats__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.5rem 2.5rem;
}
.jbd-stats__number {
	font-family: var(--font-heading);
	font-size: 1.375rem;
	font-weight: 800;
	color: var(--brand-gold);
	line-height: 1.2;
}
.jbd-stats__label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.55);
	margin-top: 0.2rem;
}
.jbd-stats__divider {
	width: 1px;
	height: 2rem;
	background: rgba(255,255,255,0.12);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE - CATEGORY GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.jbd-categories-section { background: var(--color-surface); }
.jbd-categories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}
.jbd-cat-card {
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	aspect-ratio: 4/3;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-decoration: none;
	box-shadow: var(--shadow-sm);
	transition: transform var(--ease), box-shadow var(--ease);
}
.jbd-cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.jbd-cat-card__image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.4s ease;
}
.jbd-cat-card:hover .jbd-cat-card__image { transform: scale(1.06); }
.jbd-cat-card__image--placeholder {
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-light) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}
.jbd-cat-card__image--placeholder i {
	font-size: 2.5rem;
	color: rgba(255,255,255,0.25);
}
.jbd-cat-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15,35,81,0.90) 0%, rgba(15,35,81,0.20) 55%, transparent 100%);
}
.jbd-cat-card__body {
	position: relative;
	z-index: 1;
	padding: 1.25rem;
}
.jbd-cat-card__count {
	display: block;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-gold);
	margin-bottom: 0.25rem;
}
.jbd-cat-card__name {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.25;
	text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE - FEATURED LISTINGS
   ═══════════════════════════════════════════════════════════════════════════ */
.jbd-listings-section { background: var(--color-bg); }
.jbd-listings-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
	gap: 1.5rem;
	justify-content: center;
}
.jbd-listing-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-xs);
	transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.jbd-listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(15,35,81,0.15); }
.jbd-listing-card__image-link { position: relative; display: block; overflow: hidden; }
.jbd-listing-card__image {
	height: 190px;
	background-size: cover;
	background-position: center;
	transition: transform 0.4s ease;
}
.jbd-listing-card:hover .jbd-listing-card__image { transform: scale(1.05); }
.jbd-listing-card__image--placeholder {
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-light) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}
.jbd-listing-card__image--placeholder i { font-size: 3rem; color: rgba(255,255,255,0.20); }
.jbd-listing-card__badge {
	position: absolute;
	top: 0.875rem;
	left: 0.875rem;
	background: var(--brand-navy);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	padding: 0.25rem 0.65rem;
	border-radius: var(--r-full);
}
.jbd-listing-card__body { padding: 1.125rem 1.25rem; flex: 1; }
.jbd-listing-card__title { margin: 0 0 0.625rem; }
.jbd-listing-card__title a {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: var(--gray-900);
	text-decoration: none;
	line-height: 1.35;
	transition: color var(--ease);
}
.jbd-listing-card__title a:hover { color: var(--brand-navy-light); }
.jbd-listing-card__rating {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	margin-bottom: 0.75rem;
}
.jbd-stars i { color: var(--brand-gold); font-size: 0.8rem; }
.jbd-stars .jbd-star--empty { color: var(--gray-300); }
.jbd-listing-card__rating-value { font-weight: 700; font-size: 0.875rem; color: var(--gray-700); }
.jbd-listing-card__review-count { font-size: 0.75rem; color: var(--gray-400); }
.jbd-listing-card__meta { display: flex; flex-direction: column; gap: 0.375rem; }
.jbd-listing-card__meta-item {
	display: flex;
	align-items: flex-start;
	gap: 0.4rem;
	font-size: 0.8125rem;
	color: var(--gray-500);
	line-height: 1.4;
}
.jbd-listing-card__meta-item i { color: var(--brand-gold); margin-top: 2px; flex-shrink: 0; width: 14px; }
.jbd-listing-card__footer {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.875rem 1.25rem;
	border-top: 1px solid var(--color-border);
	background: var(--gray-50);
}
.jbd-listing-card__view-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.5rem 0.875rem;
	background: var(--brand-navy);
	color: #fff;
	border-radius: var(--r-sm);
	font-size: 0.8125rem;
	font-weight: 700;
	text-decoration: none;
	transition: background var(--ease);
}
.jbd-listing-card__view-btn:hover { background: var(--brand-navy-mid); color: #fff; }
.jbd-listing-card__call-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.375rem;
	height: 2.375rem;
	background: rgba(245,166,35,0.10);
	color: var(--brand-gold-dark);
	border-radius: var(--r-sm);
	text-decoration: none;
	transition: background var(--ease);
}
.jbd-listing-card__call-btn:hover { background: var(--brand-gold); color: var(--brand-navy); }

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE - HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════════ */
.jbd-how-section { background: var(--brand-navy); }
.jbd-how-section .jbd-section__eyebrow { color: var(--brand-gold); background: rgba(245,166,35,0.15); }
.jbd-how-section .jbd-section__title { color: #fff; }
.jbd-steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
}
.jbd-step {
	flex: 1;
	max-width: 280px;
	text-align: center;
	padding: 2rem 1.5rem;
	position: relative;
}
.jbd-step__icon {
	width: 72px;
	height: 72px;
	border-radius: var(--r-full);
	background: rgba(255,255,255,0.08);
	border: 2px solid rgba(255,255,255,0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.625rem;
	color: var(--brand-gold);
	transition: background var(--ease), border-color var(--ease);
}
.jbd-step:hover .jbd-step__icon { background: rgba(245,166,35,0.15); border-color: var(--brand-gold); }
.jbd-step__number {
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: var(--brand-gold);
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}
.jbd-step__title { font-size: 1.125rem; font-weight: 700; color: #fff; margin: 0 0 0.625rem; }
.jbd-step__desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin: 0; }
.jbd-step__connector {
	flex-shrink: 0;
	padding-top: 3rem;
	color: rgba(255,255,255,0.20);
	font-size: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE - BLOG POSTS
   ═══════════════════════════════════════════════════════════════════════════ */
.jbd-blog-section { background: var(--color-surface); }
.jbd-blog-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

/* ── Base card ──────────────────────────────────────────────────────────── */
.jbd-post-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow-xs);
	transition: transform var(--ease), box-shadow var(--ease);
	display: flex;
	flex-direction: column;
}
.jbd-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

/* ── Large cards: first 2 - horizontal layout, span 2 of 4 cols ─────────── */
.jbd-post-card--large {
	grid-column: span 2;
	flex-direction: row;
}
.jbd-post-card--large .jbd-post-card__image-link {
	width: 52%;
	min-width: 52%;
	flex-shrink: 0;
}
.jbd-post-card--large .jbd-post-card__image {
	height: 100%;
	aspect-ratio: unset;
}
.jbd-post-card--large .jbd-post-card__title a { font-size: 1.125rem; }
.jbd-post-card--large .jbd-post-card__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ── Compact cards: posts 3-6 - standard vertical layout ────────────────── */
.jbd-post-card--compact { grid-column: span 1; }
.jbd-post-card--compact .jbd-post-card__image { aspect-ratio: 4/3; }
.jbd-post-card--compact .jbd-post-card__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: none;
}

/* ── Image block ─────────────────────────────────────────────────────────── */
.jbd-post-card__image-link { display: block; overflow: hidden; flex-shrink: 0; }
.jbd-post-card__image { overflow: hidden; aspect-ratio: 16/9; }
.jbd-post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.jbd-post-card:hover .jbd-post-card__image img { transform: scale(1.05); }

/* Placeholder when no featured image */
.jbd-post-card__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
	min-height: 160px;
}
.jbd-post-card__image--placeholder i { font-size: 2.5rem; color: rgba(255,255,255,0.25); }
.jbd-post-card--large .jbd-post-card__image--placeholder { min-height: 100%; }

/* ── Card body ───────────────────────────────────────────────────────────── */
.jbd-post-card__body { padding: 1.375rem; flex: 1; display: flex; flex-direction: column; }
.jbd-post-card--large .jbd-post-card__body { padding: 1.75rem; justify-content: center; }
.jbd-post-card__cat {
	display: inline-block;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-gold-dark);
	background: rgba(245,166,35,0.10);
	padding: 0.2rem 0.6rem;
	border-radius: var(--r-full);
	margin-bottom: 0.625rem;
}
.jbd-post-card__title { margin: 0 0 0.625rem; }
.jbd-post-card__title a { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--gray-900); text-decoration: none; line-height: 1.35; transition: color var(--ease); }
.jbd-post-card__title a:hover { color: var(--brand-navy-light); }
.jbd-post-card__meta { display: flex; align-items: center; gap: 1rem; font-size: 0.75rem; color: var(--gray-400); margin-bottom: 0.75rem; flex-wrap: wrap; }
.jbd-post-card__meta i { color: var(--brand-gold); margin-right: 0.2rem; }
.jbd-post-card__excerpt { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.jbd-post-card__readmore {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--brand-navy-light);
	text-decoration: none;
	margin-top: auto;
	transition: gap var(--ease), color var(--ease);
}
.jbd-post-card__readmore:hover { color: var(--brand-gold-dark); gap: 0.625rem; }

/* ── Blog section footer (View All button) ───────────────────────────────── */
.jbd-blog-section__footer {
	text-align: center;
	margin-top: 2.5rem;
}
.jbd-btn--outline-dark {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 2rem;
	border: 2px solid var(--brand-navy);
	border-radius: var(--r-full);
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--brand-navy);
	background: transparent;
	text-decoration: none;
	transition: background var(--ease), color var(--ease);
}
.jbd-btn--outline-dark:hover {
	background: var(--brand-navy);
	color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE - CTA BANNER
   ═══════════════════════════════════════════════════════════════════════════ */
.jbd-cta-banner { background: linear-gradient(135deg, var(--brand-gold) 0%, #f0a000 100%); padding: 3.5rem 0; }
.jbd-cta-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}
.jbd-cta-banner__text h2 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); font-weight: 800; color: var(--brand-navy); margin: 0 0 0.5rem; }
.jbd-cta-banner__text p { font-size: 1rem; color: rgba(15,35,81,0.70); margin: 0; max-width: 480px; line-height: 1.6; }
.jbd-cta-banner__actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.jbd-cta-banner .jbd-btn--gold { background: var(--brand-navy); color: #fff; box-shadow: 0 4px 16px rgba(15,35,81,0.25); }
.jbd-cta-banner .jbd-btn--gold:hover { background: var(--brand-navy-mid); }
.jbd-cta-banner .jbd-btn--ghost { border-color: rgba(15,35,81,0.25); color: var(--brand-navy); background: rgba(15,35,81,0.08); }
.jbd-cta-banner .jbd-btn--ghost:hover { background: rgba(15,35,81,0.15); }

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE TEMPLATE
   ═══════════════════════════════════════════════════════════════════════════ */
.jbd-page-wrap { padding-bottom: 4rem; }
.jbd-page-hero {
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
	padding: 3rem 0 2.5rem;
	margin-bottom: 2.5rem;
}
.jbd-page-hero__title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: #fff; margin: 0; letter-spacing: -0.03em; }
.jbd-page-layout { max-width: 860px; margin: 0 auto; }
.jbd-page-content { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-lg); box-shadow: var(--shadow-xs); overflow: hidden; }
.jbd-page-content__featured-image { overflow: hidden; max-height: 420px; }
.jbd-page-content__featured-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jbd-page-content__body { padding: 2.5rem; font-size: 1rem; line-height: 1.8; color: var(--color-text); }
.jbd-page-content__body h2 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-top: 2rem; }
.jbd-page-content__body h3 { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-top: 1.75rem; }
.jbd-page-content__body p { margin-bottom: 1.25rem; }
.jbd-page-content__body img { border-radius: var(--r-md); }

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE POST TEMPLATE
   ═══════════════════════════════════════════════════════════════════════════ */
.jbd-post-wrap { padding-bottom: 4rem; }
.jbd-post-hero {
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
	padding: 3rem 0 2.75rem;
	margin-bottom: 2.5rem;
	position: relative;
	overflow: hidden;
}
.jbd-post-hero--has-image { min-height: 500px; display: flex; flex-direction: column; justify-content: flex-end; }
.jbd-post-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: blur(0); transition: filter 0.3s; }
.jbd-post-hero__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,24,60,0.90) 0%, rgba(10,24,60,0.55) 55%, rgba(10,24,60,0.25) 100%); }
.jbd-post-hero .jbd-container { position: relative; z-index: 1; }
.jbd-post-hero__cats { display: flex; gap: 0.5rem; margin-bottom: 0.875rem; flex-wrap: wrap; }
.jbd-post-hero__cat-badge {
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-navy);
	background: var(--brand-gold);
	padding: 0.25rem 0.75rem;
	border-radius: var(--r-full);
	text-decoration: none;
}
.jbd-post-hero__title { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 800; color: #fff; margin: 0 0 1rem; letter-spacing: -0.03em; line-height: 1.2; max-width: 720px; }
.jbd-post-hero__meta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.jbd-post-hero__meta-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8125rem; color: rgba(255,255,255,0.70); }
.jbd-post-hero__meta-sep { color: rgba(255,255,255,0.30); }
.jbd-post-hero__avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.30); }
.jbd-post-hero i { color: var(--brand-gold); }

.jbd-post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; }
.jbd-post-article { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-lg); box-shadow: var(--shadow-xs); overflow: hidden; }
.jbd-post-article__content { padding: 2.5rem; font-size: 1rem; line-height: 1.85; color: var(--color-text); }
.jbd-post-article__content h2 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--color-border); }
.jbd-post-article__content h3 { font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin-top: 1.5rem; }
.jbd-post-article__content p { margin-bottom: 1.25rem; }
.jbd-post-article__content img { border-radius: var(--r-md); max-width: 100%; }
.jbd-post-article__content blockquote { border-left: 4px solid var(--brand-gold); background: var(--gray-50); padding: 1.25rem 1.5rem; border-radius: 0 var(--r-md) var(--r-md) 0; margin: 1.5rem 0; font-style: italic; color: var(--gray-600); }

.jbd-post-tags { padding: 1.25rem 2.5rem; border-top: 1px solid var(--color-border); display: flex; align-items: center; gap: 0.625rem; flex-wrap: wrap; }
.jbd-post-tags__label { font-size: 0.8125rem; font-weight: 700; color: var(--gray-500); }
.jbd-post-tags__tag { font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.65rem; border: 1px solid var(--color-border); border-radius: var(--r-full); color: var(--gray-600); text-decoration: none; transition: background var(--ease), border-color var(--ease), color var(--ease); }
.jbd-post-tags__tag:hover { background: var(--brand-navy); border-color: var(--brand-navy); color: #fff; }

/* Suburb / city tag row on single posts */
.jbd-suburb-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 1.25rem 2.5rem; border-top: 1px solid var(--color-border); }
.jbd-suburb-tags__label { font-size: 0.8125rem; font-weight: 700; color: var(--gray-500); margin-right: 4px; }
.jbd-suburb-tags__tag { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 9999px; border: 1px solid var(--brand-navy); color: var(--brand-navy); text-decoration: none; transition: background .15s, color .15s; }
.jbd-suburb-tags__tag:hover { background: var(--brand-navy); color: #fff; }
.jbd-suburb-tags__tag i { font-size: .65em; }

.jbd-post-nav { padding: 1.25rem 2.5rem; border-top: 1px solid var(--color-border); }
.jbd-post-nav__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.jbd-post-nav__item { display: flex; flex-direction: column; gap: 0.25rem; text-decoration: none; padding: 0.875rem; border: 1px solid var(--color-border); border-radius: var(--r-md); transition: border-color var(--ease), background var(--ease); }
.jbd-post-nav__item:hover { border-color: var(--brand-navy); background: var(--gray-50); }
.jbd-post-nav__item--next { text-align: right; }
.jbd-post-nav__dir { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); }
.jbd-post-nav__title { font-size: 0.875rem; font-weight: 700; color: var(--gray-900); line-height: 1.35; }

.jbd-author-box { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem 2.5rem; border-top: 1px solid var(--color-border); background: var(--gray-50); }
.jbd-author-box__avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--color-surface); box-shadow: var(--shadow-xs); }
.jbd-author-box__label { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 0.2rem; }
.jbd-author-box__name { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin: 0 0 0.375rem; }
.jbd-author-box__bio { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; margin: 0 0 0.625rem; }
.jbd-author-box__link { font-size: 0.8125rem; font-weight: 700; color: var(--brand-navy-light); text-decoration: none; display: inline-flex; align-items: center; gap: 0.375rem; transition: color var(--ease), gap var(--ease); }
.jbd-author-box__link:hover { color: var(--brand-gold-dark); gap: 0.625rem; }

.jbd-related-posts { padding: 2rem 2.5rem; border-top: 1px solid var(--color-border); }
.jbd-related-posts__title { font-size: 1rem; font-weight: 800; color: var(--gray-900); margin: 0 0 1.25rem; }
.jbd-related-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.jbd-related-card { display: flex; flex-direction: column; border: 1px solid var(--color-border); border-radius: var(--r-md); overflow: hidden; text-decoration: none; transition: border-color var(--ease), transform var(--ease); }
.jbd-related-card:hover { border-color: var(--brand-navy); transform: translateY(-2px); }
.jbd-related-card__image { aspect-ratio: 16/9; overflow: hidden; }
.jbd-related-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.jbd-related-card:hover .jbd-related-card__image img { transform: scale(1.06); }
.jbd-related-card__body { padding: 0.75rem; }
.jbd-related-card__date { font-size: 0.65rem; color: var(--gray-400); font-weight: 600; display: block; margin-bottom: 0.25rem; }
.jbd-related-card__title { font-size: 0.8125rem; font-weight: 700; color: var(--gray-900); line-height: 1.35; margin: 0; }

.jbd-post-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 80px; }
.jbd-sidebar-widget { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-lg); box-shadow: var(--shadow-xs); padding: 1.375rem; }
.jbd-sidebar-widget__title { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-900); margin: 0 0 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--brand-gold); display: inline-block; }
.jbd-sidebar-recent { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.875rem; }
.jbd-sidebar-recent__item { display: flex; gap: 0.75rem; align-items: flex-start; }
.jbd-sidebar-recent__thumb { flex-shrink: 0; width: 60px; height: 60px; border-radius: var(--r-sm); overflow: hidden; display: block; }
.jbd-sidebar-recent__thumb img { width: 100%; height: 100%; object-fit: cover; }
.jbd-sidebar-recent__info { flex: 1; }
.jbd-sidebar-recent__title { font-size: 0.8125rem; font-weight: 700; color: var(--gray-900); text-decoration: none; line-height: 1.35; display: block; transition: color var(--ease); }
.jbd-sidebar-recent__title:hover { color: var(--brand-navy-light); }
.jbd-sidebar-recent__date { font-size: 0.7rem; color: var(--gray-400); margin-top: 0.2rem; display: block; }
.jbd-sidebar-cats { list-style: none; padding: 0; margin: 0; }
.jbd-sidebar-cats li { border-bottom: 1px solid var(--color-border); }
.jbd-sidebar-cats li:last-child { border-bottom: none; }
.jbd-sidebar-cats a { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; font-size: 0.875rem; color: var(--gray-700); text-decoration: none; transition: color var(--ease); }
.jbd-sidebar-cats a:hover { color: var(--brand-navy-light); }
.jbd-sidebar-cats__count { font-size: 0.7rem; font-weight: 700; background: var(--gray-100); color: var(--gray-500); padding: 0.15rem 0.5rem; border-radius: var(--r-full); }
.jbd-sidebar-widget--cta { background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%); border-color: transparent; text-align: center; }
.jbd-sidebar-cta__icon { font-size: 2rem; color: var(--brand-gold); margin-bottom: 0.75rem; display: block; }
.jbd-sidebar-widget--cta h4 { color: #fff; font-size: 1rem; font-weight: 700; margin: 0 0 0.5rem; }
.jbd-sidebar-widget--cta p { color: rgba(255,255,255,0.65); font-size: 0.875rem; margin: 0 0 1.125rem; line-height: 1.55; }

/* ── Directory categories sidebar widget ─────────────────────────────────── */
.jbd-sidebar-dircats__list { font-size: 0.72rem; line-height: 1.7; color: var(--gray-600); margin: 0; }
.jbd-sidebar-dircats__link { color: var(--brand-navy); text-decoration: none; font-size: 0.72rem; }
.jbd-sidebar-dircats__link:hover { text-decoration: underline; color: var(--brand-gold); }

/* ── Directory categories in single post body ─────────────────────────────── */
.jbd-post-dircats { padding: 1.25rem 2.5rem; border-top: 1px solid var(--color-border); }
.jbd-post-dircats__title { font-size: 0.8rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .04em; margin: 0 0 .5rem; }
.jbd-post-dircats__list { font-size: 0.72rem; line-height: 1.8; color: var(--gray-600); margin: 0; }
.jbd-post-dircats__link { color: var(--brand-navy); text-decoration: none; }
.jbd-post-dircats__link:hover { text-decoration: underline; color: var(--brand-gold); }

/* ── Pin Directory sidebar widget ────────────────────────────────────────── */
.jbd-sidebar-pin-dir .jbd-sidebar-widget__title i { color: var(--brand-gold); margin-right: 0.3rem; }
.jbd-pin-dir-list { list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-direction: column; gap: 0.875rem; }
.jbd-pin-dir-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.jbd-pin-dir-item__thumb { flex-shrink: 0; width: 54px; height: 54px; border-radius: var(--r-md); overflow: hidden; display: block; border: 1px solid var(--color-border); }
.jbd-pin-dir-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jbd-pin-dir-item__thumb--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
}
.jbd-pin-dir-item__thumb--empty i { font-size: 1.25rem; color: rgba(255,255,255,0.35); }
.jbd-pin-dir-item__info { flex: 1; min-width: 0; }
.jbd-pin-dir-item__name {
	display: block;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--gray-900);
	text-decoration: none;
	line-height: 1.3;
	margin-bottom: 0.2rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color var(--ease);
}
.jbd-pin-dir-item__name:hover { color: var(--brand-navy-light); }
.jbd-pin-dir-item__cat { display: block; font-size: 0.7rem; color: var(--gray-400); margin-bottom: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jbd-pin-dir-item__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 0.15rem 0.45rem;
	border-radius: var(--r-full);
}
.jbd-pin-dir-item__badge--pin { background: rgba(15,35,81,0.10); color: var(--brand-navy); }
.jbd-pin-dir-item__badge--feat { background: rgba(245,166,35,0.15); color: var(--brand-gold-dark); }
.jbd-pin-dir-more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--brand-navy-light);
	text-decoration: none;
	padding-top: 0.75rem;
	border-top: 1px solid var(--color-border);
	transition: color var(--ease), gap var(--ease);
}
.jbd-pin-dir-more:hover { color: var(--brand-gold-dark); gap: 0.625rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE POST - FEATURED LISTING PROMO BANNER
   ═══════════════════════════════════════════════════════════════════════════ */
.jbd-feat-promo {
	background: linear-gradient(135deg, var(--brand-navy) 0%, #1a3a72 100%);
	border-top: 3px solid var(--brand-gold);
	border-bottom: 3px solid var(--brand-gold);
	padding: 1.5rem 0;
}
.jbd-feat-promo__inner {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	flex-wrap: wrap;
}
.jbd-feat-promo__badge-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	flex-shrink: 0;
}
.jbd-feat-promo__star-ring {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--brand-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--brand-navy);
	box-shadow: 0 0 0 4px rgba(245,166,35,0.25);
	flex-shrink: 0;
}
.jbd-feat-promo__label {
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--brand-gold);
}
.jbd-feat-promo__text { flex: 1; min-width: 220px; }
.jbd-feat-promo__headline {
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 0.375rem;
	letter-spacing: -0.02em;
	line-height: 1.25;
}
.jbd-feat-promo__sub {
	font-size: 0.875rem;
	color: rgba(255,255,255,0.70);
	line-height: 1.55;
	margin: 0;
}
.jbd-feat-promo__action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	flex-shrink: 0;
	min-width: 180px;
}
.jbd-feat-promo__price {
	font-size: 0.8125rem;
	color: rgba(255,255,255,0.65);
	text-align: center;
}
.jbd-feat-promo__price strong { color: var(--brand-gold); font-weight: 800; font-size: 1rem; }
.jbd-feat-promo__btn { width: 100%; justify-content: center; white-space: nowrap; }
.jbd-feat-promo__secondary {
	font-size: 0.75rem;
	color: rgba(255,255,255,0.55);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	transition: color var(--ease);
}
.jbd-feat-promo__secondary:hover { color: var(--brand-gold); }

/* ── Get Featured sidebar upsell widget ─────────────────────────────────── */
.jbd-sidebar-feat-upsell {
	background: linear-gradient(160deg, var(--brand-navy) 0%, #1e3a7a 100%);
	border-color: transparent;
	position: relative;
	overflow: hidden;
}
.jbd-sidebar-feat-upsell::before {
	content: '';
	position: absolute;
	top: -30px;
	right: -30px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(245,166,35,0.08);
	pointer-events: none;
}
.jbd-feat-upsell__header {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 0.875rem;
}
.jbd-feat-upsell__icon-ring {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--brand-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	color: var(--brand-navy);
	flex-shrink: 0;
	box-shadow: 0 0 0 3px rgba(245,166,35,0.20);
}
.jbd-feat-upsell__eyebrow {
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--brand-gold);
}
.jbd-feat-upsell__headline {
	font-size: 0.9375rem;
	font-weight: 800;
	color: #fff;
	margin: 0 0 0.5rem;
	line-height: 1.3;
}
.jbd-feat-upsell__desc {
	font-size: 0.8125rem;
	color: rgba(255,255,255,0.65);
	line-height: 1.55;
	margin: 0 0 0.875rem;
}
.jbd-feat-upsell__benefits {
	list-style: none;
	padding: 0;
	margin: 0 0 1.125rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.jbd-feat-upsell__benefits li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	color: rgba(255,255,255,0.80);
}
.jbd-feat-upsell__benefits i { color: var(--brand-gold); font-size: 0.75rem; flex-shrink: 0; }
.jbd-feat-upsell__link {
	display: block;
	text-align: center;
	margin-top: 0.75rem;
	font-size: 0.75rem;
	color: rgba(255,255,255,0.45);
	text-decoration: none;
	transition: color var(--ease);
}
.jbd-feat-upsell__link span { color: rgba(255,255,255,0.70); text-decoration: underline; }
.jbd-feat-upsell__link:hover { color: rgba(255,255,255,0.75); }

/* Responsive */
@media (max-width: 768px) {
	.jbd-feat-promo__inner { gap: 1.25rem; }
	.jbd-feat-promo__badge-wrap { flex-direction: row; }
	.jbd-feat-promo__action { width: 100%; }
	.jbd-feat-promo__btn { max-width: 280px; }
}
@media (max-width: 480px) {
	.jbd-feat-promo__badge-wrap { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CITY PAGE - ARTICLE / GUIDE SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.jbd-city-article {
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: var(--r-lg);
	padding: 40px 40px;
}
.jbd-city-article__title {
	font-size: clamp(1.2rem, 2.5vw, 1.5rem);
	font-weight: 800;
	color: var(--brand-navy);
	margin: 0 0 2rem;
	line-height: 1.3;
}
.jbd-city-article__h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 3rem 0 1rem;
	border-left: 3px solid var(--brand-gold);
	padding-left: 0.875rem;
	line-height: 1.35;
}
.jbd-city-article__p {
	font-size: 0.9375rem;
	line-height: 1.9;
	color: var(--gray-700);
	margin: 0 0 1.4rem;
}
.jbd-city-article__p:last-child { margin-bottom: 0; }
.jbd-city-article__wiki {
	background: var(--gray-100);
	border-radius: var(--r-md);
	padding: 1rem 1.5rem;
	font-size: 0.875rem;
	color: var(--gray-600);
	margin-bottom: 1.5rem;
}
.jbd-city-article__ext-icon {
	font-size: 0.75em;
	color: var(--gray-400);
	margin-right: 0.35rem;
}
.jbd-city-article__inlink {
	color: var(--brand-navy-light);
	text-decoration: underline;
	text-decoration-color: rgba(41,82,163,0.35);
	text-underline-offset: 2px;
	transition: color var(--ease), text-decoration-color var(--ease);
}
.jbd-city-article__inlink:hover {
	color: var(--brand-gold-dark);
	text-decoration-color: var(--brand-gold-dark);
}
.jbd-city-article a[target="_blank"] {
	color: var(--brand-navy-light);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.jbd-city-article a[target="_blank"]:hover { color: var(--brand-gold-dark); }

@media (max-width: 768px) {
	.jbd-city-article { padding: 30px; }
	.jbd-city-article__p, .jbd-city-article__wiki { max-width: 100%; }
}
@media (max-width: 480px) {
	.jbd-city-article { padding: 30px; }
	.jbd-city-article__title { font-size: 1.125rem; }
	.jbd-city-article__h3 { font-size: 0.9375rem; }
	.jbd-city-article__p { font-size: 0.875rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE LISTING - PROFESSIONAL PROFILE
   ═══════════════════════════════════════════════════════════════════════════ */
/* ── Single listing map ───────────────────────────────────────────────────── */
.jbd-listing-map {
	position: relative;
	width: 100%;
	height: 420px;
	border-radius: var(--r-lg);
	overflow: hidden;
	margin-bottom: 1.5rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border);
	background: var(--gray-100);
}
.jbd-listing-map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
@media (max-width: 768px) {
	.jbd-listing-map { height: 280px; border-radius: var(--r-md); }
}
@media (max-width: 480px) {
	.jbd-listing-map { height: 220px; border-radius: var(--r-sm); }
}

.jbd-listing-header {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-xs);
	padding: 1.75rem 2rem;
	margin-bottom: 1.5rem;
}
/* Top row: name+badges LEFT, action buttons RIGHT - all on the same baseline */
.jbd-listing-header__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
	flex-wrap: nowrap;             /* keep on one row; name-wrap shrinks if needed */
	width: 100%;
}
.jbd-listing-header__name-wrap {
	flex: 1 1 0;
	min-width: 0;                  /* allow text to truncate rather than overflow */
}
.jbd-listing-header__name {
	font-size: clamp(1.25rem, 2.5vw, 1.875rem);
	font-weight: 800;
	color: var(--gray-900);
	margin: 0 0 0.5rem;
	letter-spacing: -0.025em;
	line-height: 1.2;
}
.jbd-listing-header__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.jbd-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	padding: 0.25rem 0.7rem;
	border-radius: var(--r-full);
	text-decoration: none;
	white-space: nowrap;
}
.jbd-badge--cat { background: rgba(15,35,81,0.07); color: var(--brand-navy-light); transition: background var(--ease), color var(--ease); }
.jbd-badge--cat:hover { background: var(--brand-navy); color: #fff; }
.jbd-badge--verified { background: rgba(37,99,235,0.10); color: var(--color-verified); }
.jbd-badge--featured { background: rgba(245,166,35,0.12); color: var(--brand-gold-dark); }
.jbd-badge--price { background: var(--gray-100); color: var(--gray-600); }

.jbd-listing-header__actions {
	display: flex;
	gap: 0.625rem;
	flex-wrap: nowrap;             /* keep buttons on one line */
	align-items: center;
	flex-shrink: 0;
}

/* Bottom meta row: rating LEFT, address CENTER (auto margin), Open Now RIGHT */
.jbd-listing-header__meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	padding-top: 1rem;
	border-top: 1px solid var(--color-border);
	width: 100%;
}
/* Push Open Now badge to the far right, mirroring the buttons alignment above */
.jbd-listing-header__meta .jbd-open-badge { margin-left: auto; }

.jbd-listing-header__rating { display: flex; align-items: center; gap: 0.5rem; }
.jbd-listing-header__rating-score { font-size: 1.25rem; font-weight: 800; color: var(--gray-900); line-height: 1; }
.jbd-stars--sm i { font-size: 0.875rem; color: var(--brand-gold); }
.jbd-stars--sm .jbd-star--empty { color: var(--gray-300); }
.jbd-listing-header__review-count { font-size: 0.8125rem; color: var(--gray-400); }
.jbd-listing-header__meta-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; color: var(--gray-600); }
.jbd-listing-header__meta-item i { color: var(--brand-gold); }

.jbd-open-badge { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: var(--r-full); }
.jbd-open-badge--open { background: rgba(5,150,105,0.10); color: var(--color-success); }
.jbd-open-badge--open i { color: var(--color-success); font-size: 0.5rem; }
.jbd-open-badge--closed { background: rgba(239,68,68,0.08); color: #dc2626; }
.jbd-open-badge--closed i { color: #dc2626; font-size: 0.5rem; }

.jbd-listing-about {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-xs);
	padding: 1.5rem 2rem;
	margin-bottom: 1.5rem;
}
.jbd-listing-about__title { font-size: 1rem; font-weight: 800; color: var(--gray-900); margin: 0 0 1rem; display: flex; align-items: center; gap: 0.5rem; }
.jbd-listing-about__title i { color: var(--brand-gold); }
.jbd-listing-about__content { font-size: 0.9375rem; color: var(--color-text); line-height: 1.8; }
.jbd-listing-about__content p { margin-bottom: 0.875rem; }
.jbd-listing-about__content p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE - TEMPLATES
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
	.jbd-categories-grid { grid-template-columns: repeat(3, 1fr); }
	/* .jbd-listings-grid handled by auto-fit */
	.jbd-blog-grid { grid-template-columns: repeat(2, 1fr); }
	.jbd-post-card--large { grid-column: span 1; flex-direction: column; }
	.jbd-post-card--large .jbd-post-card__image-link { width: 100%; min-width: 0; }
	.jbd-post-card--large .jbd-post-card__image { height: auto; aspect-ratio: 16/9; }
	.jbd-post-card--compact { grid-column: span 1; }
	.jbd-post-layout { grid-template-columns: 1fr; }
	.jbd-post-sidebar { position: static; }
}
@media (max-width: 768px) {
	.jbd-categories-grid { grid-template-columns: repeat(2, 1fr); }
	.jbd-steps { flex-direction: column; align-items: center; }
	.jbd-step__connector { transform: rotate(90deg); padding: 0; }
	.jbd-stats__grid { gap: 0; }
	.jbd-stats__item { padding: 0.75rem 1.25rem; }
	.jbd-stats__divider { width: 1px; height: 1.5rem; }
	.jbd-cta-banner__inner { flex-direction: column; text-align: center; }
	.jbd-cta-banner__actions { justify-content: center; }
	.jbd-listing-header__top { flex-direction: column; align-items: flex-start; flex-wrap: wrap; }
	.jbd-listing-header__name-wrap { width: 100%; }
	.jbd-listing-header__actions { width: 100%; flex-wrap: wrap; }
	.jbd-listing-header__actions .jbd-btn { flex: 1; justify-content: center; min-width: 0; }
	.jbd-listing-header__meta .jbd-open-badge { margin-left: 0; }
	.jbd-listing-header__actions .jbd-btn { flex: 1; justify-content: center; }
	.jbd-related-posts__grid { grid-template-columns: repeat(2, 1fr); }
	.jbd-post-nav__inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.jbd-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
	/* .jbd-listings-grid handled by auto-fit */
	.jbd-blog-grid { grid-template-columns: 1fr; }
	.jbd-post-card--large,
	.jbd-post-card--compact { grid-column: span 1; }
	.jbd-stats__divider { display: none; }
	.jbd-stats__grid { display: grid; grid-template-columns: 1fr 1fr; }
	.jbd-related-posts__grid { grid-template-columns: 1fr; }
	.jbd-listing-header { padding: 1.25rem; }
	.jbd-listing-about { padding: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   20. HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

/* Top bar */
.jbd-topbar {
	background: var(--brand-navy);
	color: rgba(255,255,255,.75);
	font-size: .8rem;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
.jbd-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: .45rem;
	padding-bottom: .45rem;
	gap: 1rem;
}
.jbd-topbar__left i { color: var(--brand-gold); margin-right: .35rem; }
.jbd-topbar__right { display: flex; gap: 1.25rem; }
.jbd-topbar__right a {
	color: rgba(255,255,255,.75);
	text-decoration: none;
	transition: color .2s;
}
.jbd-topbar__right a:hover { color: var(--brand-gold); }
.jbd-topbar__right i { margin-right: .3rem; }

/* Main header */
.jbd-header {
	background: #fff;
	box-shadow: 0 2px 12px rgba(15,35,81,.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 0;
}
.jbd-header__inner {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-top: .85rem;
	padding-bottom: .85rem;
}

/* Logo */
.jbd-header__logo-link {
	display: flex;
	align-items: center;
	gap: .65rem;
	text-decoration: none;
	flex-shrink: 0;
}
.jbd-header__logo-icon {
	width: 40px;
	height: 40px;
	background: var(--brand-navy);
	color: var(--brand-gold);
	border-radius: var(--r-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}
.jbd-header__logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}
.jbd-header__logo-name {
	font-weight: 800;
	font-size: 1rem;
	color: var(--brand-navy);
}
.jbd-header__logo-tagline {
	font-size: .7rem;
	color: var(--color-muted);
	text-transform: uppercase;
	letter-spacing: .05em;
}

/* Desktop nav */
.jbd-header__nav { flex: 1; display: flex; align-items: center; justify-content: center; }
.jbd-nav {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: .25rem;
}
.jbd-nav li { position: relative; display: flex; align-items: center; margin-bottom: 0 !important; }
.jbd-nav a {
	display: block;
	padding: .5rem .85rem;
	color: var(--gray-700);
	font-weight: 600;
	font-size: .88rem;
	text-decoration: none;
	border-radius: var(--r-xs);
	transition: color .2s, background .2s;
}
.jbd-nav a:hover,
.jbd-nav .current-menu-item > a,
.jbd-nav .current_page_item > a {
	color: var(--brand-navy);
	background: var(--gray-100);
}
/* Dropdown */
.jbd-nav .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	background: #fff;
	border-radius: var(--r-sm);
	box-shadow: var(--shadow-lg);
	min-width: 200px;
	list-style: none;
	padding: .5rem;
	z-index: 100;
}
.jbd-nav li:hover > .sub-menu { display: block; }
.jbd-nav .sub-menu a {
	padding: .5rem .75rem;
	font-weight: 500;
	color: var(--gray-700);
	border-radius: var(--r-xs);
}
.jbd-nav .sub-menu a:hover { color: var(--brand-navy); background: var(--gray-100); }

/* ── CATEGORIES MEGA MENU ────────────────────────────────────────────────────
   The .jbd-header is position:sticky, giving us a containing block.
   We make the dropdown item position:static so the submenu's
   position:absolute escapes the nav and stretches full-width of the header.
──────────────────────────────────────────────────────────────────────────── */
.jbd-nav .jbd-nav__cat-dropdown { position: static !important; }

/* Mega menu open state is driven by JS (class .is-open) - not CSS :hover -
   so it only opens when the cursor is actually over the Categories item. */

/* Full-width panel */
.jbd-nav .jbd-nav__cat-submenu {
	display: none;
	position: absolute !important;
	top: 100% !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	background: var(--brand-navy);
	border: none;
	border-radius: 0;
	box-shadow: 0 12px 40px rgba(0,0,0,.25);
	padding: 2rem 0;
	z-index: 9998;
}
.jbd-nav .jbd-nav__cat-dropdown.is-open > .jbd-nav__cat-submenu { display: block; }

/* Caret */
.jbd-nav .jbd-nav__cat-dropdown.is-open .jbd-nav__caret { transform: rotate(180deg); }
.jbd-nav__caret {
	display: inline-block;
	font-size: .65em;
	margin-left: .25rem;
	transition: transform .2s;
	vertical-align: middle;
}

/* Strip ul/li defaults from the mega submenu */
.jbd-nav .jbd-nav__cat-submenu { list-style: none !important; margin: 0 !important; }

/* ── Mega menu search bar ───────────────────────────────────────────────── */
.jbd-mega-search {
	max-width: 1200px;
	margin: 0 auto 1.5rem;
	padding: 0 2rem;
}
.jbd-mega-search__wrap {
	position: relative;
	display: flex;
	align-items: center;
}
.jbd-mega-search__icon {
	position: absolute;
	left: 1.1rem;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255,255,255,.55);
	font-size: 1rem;
	pointer-events: none;
	transition: opacity .15s;
	z-index: 1;
}
/* Hide icon once user starts typing */
.jbd-mega-search__wrap.has-value .jbd-mega-search__icon { opacity: 0; }
.jbd-mega-search__input {
	width: 100%;
	padding: .75rem 2.75rem .75rem 3rem !important; /* 3rem clears the 1rem icon + gap */
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: var(--r-full, 999px);
	color: #fff !important;          /* force white - overrides browser UA sheet */
	-webkit-text-fill-color: #fff;   /* Safari/Chrome autofill override */
	font-size: .9rem;
	outline: none;
	transition: background .2s, border-color .2s;
	/* Shift left padding to left-align text when icon is gone */
}
.jbd-mega-search__wrap.has-value .jbd-mega-search__input { padding-left: 1.25rem !important; }
.jbd-mega-search__input::placeholder { color: rgba(255,255,255,.45); transition: color .2s; }
.jbd-mega-search__input:hover::placeholder,
.jbd-mega-search__input:focus::placeholder { color: transparent; }
.jbd-mega-search__input:focus {
	background: rgba(255,255,255,.15);
	border-color: var(--brand-gold);
}
.jbd-mega-search__clear {
	position: absolute;
	right: 1rem;
	color: rgba(255,255,255,.5);
	cursor: pointer;
	font-size: .85rem;
	padding: .25rem;
	transition: color .15s;
}
.jbd-mega-search__clear:hover { color: #fff; }
.jbd-mega-search__empty {
	text-align: center;
	color: rgba(255,255,255,.5);
	font-size: .88rem;
	margin-top: 1rem;
	padding-bottom: .5rem;
}

/* Inner grid wrapper - centred, max-width container */
.jbd-mega-inner {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: .5rem 1rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	list-style: none;
}

/* Override WP's <ul> reset - the inner div wraps the <li>s */
.jbd-nav .jbd-nav__cat-submenu li { margin: 0; display: contents; }

/* Category card */
.jbd-mega-cat {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
	padding: 1rem .75rem !important;
	border-radius: var(--r-md) !important;
	text-align: center;
	color: rgba(255,255,255,.82) !important;
	background: rgba(255,255,255,.05) !important;
	transition: background .18s, color .18s, transform .18s !important;
	text-decoration: none;
}
.jbd-mega-cat:hover {
	background: rgba(245,166,35,.15) !important;
	color: var(--brand-gold) !important;
	transform: translateY(-2px);
}

/* Icon circle */
.jbd-mega-cat__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: var(--brand-gold);
	transition: background .18s;
	flex-shrink: 0;
}
.jbd-mega-cat:hover .jbd-mega-cat__icon {
	background: rgba(245,166,35,.25);
}

/* Category name */
.jbd-mega-cat__name {
	font-size: .78rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: .02em;
	text-transform: uppercase;
}

/* ── MOBILE: categories accordion ──────────────────────────────────────── */
.jbd-mobile-nav .jbd-mobile-nav__has-sub > a { display: flex; align-items: center; justify-content: space-between; }
.jbd-mobile-nav .jbd-mobile-nav__has-sub > a.is-active .jbd-nav__caret { transform: rotate(180deg); }
.jbd-mobile-nav .sub-menu { display: none; padding: .5rem 0 .5rem .75rem; border-left: 2px solid rgba(255,255,255,.15); margin: .25rem 0 .5rem; }
.jbd-mobile-nav .sub-menu.is-open { display: block; }

/* Mobile category items - simple icon + name row */
.jbd-mobile-nav .sub-menu .jbd-mega-cat {
	flex-direction: row !important;
	padding: .45rem .5rem !important;
	background: transparent !important;
	color: var(--gray-500) !important;
	font-size: .88rem;
	gap: .6rem;
	text-transform: none;
}
.jbd-mobile-nav .sub-menu .jbd-mega-cat:hover { color: var(--brand-navy) !important; background: transparent !important; }
.jbd-mobile-nav .sub-menu .jbd-mega-cat__icon {
	width: 26px;
	height: 26px;
	font-size: .75rem;
	background: var(--gray-100);
	color: var(--brand-navy);
	flex-shrink: 0;
}
.jbd-mobile-nav .sub-menu .jbd-mega-cat__name {
	text-transform: none;
	font-size: .88rem;
	letter-spacing: 0;
}

/* Header actions */
.jbd-header__actions {
	display: flex;
	align-items: center;
	gap: .6rem;
	flex-shrink: 0;
}
.jbd-header__hp-actions { display: flex; align-items: center; }
.jbd-header__hp-actions .hp-action { display: none; } /* hide text-only HivePress links in favor of icon CTA */

.jbd-header__search-toggle {
	background: none;
	border: 1px solid var(--gray-200);
	color: var(--gray-500);
	width: 36px;
	height: 36px;
	border-radius: var(--r-xs);
	cursor: pointer;
	transition: border-color .2s, color .2s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.jbd-header__search-toggle:hover { border-color: var(--brand-navy); color: var(--brand-navy); }

.jbd-btn--gold {
	background: var(--brand-gold);
	color: var(--brand-navy);
	border: none;
	font-weight: 700;
}
.jbd-btn--gold:hover {
	background: var(--brand-gold-dark);
	color: var(--brand-navy);
}
.jbd-header__cta { font-size: .85rem; padding: .5rem 1rem; }

/* Burger */
.jbd-header__burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 1px solid var(--gray-200);
	padding: .5rem;
	border-radius: var(--r-xs);
	cursor: pointer;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
}
.jbd-header__burger span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--brand-navy);
	border-radius: 2px;
	transition: transform .3s, opacity .3s;
}

/* Search bar */
.jbd-header__search-bar {
	background: var(--gray-100);
	border-top: 1px solid var(--gray-200);
	padding: .75rem 0;
}
.jbd-header__search-form {
	display: flex;
	align-items: center;
	gap: .5rem;
	max-width: 640px;
	margin: 0 auto;
}
.jbd-header__search-input {
	flex: 1;
	border: 1px solid var(--gray-300);
	border-radius: var(--r-sm);
	padding: .55rem 1rem;
	font-size: .9rem;
	background: #fff;
	outline: none;
}
.jbd-header__search-input:focus { border-color: var(--brand-navy); }
.jbd-header__search-submit,
.jbd-header__search-close {
	background: var(--brand-navy);
	color: #fff;
	border: none;
	border-radius: var(--r-sm);
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s;
}
.jbd-header__search-submit:hover { background: var(--brand-navy-mid); }
.jbd-header__search-close { background: var(--gray-400); }
.jbd-header__search-close:hover { background: var(--gray-500); }

/* Mobile menu */
.jbd-mobile-menu {
	background: #fff;
	border-top: 1px solid var(--gray-200);
	padding: 1rem 0;
}
.jbd-mobile-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}
.jbd-mobile-nav li { border-bottom: 1px solid var(--gray-100); }
.jbd-mobile-nav a {
	display: block;
	padding: .75rem 0;
	color: var(--gray-700);
	font-weight: 600;
	text-decoration: none;
}
.jbd-mobile-nav a:hover { color: var(--brand-navy); }
.jbd-mobile-menu__footer { padding-top: 1rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   21. FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.jbd-footer {
	background: var(--brand-navy);
	color: rgba(255,255,255,.8);
	margin-top: auto;
}

/* Footer main */
.jbd-footer__main {
	padding: 4rem 0 3rem;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
.jbd-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
	gap: 2.5rem;
}

/* Brand column */
.jbd-footer__logo-link {
	display: flex;
	align-items: center;
	gap: .65rem;
	text-decoration: none;
	margin-bottom: 1rem;
}
.jbd-footer__logo-icon {
	width: 40px;
	height: 40px;
	background: var(--brand-gold);
	color: var(--brand-navy);
	border-radius: var(--r-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}
.jbd-footer__logo-name {
	font-weight: 800;
	font-size: 1rem;
	color: #fff;
}
.jbd-footer__tagline {
	font-size: .87rem;
	line-height: 1.6;
	color: rgba(255,255,255,.65);
	margin-bottom: 1.25rem;
}

/* Social icons */
.jbd-footer__social { display: flex; gap: .6rem; }
.jbd-footer__social-link {
	width: 36px;
	height: 36px;
	background: rgba(255,255,255,.1);
	color: rgba(255,255,255,.8);
	border-radius: var(--r-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: .85rem;
	transition: background .2s, color .2s;
}
.jbd-footer__social-link:hover { background: var(--brand-gold); color: var(--brand-navy); }

/* Column titles */
.jbd-footer__col-title {
	color: #fff;
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin: 0 0 1rem;
}

/* Link lists */
.jbd-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .5rem;
}
.jbd-footer__links a {
	color: rgba(255,255,255,.7);
	text-decoration: none;
	font-size: .875rem;
	transition: color .2s, padding-left .2s;
	display: flex;
	align-items: center;
	gap: .4rem;
}
.jbd-footer__links a i { font-size: .6rem; color: var(--brand-gold); }
.jbd-footer__links a:hover { color: var(--brand-gold); padding-left: 4px; }

/* Contact list */
.jbd-footer__contact {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}
.jbd-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: .6rem;
	font-size: .875rem;
	color: rgba(255,255,255,.7);
}
.jbd-footer__contact i { color: var(--brand-gold); margin-top: 2px; flex-shrink: 0; }
.jbd-footer__contact a { color: rgba(255,255,255,.7); text-decoration: none; }
.jbd-footer__contact a:hover { color: var(--brand-gold); }

/* Newsletter */
.jbd-footer__newsletter-text { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: .75rem; }
.jbd-footer__newsletter {
	display: flex;
	border-radius: var(--r-sm);
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.2);
}
.jbd-footer__newsletter-input {
	flex: 1;
	background: rgba(255,255,255,.08);
	border: none;
	padding: .6rem .85rem;
	color: #fff;
	font-size: .85rem;
	outline: none;
}
.jbd-footer__newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.jbd-footer__newsletter-btn {
	background: var(--brand-gold);
	color: var(--brand-navy);
	border: none;
	padding: 0 1rem;
	cursor: pointer;
	font-size: .9rem;
	transition: background .2s;
}
.jbd-footer__newsletter-btn:hover { background: var(--brand-gold-dark); }

/* Footer bottom bar */
.jbd-footer__bottom {
	background: rgba(0,0,0,.25);
	padding: 1rem 0;
}
.jbd-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: .75rem;
}
.jbd-footer__copyright {
	font-size: .8rem;
	color: rgba(255,255,255,.5);
}
.jbd-footer__nav-list {
	display: flex;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.jbd-footer__nav-list a {
	font-size: .8rem;
	color: rgba(255,255,255,.5);
	text-decoration: none;
	transition: color .2s;
}
.jbd-footer__nav-list a:hover { color: var(--brand-gold); }

/* ═══════════════════════════════════════════════════════════════════════════
   22. HOMEPAGE HERO SEARCH - fix gap between header and hero
   ═══════════════════════════════════════════════════════════════════════════ */

/* The site-content + container divs are immediately closed on the homepage;
   zero out any default padding/margin so they don't create whitespace. */
.home .site-content,
.home .site-content > .container {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	min-height: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   22c. HOMEPAGE HERO SEARCH
   ═══════════════════════════════════════════════════════════════════════════ */

.jbd-hero {
	position: relative;
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 60%, #1e4d8c 100%);
	padding: 5rem 0 4.5rem;
	overflow: hidden;
}
.jbd-hero__bg {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(ellipse at 20% 50%, rgba(245,166,35,.12) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 20%, rgba(41,82,163,.4) 0%, transparent 50%);
	pointer-events: none;
}
.jbd-hero__inner {
	position: relative;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}
.jbd-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	background: rgba(245,166,35,.15);
	color: var(--brand-gold);
	border: 1px solid rgba(245,166,35,.3);
	border-radius: var(--r-full);
	padding: .35rem 1rem;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}
.jbd-hero__title {
	color: #fff;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 1rem;
}
.jbd-hero__subtitle {
	color: rgba(255,255,255,.75);
	font-size: 1.1rem;
	margin: 0 0 2.5rem;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

/* Search form */
.jbd-hero__search {
	background: #fff;
	border-radius: var(--r-lg);
	box-shadow: 0 20px 60px rgba(0,0,0,.25);
	padding: .5rem;
	margin-bottom: 1.5rem;
}
.jbd-hero__search-inner {
	display: flex;
	align-items: center;
	gap: 0;
}
.jbd-hero__search-field {
	flex: 1;
	position: relative;          /* anchor for the absolutely-positioned icon */
	display: flex;
	align-items: center;
	padding: .5rem .9rem;
}
.jbd-hero__search-icon {
	position: absolute;
	left: .9rem;                 /* sits inside the field's own padding */
	top: 50%;
	transform: translateY(-50%);
	color: var(--gray-400);
	font-size: .9rem;
	pointer-events: none;        /* clicks pass through to the input/select */
	flex-shrink: 0;
}
.jbd-hero__search-input {
	flex: 1;
	border: none;
	outline: none;
	font-size: .95rem;
	color: var(--gray-700);
	background: transparent;
	min-width: 0;
	padding-left: 1.75rem;       /* clear the icon width + breathing room */
}
.jbd-hero__search-input::placeholder { color: var(--gray-400); }
.jbd-hero__search-select {
	flex: 1;
	border: none;
	outline: none;
	font-size: .95rem;
	color: var(--gray-700);
	background: transparent;
	cursor: pointer;
	min-width: 0;
	appearance: none;
	-webkit-appearance: none;
	padding-left: 1.75rem;       /* push "All Categories" text past the icon */
}
.jbd-hero__search-divider {
	width: 1px;
	height: 2rem;
	background: var(--gray-200);
	flex-shrink: 0;
}
.jbd-hero__search-btn {
	background: var(--brand-navy);
	color: #fff;
	border: none;
	border-radius: var(--r-md);
	padding: .85rem 1.75rem;
	font-size: .95rem;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: .5rem;
	flex-shrink: 0;
	transition: background .2s;
	white-space: nowrap;
}
.jbd-hero__search-btn:hover { background: var(--brand-navy-mid); }

/* Popular tags */
.jbd-hero__tags {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: .5rem;
	color: rgba(255,255,255,.6);
	font-size: .85rem;
}
.jbd-hero__tag {
	background: rgba(255,255,255,.12);
	color: rgba(255,255,255,.85);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: var(--r-full);
	padding: .3rem .85rem;
	font-size: .8rem;
	text-decoration: none;
	transition: background .2s, color .2s;
}
.jbd-hero__tag:hover { background: var(--brand-gold); color: var(--brand-navy); border-color: var(--brand-gold); }

@media (max-width: 640px) {
	.jbd-hero { padding: 3rem 0 3rem; }
	.jbd-hero__search-inner { flex-direction: column; gap: .25rem; }
	.jbd-hero__search-divider { width: 100%; height: 1px; margin: 0; }
	.jbd-hero__search-field { width: 100%; }
	.jbd-hero__search-btn { width: 100%; justify-content: center; border-radius: var(--r-sm); }
}

/* ── Responsive: Header / Footer ─────────────────────────────── */
@media (max-width: 1024px) {
	.jbd-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
	.jbd-topbar__left { display: none; }
	.jbd-header__nav { display: none; }
	.jbd-header__burger { display: flex; }
	.jbd-header__cta { display: none; }
	.jbd-footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
	.jbd-footer__main { padding: 2.5rem 0 2rem; }
	.jbd-footer__bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
	.jbd-topbar { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero */
.jbd-about-hero {
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
	padding: 4rem 0 3.5rem;
	color: #fff;
}
.jbd-about-hero .jbd-breadcrumb,
.jbd-about-hero .jbd-breadcrumb a { color: rgba(255,255,255,.65); }
.jbd-about-hero .jbd-breadcrumb li[aria-current] { color: rgba(255,255,255,.9); }
.jbd-about-hero__title {
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 800;
	color: #fff;
	margin: 1rem 0 .75rem;
	line-height: 1.15;
	letter-spacing: -.03em;
}
.jbd-about-hero__subtitle {
	font-size: 1.1rem;
	color: rgba(255,255,255,.8);
	max-width: 600px;
}

/* Section label */
.jbd-about-section-label {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--brand-gold);
	margin-bottom: .75rem;
}

/* Mission */
.jbd-about-mission {
	padding: 5rem 0;
	background: var(--color-surface);
}
.jbd-about-mission__inner {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 4rem;
	align-items: center;
}
.jbd-about-mission__text h2 {
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	font-weight: 800;
	color: var(--brand-navy);
	margin: .25rem 0 1.25rem;
	letter-spacing: -.02em;
}
.jbd-about-mission__text p {
	color: var(--gray-600);
	line-height: 1.75;
	margin-bottom: 1rem;
}
.jbd-about-mission__text p:last-of-type { margin-bottom: 1.75rem; }
.jbd-about-mission__image-wrap {
	width: 100%;
	aspect-ratio: 1;
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
	border-radius: var(--r-xl);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 7rem;
	color: rgba(255,255,255,.2);
	box-shadow: var(--shadow-lg);
}

/* Stats */
.jbd-about-stats {
	background: var(--brand-navy);
	padding: 3.5rem 0;
}
.jbd-about-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}
.jbd-about-stat__number {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	color: var(--brand-gold);
	line-height: 1;
	margin-bottom: .5rem;
	letter-spacing: -.02em;
}
.jbd-about-stat__label {
	font-size: .875rem;
	color: rgba(255,255,255,.7);
	font-weight: 500;
}

/* Why Us */
.jbd-about-why {
	padding: 5rem 0;
	background: var(--gray-50);
}
.jbd-about-section-header {
	text-align: center;
	margin-bottom: 3rem;
}
.jbd-about-section-header h2 {
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	font-weight: 800;
	color: var(--brand-navy);
	margin: .25rem 0 0;
	letter-spacing: -.02em;
}
.jbd-about-why__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.jbd-about-feature {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: 2rem 1.75rem;
	transition: transform var(--ease), box-shadow var(--ease);
}
.jbd-about-feature:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}
.jbd-about-feature__icon {
	width: 48px;
	height: 48px;
	border-radius: var(--r-md);
	background: rgba(15,35,81,.07);
	color: var(--brand-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}
.jbd-about-feature h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 0 0 .5rem;
}
.jbd-about-feature p {
	font-size: .9rem;
	color: var(--gray-600);
	line-height: 1.6;
	margin: 0;
}

/* Editor content section */
.jbd-about-editor-content {
	padding: 4rem 0;
	background: var(--color-surface);
}
.jbd-about-editor-content__inner { max-width: 780px; }

/* CTA */
.jbd-about-cta {
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
	padding: 4.5rem 0;
}
.jbd-about-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}
.jbd-about-cta__text h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 .5rem;
}
.jbd-about-cta__text p {
	color: rgba(255,255,255,.8);
	margin: 0;
	font-size: 1rem;
}
.jbd-about-cta__actions { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }
.jbd-btn--outline-white {
	background: transparent !important;
	border: 2px solid rgba(255,255,255,.5) !important;
	color: #fff !important;
}
.jbd-btn--outline-white:hover {
	border-color: #fff !important;
	background: rgba(255,255,255,.1) !important;
}

/* About responsive */
@media (max-width: 1024px) {
	.jbd-about-mission__inner { grid-template-columns: 1fr; }
	.jbd-about-mission__image { display: none; }
	.jbd-about-stats__grid { grid-template-columns: repeat(2, 1fr); }
	.jbd-about-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.jbd-about-hero { padding: 2.5rem 0 2rem; }
	.jbd-about-mission, .jbd-about-why { padding: 3rem 0; }
	.jbd-about-why__grid { grid-template-columns: 1fr; }
	.jbd-about-cta__inner { flex-direction: column; text-align: center; }
	.jbd-about-cta__actions { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero */
.jbd-contact-hero {
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
	padding: 4rem 0 3.5rem;
	color: #fff;
}
.jbd-contact-hero .jbd-breadcrumb,
.jbd-contact-hero .jbd-breadcrumb a { color: rgba(255,255,255,.65); }
.jbd-contact-hero .jbd-breadcrumb li[aria-current] { color: rgba(255,255,255,.9); }
.jbd-contact-hero__title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	color: #fff;
	margin: 1rem 0 .75rem;
	letter-spacing: -.03em;
}
.jbd-contact-hero__subtitle {
	font-size: 1.05rem;
	color: rgba(255,255,255,.8);
	max-width: 540px;
}

/* Info cards row - pulls up into the hero with negative margin */
.jbd-contact-hero { padding-bottom: 5rem; }
.jbd-contact-cards-row {
	background: transparent;
	margin-top: -3rem;
	padding: 0 0 0;
	position: relative;
	z-index: 1;
}
.jbd-contact-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

/* Main form section */
.jbd-contact-main {
	padding: 3rem 0 4rem;
	background: var(--gray-50);
}

/* Form wrap */
.jbd-contact-form-wrap {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--r-xl);
	padding: 2.5rem;
	box-shadow: var(--shadow-sm);
	max-width: 780px;
	margin: 0 auto;
}

/* CTA section */
.jbd-contact-cta {
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
	padding: 4rem 0;
}
.jbd-contact-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}
.jbd-contact-cta__text h2 {
	font-size: clamp(1.4rem, 2.5vw, 1.875rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 .4rem;
	letter-spacing: -.02em;
}
.jbd-contact-cta__text p {
	color: rgba(255,255,255,.8);
	margin: 0;
	font-size: .95rem;
}
.jbd-contact-form-wrap__title {
	font-size: 1.375rem;
	font-weight: 800;
	color: var(--brand-navy);
	margin: 0 0 1.75rem;
	letter-spacing: -.02em;
}

/* Form notices */
.jbd-form-notice {
	display: flex;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	border-radius: var(--r-md);
	margin-bottom: 1.75rem;
	font-size: .9375rem;
}
.jbd-form-notice i { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.jbd-form-notice strong { display: block; margin-bottom: .25rem; font-weight: 700; }
.jbd-form-notice p, .jbd-form-notice ul { margin: 0; }
.jbd-form-notice ul { padding-left: 1.25rem; }
.jbd-form-notice ul li:not(:last-child) { margin-bottom: .25rem; }
.jbd-form-notice--success {
	background: #ecfdf5;
	border: 1px solid #6ee7b7;
	color: #065f46;
}
.jbd-form-notice--success i { color: #10b981; }
.jbd-form-notice--error {
	background: #fef2f2;
	border: 1px solid #fca5a5;
	color: #991b1b;
}
.jbd-form-notice--error i { color: #ef4444; }

/* Form fields */
.jbd-contact-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.jbd-contact-form__row { display: grid; gap: 1.25rem; margin-bottom: 1.25rem; }
.jbd-contact-form__row--2col { grid-template-columns: 1fr 1fr; }
.jbd-contact-form__field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.jbd-contact-form__row .jbd-contact-form__field { margin-bottom: 0; }

.jbd-contact-form__field label {
	font-size: .8125rem;
	font-weight: 700;
	color: var(--gray-700);
	text-transform: uppercase;
	letter-spacing: .05em;
}
.jbd-required { color: #ef4444; margin-left: .1rem; }
.jbd-optional { font-weight: 400; color: var(--gray-400); text-transform: none; letter-spacing: 0; font-size: .75rem; }

.jbd-contact-form input[type="text"],
.jbd-contact-form input[type="email"],
.jbd-contact-form input[type="tel"],
.jbd-contact-form select,
.jbd-contact-form textarea {
	width: 100%;
	padding: .75rem 1rem;
	border: 1.5px solid var(--color-border);
	border-radius: var(--r-sm);
	font-size: .9375rem;
	font-family: var(--font-body);
	color: var(--gray-900);
	background: var(--color-surface);
	transition: border-color var(--ease), box-shadow var(--ease);
	appearance: none;
}
.jbd-contact-form select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right .75rem center;
	padding-right: 2.5rem;
	cursor: pointer;
}
.jbd-contact-form input:focus,
.jbd-contact-form select:focus,
.jbd-contact-form textarea:focus {
	outline: none;
	border-color: var(--brand-navy-light);
	box-shadow: 0 0 0 3px rgba(26,58,124,.12);
}
.jbd-contact-form textarea { resize: vertical; min-height: 140px; }

.jbd-contact-form__footer {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	margin-top: 1.75rem;
}
.jbd-btn--lg { padding: .875rem 2rem !important; font-size: 1rem !important; }
.jbd-contact-form__privacy {
	font-size: .8125rem;
	color: var(--gray-400);
	flex: 1;
}

/* Info cards */
.jbd-contact-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: 1.5rem;
	display: flex;
	gap: 1rem;
	box-shadow: var(--shadow-xs);
}
.jbd-contact-card__icon {
	width: 42px;
	height: 42px;
	border-radius: var(--r-md);
	background: rgba(15,35,81,.07);
	color: var(--brand-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}
.jbd-contact-card__body h4 {
	font-size: .9375rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 0 0 .25rem;
}
.jbd-contact-card__body p,
.jbd-contact-card__body a {
	font-size: .875rem;
	color: var(--gray-600);
	margin: 0;
	line-height: 1.55;
}
.jbd-contact-card__body a { color: var(--brand-navy-light); text-decoration: none; }
.jbd-contact-card__body a:hover { text-decoration: underline; }



/* Contact responsive */
@media (max-width: 1024px) {
	.jbd-contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.jbd-contact-hero { padding: 2.5rem 0 2rem; }
	.jbd-contact-cards-grid { grid-template-columns: 1fr; }
	.jbd-contact-form-wrap { padding: 1.5rem; }
	.jbd-contact-form__row--2col { grid-template-columns: 1fr; }
	.jbd-contact-form__footer { flex-direction: column; align-items: flex-start; }
}




/* ═══════════════════════════════════════════════════════════════════════════
   10. WOOCOMMERCE - GLOBAL
   ═══════════════════════════════════════════════════════════════════════════ */

/* Page background */
.woocommerce-page,
.woocommerce-cart,
.woocommerce-checkout,
.woocommerce-account {
	background: var(--gray-50);
}

/* ── Hero (shop / product / category / cart / checkout / order-received) ── */
.jbd-woo-hero {
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
	padding: 3rem 0 2.75rem;
}
.jbd-woo-hero .jbd-breadcrumb ol { margin: 0 0 .875rem; }
.jbd-woo-hero__title {
	color: #fff;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -.02em;
	margin: 0;
}

/* ── Body wrapper ───────────────────────────────────────────────────────── */
.jbd-woo-body {
	padding: 2.5rem 0 5rem;
}

/* ── Notices ────────────────────────────────────────────────────────────── */
.woocommerce-notices-wrapper { margin-bottom: 1.5rem; }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	display: flex;
	align-items: center;
	gap: .875rem;
	border: none;
	border-radius: var(--r-md);
	padding: 1rem 1.25rem;
	font-size: .9375rem;
	margin: 0 0 1rem;
}
.woocommerce-message { background: #d1fae5; color: #065f46; border-left: 4px solid #059669; }
.woocommerce-info    { background: #eff6ff; color: #1e40af; border-left: 4px solid #3b82f6; }
.woocommerce-error   {
	background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444;
	flex-direction: column; align-items: flex-start;
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before { display: none; }
.woocommerce-message .button,
.woocommerce-info .button {
	margin-left: auto;
	background: transparent;
	border: 1.5px solid currentColor;
	border-radius: var(--r-sm);
	padding: .3rem .85rem;
	font-size: .8125rem;
	font-weight: 700;
	color: inherit;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity .15s;
}
.woocommerce-message .button:hover,
.woocommerce-info .button:hover { opacity: .7; }

/* ── Result count + ordering bar ───────────────────────────────────────── */
.woocommerce-result-count {
	color: var(--gray-500);
	font-size: .875rem;
	margin: 0 0 1.25rem;
}
.woocommerce-ordering {
	margin: 0 0 1.25rem;
}
.woocommerce-ordering select {
	border: 1px solid var(--color-border);
	border-radius: var(--r-sm);
	padding: .45rem .875rem;
	font-size: .875rem;
	color: var(--gray-700);
	background: #fff;
	cursor: pointer;
}
.woocommerce-ordering select:focus {
	outline: none;
	border-color: var(--brand-navy-light);
	box-shadow: 0 0 0 3px rgba(26,58,124,.12);
}

/* Toolbar row - count + sort side by side */
.woocommerce .woocommerce-products-header { margin-bottom: 1rem; }
.woocommerce-result-count + .woocommerce-ordering { float: right; margin-top: 0; }

/* ── Shared form field style ────────────────────────────────────────────── */
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
	font-size: .875rem;
	font-weight: 600;
	color: var(--gray-700);
	margin-bottom: .3rem;
	display: block;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row select,
.woocommerce-page form .form-row textarea {
	width: 100%;
	border: 1px solid var(--color-border);
	border-radius: var(--r-sm);
	padding: .6rem .875rem;
	font-size: .9375rem;
	color: var(--gray-700);
	background: #fff;
	box-sizing: border-box;
	transition: border-color .15s, box-shadow .15s;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
	outline: none;
	border-color: var(--brand-navy-light);
	box-shadow: 0 0 0 3px rgba(26,58,124,.12);
}
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239,68,68,.12);
}

/* ── Shared button base ─────────────────────────────────────────────────── */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	padding: .6rem 1.25rem;
	background: var(--brand-navy);
	color: #fff !important;
	border: none;
	border-radius: var(--r-sm);
	font-size: .9rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background .2s;
	line-height: 1.4;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: var(--brand-navy-mid);
	color: #fff !important;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt {
	background: var(--brand-gold);
	color: var(--brand-navy) !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
	background: var(--brand-gold-dark);
	color: var(--brand-navy) !important;
}

/* ── Sale badge ─────────────────────────────────────────────────────────── */
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
	background: var(--brand-gold);
	color: var(--brand-navy);
	font-size: .7rem;
	font-weight: 800;
	border-radius: var(--r-full);
	padding: .25rem .65rem;
	min-height: auto;
	min-width: auto;
	line-height: 1.4;
	top: .75rem;
	left: .75rem;
	right: auto;
}

/* ── Pagination ─────────────────────────────────────────────────────────── */
.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	list-style: none;
	margin: 2.5rem 0 0;
	padding: 0;
	gap: .35rem;
	justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--color-border);
	border-radius: var(--r-sm);
	font-size: .875rem;
	font-weight: 600;
	color: var(--gray-700);
	text-decoration: none;
	background: #fff;
	transition: background .15s, color .15s, border-color .15s;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--brand-navy);
	color: #fff;
	border-color: var(--brand-navy);
}

/* ═══════════════════════════════════════════════════════════════════════════
   10a. PRODUCT GRID (SHOP / CATEGORY / TAG)
   ═══════════════════════════════════════════════════════════════════════════ */

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	list-style: none;
	margin: 0 !important;
	padding: 0;
	clear: both;
}
.woocommerce ul.products li.product {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
	display: flex !important;
	flex-direction: column;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	width: auto !important;
	transition: transform .2s ease, box-shadow .2s ease;
}
.woocommerce ul.products li.product:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(15,35,81,.13);
}
.woocommerce ul.products li.product a img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link {
	display: block;
	text-decoration: none;
	flex: 1;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: .9375rem;
	font-weight: 700;
	color: var(--brand-navy);
	padding: 1rem 1rem .35rem;
	margin: 0;
	line-height: 1.4;
}
.woocommerce ul.products li.product .price {
	display: block;
	padding: 0 1rem .875rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--brand-navy-light);
}
.woocommerce ul.products li.product .price del {
	color: var(--gray-400);
	font-weight: 400;
	font-size: .8125rem;
	margin-right: .3rem;
}
.woocommerce ul.products li.product .price ins { text-decoration: none; }

/* Card add-to-cart */
.woocommerce ul.products li.product .button {
	display: block !important;
	margin: auto 1rem 1rem !important;
	padding: .6rem 1rem !important;
	background: var(--brand-navy) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--r-sm) !important;
	font-size: .875rem !important;
	font-weight: 600 !important;
	text-align: center !important;
	cursor: pointer !important;
	text-decoration: none !important;
	transition: background .2s !important;
}
.woocommerce ul.products li.product .button:hover {
	background: var(--brand-navy-mid) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   10b. SINGLE PRODUCT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.woocommerce div.product {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-xl);
	padding: 2rem;
	margin: 0;
}
.woocommerce div.product div.images {
	float: left;
	width: 45%;
	margin-right: 5%;
}
.woocommerce div.product div.summary {
	float: right;
	width: 50%;
	clear: none;
}
.woocommerce div.product div.images img {
	border-radius: var(--r-lg);
	width: 100%;
}
.woocommerce div.product .product_title {
	font-size: clamp(1.35rem, 2.5vw, 2rem);
	font-weight: 800;
	color: var(--brand-navy);
	margin-bottom: .5rem;
	line-height: 1.25;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: 1.625rem;
	font-weight: 700;
	color: var(--brand-navy-light);
	margin-bottom: 1rem;
	display: block;
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	color: var(--gray-400);
	font-size: 1.125rem;
	font-weight: 400;
	margin-right: .35rem;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins { text-decoration: none; }
.woocommerce div.product .woocommerce-product-rating { margin-bottom: 1rem; }
.woocommerce div.product .woocommerce-product-details__short-description {
	color: var(--gray-700);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: .9375rem;
}

/* Qty + add-to-cart row */
.woocommerce div.product form.cart {
	display: flex;
	align-items: center;
	gap: .75rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}
.woocommerce .quantity .qty {
	border: 1px solid var(--color-border);
	border-radius: var(--r-sm);
	padding: .6rem .875rem;
	font-size: 1rem;
	width: 72px;
	text-align: center;
	color: var(--gray-700);
	background: #fff;
}
.woocommerce .quantity .qty:focus {
	outline: none;
	border-color: var(--brand-navy-light);
	box-shadow: 0 0 0 3px rgba(26,58,124,.12);
}
.woocommerce div.product form.cart .single_add_to_cart_button {
	flex: 1;
	padding: .75rem 1.5rem !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	background: var(--brand-navy) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--r-sm) !important;
	cursor: pointer;
	transition: background .2s;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
	background: var(--brand-navy-mid) !important;
}

/* Product meta */
.woocommerce div.product .product_meta {
	font-size: .8125rem;
	color: var(--gray-500);
	border-top: 1px solid var(--color-border);
	padding-top: 1rem;
	margin-top: .5rem;
}
.woocommerce div.product .product_meta a { color: var(--brand-navy-light); text-decoration: none; }
.woocommerce div.product .product_meta a:hover { text-decoration: underline; }

/* Product tabs */
.woocommerce div.product .woocommerce-tabs {
	clear: both;
	margin-top: 2.5rem;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
	list-style: none;
	margin: 0 0 0;
	padding: 0;
	border-bottom: 2px solid var(--color-border);
	display: flex;
	gap: .125rem;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: .7rem 1.25rem;
	font-size: .9375rem;
	font-weight: 600;
	color: var(--gray-500);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: color .15s, border-color .15s;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
	color: var(--brand-navy);
	border-bottom-color: var(--brand-navy);
}
.woocommerce div.product .woocommerce-tabs .panel {
	padding: 1.75rem 0 0;
	border: none;
	background: transparent;
	color: var(--gray-700);
	line-height: 1.7;
}

/* Related / upsells */
.woocommerce .related.products,
.woocommerce .upsells.products {
	clear: both;
	margin-top: 3rem;
}
.woocommerce .related > h2,
.woocommerce .upsells > h2 {
	font-size: 1.375rem;
	font-weight: 800;
	color: var(--brand-navy);
	margin-bottom: 1.5rem;
	padding-bottom: .75rem;
	border-bottom: 2px solid var(--color-border);
}

/* ═══════════════════════════════════════════════════════════════════════════
   10c. CART PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Cart header row (Continue Shopping + title) */
.jbd-woo-cart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}
.jbd-woo-cart-header__title {
	font-size: 1.375rem;
	font-weight: 800;
	color: var(--brand-navy);
	margin: 0;
	display: flex;
	align-items: center;
	gap: .6rem;
}
.jbd-woo-cart-header__title i { color: var(--brand-gold); }
.jbd-woo-cart-header__back {
	font-size: .875rem;
	font-weight: 600;
	color: var(--brand-navy-light);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: .4rem;
	transition: opacity .15s;
}
.jbd-woo-cart-header__back:hover { opacity: .75; }

/* Cart table */
.woocommerce-cart .woocommerce-cart-form {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-xl);
	padding: 0 1.75rem 1.75rem;
	overflow: hidden;
}
.woocommerce table.cart {
	width: 100%;
	border-collapse: collapse;
}
.woocommerce table.cart thead tr {
	border-bottom: 2px solid var(--color-border);
}
.woocommerce table.cart th {
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--gray-400);
	padding: 1.1rem .75rem;
	text-align: left;
}
.woocommerce table.cart td {
	vertical-align: middle;
	padding: 1.1rem .75rem;
	border-bottom: 1px solid var(--color-border);
	color: var(--gray-700);
}
.woocommerce table.cart tr:last-child td { border-bottom: none; }
.woocommerce table.cart td.product-thumbnail img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: var(--r-md);
	display: block;
}
.woocommerce table.cart td.product-name {
	font-weight: 600;
}
.woocommerce table.cart td.product-name a {
	color: var(--brand-navy);
	text-decoration: none;
	font-size: .9375rem;
}
.woocommerce table.cart td.product-name a:hover { text-decoration: underline; }
.woocommerce table.cart td.product-name .variation {
	font-size: .8125rem;
	color: var(--gray-500);
	font-weight: 400;
	margin-top: .25rem;
}
.woocommerce table.cart td.product-price,
.woocommerce table.cart td.product-subtotal {
	font-weight: 700;
	color: var(--brand-navy-light);
}
/* Remove item (×) */
.woocommerce table.cart a.remove {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--gray-100);
	border-radius: 50%;
	color: var(--gray-400) !important;
	font-size: 1.125rem;
	text-decoration: none;
	transition: background .15s, color .15s;
}
.woocommerce table.cart a.remove:hover {
	background: #fee2e2;
	color: #ef4444 !important;
}

/* Cart actions row */
.woocommerce table.cart .actions td {
	padding-top: 1.25rem;
}
.woocommerce table.cart .actions .coupon {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
	align-items: center;
}
.woocommerce table.cart .actions .coupon input[type="text"] {
	border: 1px solid var(--color-border);
	border-radius: var(--r-sm);
	padding: .55rem .875rem;
	font-size: .875rem;
	color: var(--gray-700);
	background: #fff;
	width: 210px;
	max-width: 100%;
}
.woocommerce table.cart .actions .coupon input[type="text"]:focus {
	outline: none;
	border-color: var(--brand-navy-light);
	box-shadow: 0 0 0 3px rgba(26,58,124,.12);
}
.woocommerce table.cart .actions button[name="apply_coupon"],
.woocommerce table.cart .actions button[name="update_cart"] {
	padding: .55rem 1.1rem;
	background: var(--brand-navy);
	color: #fff;
	border: none;
	border-radius: var(--r-sm);
	font-size: .875rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s;
}
.woocommerce table.cart .actions button[name="apply_coupon"]:hover,
.woocommerce table.cart .actions button[name="update_cart"]:hover {
	background: var(--brand-navy-mid);
}
.woocommerce table.cart .actions button[name="update_cart"] {
	background: transparent;
	border: 1.5px solid var(--color-border);
	color: var(--gray-700);
	margin-left: auto;
}
.woocommerce table.cart .actions button[name="update_cart"]:hover {
	border-color: var(--brand-navy);
	color: var(--brand-navy);
	background: transparent;
}

/* Cart collaterals - totals box */
.woocommerce .cart-collaterals {
	margin-top: 1.5rem;
	display: flex;
	justify-content: flex-end;
}
.woocommerce .cart-collaterals .cart_totals {
	width: 100%;
	max-width: 420px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-xl);
	overflow: hidden;
}
.woocommerce .cart_totals h2 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--brand-navy);
	padding: 1.25rem 1.5rem;
	margin: 0;
	border-bottom: 1px solid var(--color-border);
	background: var(--gray-50);
}
.woocommerce .cart_totals table {
	width: 100%;
	border-collapse: collapse;
	padding: 0 1.5rem;
	display: block;
}
.woocommerce .cart_totals table tbody { display: block; padding: .75rem 1.5rem 0; }
.woocommerce .cart_totals table tr { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid var(--color-border); }
.woocommerce .cart_totals table tr:last-child { border-bottom: none; }
.woocommerce .cart_totals table th { font-weight: 600; color: var(--gray-600); font-size: .9rem; }
.woocommerce .cart_totals table td { font-weight: 600; color: var(--gray-700); font-size: .9rem; text-align: right; }
.woocommerce .cart_totals table .order-total th { font-weight: 800; color: var(--brand-navy); font-size: 1rem; }
.woocommerce .cart_totals table .order-total td { font-weight: 800; color: var(--brand-navy); font-size: 1.125rem; }

.woocommerce .wc-proceed-to-checkout {
	padding: 1.25rem 1.5rem;
}
.woocommerce .wc-proceed-to-checkout .checkout-button {
	display: block;
	width: 100%;
	padding: .9rem 1.5rem;
	background: var(--brand-navy) !important;
	color: #fff !important;
	border: none;
	border-radius: var(--r-sm);
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	transition: background .2s;
}
.woocommerce .wc-proceed-to-checkout .checkout-button:hover { background: var(--brand-navy-mid) !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   10d. CHECKOUT PAGE - full-page compact split layout
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Strip every ancestor container so nothing clips or adds padding ──────── */
.woocommerce-checkout .site-container,
.woocommerce-checkout .site-content,
.woocommerce-checkout .site-content > .container,
.woocommerce-checkout #primary,
.woocommerce-checkout .site-main,
.woocommerce-checkout .page-content,
.woocommerce-checkout .entry-content,
.woocommerce-checkout article,
.woocommerce-cart .site-container,
.woocommerce-cart .site-content,
.woocommerce-cart .site-content > .container,
.woocommerce-cart #primary,
.woocommerce-cart .site-main,
.woocommerce-cart .page-content,
.woocommerce-cart .entry-content,
.woocommerce-cart article {
	max-width: 100% !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
	float: none !important;
	background: none !important;
}

/* ── Hero: compact strip - no tall banner on checkout ─────────────────────── */
.woocommerce-checkout .jbd-woo-hero {
	padding: 1rem 0;
}
.woocommerce-checkout .jbd-woo-hero .jbd-woo-hero__title { display: none; }
.woocommerce-checkout .jbd-woo-hero .jbd-breadcrumb ol { margin: 0; }

/* ── Outer body wrapper: flush to edges ───────────────────────────────────── */
.woocommerce-checkout .jbd-woo-body {
	padding: 0 !important;
}
.woocommerce-checkout .jbd-woo-body > .jbd-container {
	max-width: 100% !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* ── WC block checkout (WC 8+) ────────────────────────────────────────────── */
.woocommerce-checkout .wp-block-woocommerce-checkout,
.woocommerce-checkout .wc-block-checkout {
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* ── Classic shortcode woocommerce wrapper ────────────────────────────────── */
.woocommerce-checkout .woocommerce {
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	max-width: 100% !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   SPLIT-SCREEN LAYOUT
   Left (white)  - billing form
   Right (navy)  - order summary + payment
   ══════════════════════════════════════════════════════════════════════════ */
.jbd-checkout-grid {
	display: grid;
	grid-template-columns: 1fr 400px;
	min-height: calc(100vh - 120px); /* fill viewport below header + thin hero */
	align-items: stretch;
	gap: 0;
}

/* ── Left column: form ────────────────────────────────────────────────────── */
.jbd-checkout-grid__form {
	background: #fff;
	padding: 2rem 3rem 2rem 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	overflow-y: auto;
}

/* ── Right column: summary ────────────────────────────────────────────────── */
.jbd-checkout-grid__summary {
	background: var(--brand-navy);
	padding: 2rem 2rem 2rem 1.75rem;
	position: sticky;
	top: 0;
	max-height: 100vh;
	overflow-y: auto;
}

/* ── Section headings ─────────────────────────────────────────────────────── */
.woocommerce-checkout h3,
.jbd-checkout-grid__summary h3,
#order_review_heading {
	font-size: .875rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--brand-navy);
	margin: 0 0 1rem;
	padding-bottom: .6rem;
	border-bottom: 1px solid var(--color-border);
}
.jbd-checkout-grid__summary h3,
.jbd-checkout-grid__summary #order_review_heading {
	color: rgba(255,255,255,.6);
	border-bottom-color: rgba(255,255,255,.1);
}

/* ── Customer details wrapper ─────────────────────────────────────────────── */
.woocommerce-checkout #customer_details {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	background: transparent;
	border: none;
	padding: 0;
}
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	width: 100%;
	float: none;
	margin: 0;
	padding: 0;
}
.woocommerce-checkout #customer_details .col-1 > *,
.woocommerce-checkout #customer_details .col-2 > * {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
}

/* ── Compact form fields ──────────────────────────────────────────────────── */
.woocommerce-checkout .form-row {
	margin-bottom: .75rem !important;
}
.woocommerce-checkout .form-row label {
	font-size: .75rem !important;
	font-weight: 600 !important;
	color: var(--gray-500) !important;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-bottom: .3rem !important;
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
	padding: .5rem .75rem !important;
	font-size: .875rem !important;
	border-radius: var(--r-sm) !important;
	border: 1px solid var(--color-border) !important;
	background: var(--gray-50) !important;
	height: auto !important;
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus {
	border-color: var(--brand-navy-light) !important;
	background: #fff !important;
	box-shadow: 0 0 0 3px rgba(26,58,124,.1) !important;
	outline: none !important;
}

/* Two-col name fields */
.woocommerce-billing-fields .form-row-first,
.woocommerce-billing-fields .form-row-last,
.woocommerce-shipping-fields .form-row-first,
.woocommerce-shipping-fields .form-row-last {
	float: none;
	display: inline-block;
	vertical-align: top;
	width: calc(50% - .4rem);
}
.woocommerce-billing-fields .form-row-first,
.woocommerce-shipping-fields .form-row-first { margin-right: .75rem; }

/* ── Order review table (right column) ────────────────────────────────────── */
#order_review {
	background: transparent;
	border: none;
	padding: 0;
	border-radius: 0;
}
.woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: .75rem;
}
.woocommerce-checkout-review-order-table th {
	font-size: .6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: rgba(255,255,255,.4);
	padding: .5rem 0;
	border-bottom: 1px solid rgba(255,255,255,.1);
	text-align: left;
}
.woocommerce-checkout-review-order-table td {
	padding: .65rem 0;
	border-bottom: 1px solid rgba(255,255,255,.08);
	font-size: .875rem;
	color: rgba(255,255,255,.85);
	vertical-align: middle;
}
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
	font-size: 1rem;
	font-weight: 800;
	color: #fff;
	border-bottom: none;
	padding-top: .875rem;
}

/* ── Payment methods (right column) ──────────────────────────────────────── */
.woocommerce-checkout #payment {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--r-md);
	padding: 1rem;
	margin-top: 1rem;
}
.woocommerce-checkout #payment ul.payment_methods {
	list-style: none;
	margin: 0 0 .875rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .4rem;
}
.woocommerce-checkout #payment ul.payment_methods li label {
	font-weight: 600;
	color: rgba(255,255,255,.9);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .875rem;
}
.woocommerce-checkout #payment .payment_box {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: var(--r-sm);
	padding: .75rem;
	font-size: .8125rem;
	color: rgba(255,255,255,.7);
	margin-top: .4rem;
}

/* ── Place order button ───────────────────────────────────────────────────── */
#place_order {
	display: block;
	width: 100%;
	padding: .8rem 1.25rem;
	background: var(--brand-gold) !important;
	color: var(--brand-navy) !important;
	border: none;
	border-radius: var(--r-sm);
	font-size: .9375rem;
	font-weight: 800;
	cursor: pointer;
	transition: background .2s;
	text-align: center;
	margin-top: .875rem;
	letter-spacing: .01em;
}
#place_order:hover { background: var(--brand-gold-dark) !important; }

/* ── Secure note under place-order ───────────────────────────────────────── */
.woocommerce-checkout #payment .place-order::after {
	content: '🔒 Secured by Stripe';
	display: block;
	text-align: center;
	font-size: .75rem;
	color: rgba(255,255,255,.4);
	margin-top: .5rem;
}

/* ── WC notices inside checkout ───────────────────────────────────────────── */
.woocommerce-checkout .woocommerce-NoticeGroup,
.woocommerce-checkout .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
	padding: 0 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   10e. ORDER RECEIVED / THANK-YOU PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.woocommerce-order-received .woocommerce,
.woocommerce-order-pay .woocommerce {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-xl);
	padding: 2rem;
}
.woocommerce-thankyou-section { text-align: center; padding: 1rem 0 1.5rem; }
.woocommerce ul.order_details {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1px;
	background: var(--color-border);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	overflow: hidden;
}
.woocommerce ul.order_details li {
	background: var(--gray-50);
	padding: 1rem 1.25rem;
	font-size: .8125rem;
	font-weight: 600;
	color: var(--gray-500);
	text-transform: uppercase;
	letter-spacing: .04em;
}
.woocommerce ul.order_details li strong {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin-top: .3rem;
	text-transform: none;
	letter-spacing: 0;
}
.jbd-woo-thankyou-cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
}

/* ═══════════════════════════════════════════════════════════════════════════
   10f. WOOCOMMERCE RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
	.jbd-checkout-grid { grid-template-columns: 1fr 340px; }
}
@media (max-width: 1024px) {
	.woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
	/* Stack: summary on top, form below */
	.jbd-checkout-grid { grid-template-columns: 1fr; min-height: auto; }
	.jbd-checkout-grid__summary {
		position: static;
		max-height: none;
		padding: 1.5rem 1.25rem;
	}
	.jbd-checkout-grid__form { padding: 1.5rem 1.25rem; }
	.woocommerce div.product div.images { float: none; width: 100%; margin-right: 0; margin-bottom: 1.5rem; }
	.woocommerce div.product div.summary { float: none; width: 100%; }
}
@media (max-width: 640px) {
	.jbd-woo-hero { padding: 2rem 0 1.75rem; }
	.jbd-woo-body { padding: 1.75rem 0 3rem; }
	.woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
	.woocommerce ul.products li.product a img { height: 160px; }
	/* Cart: hide table headers, stack cells */
	.woocommerce-cart .woocommerce-cart-form { padding: 0 1rem 1rem; }
	.woocommerce table.cart thead { display: none; }
	.woocommerce table.cart td { display: block; width: 100% !important; padding: .5rem .25rem; border-bottom: none; }
	.woocommerce table.cart tr { border-bottom: 1px solid var(--color-border); display: block; padding: .75rem 0; }
	.woocommerce table.cart td.product-remove { text-align: right; }
	.woocommerce .cart-collaterals { justify-content: stretch; }
	.woocommerce .cart-collaterals .cart_totals { max-width: 100%; }
	/* Checkout - stack name fields */
	.woocommerce-billing-fields .form-row-first,
	.woocommerce-billing-fields .form-row-last,
	.woocommerce-shipping-fields .form-row-first,
	.woocommerce-shipping-fields .form-row-last {
		display: block;
		width: 100%;
		margin-right: 0;
	}
}
@media (max-width: 480px) {
	.woocommerce ul.products { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   11. MY ACCOUNT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.jbd-account-wrap { background: var(--gray-50); min-height: 60vh; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.jbd-account-hero {
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
	padding: 3rem 0 2.75rem;
	margin-bottom: 2.5rem;
}
.jbd-account-hero .jbd-breadcrumb ol { margin: 0 0 1rem; }
.jbd-account-hero__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.jbd-account-hero__info { display: flex; align-items: center; gap: 1.25rem; }
.jbd-account-avatar {
	width: 66px;
	height: 66px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid rgba(255,255,255,.25);
	flex-shrink: 0;
}
.jbd-account-avatar__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jbd-account-hero__title {
	color: #fff;
	font-size: clamp(1.35rem, 3vw, 2rem);
	font-weight: 800;
	margin: 0 0 .25rem;
	letter-spacing: -.02em;
}
.jbd-account-hero__subtitle { color: rgba(255,255,255,.7); font-size: .9375rem; margin: 0; }

/* ════════════════════════════════════════════════════════════════════════════
   AUTH PAGES - page-login.php / page-lost-password.php
   ════════════════════════════════════════════════════════════════════════════ */

/* Hero shared between login and lost-password pages */
.jbd-auth-page-hero {
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-light) 100%);
	padding: 2.5rem 0 2rem;
	color: #fff;
}
.jbd-auth-page-hero .jbd-breadcrumb ol { color: rgba(255,255,255,.6); }
.jbd-auth-page-hero .jbd-breadcrumb a { color: rgba(255,255,255,.75); }
.jbd-auth-page-hero .jbd-breadcrumb li[aria-current] { color: var(--brand-gold); }
.jbd-auth-page-hero__inner {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-top: 1rem;
}
.jbd-auth-page-hero__icon {
	width: 56px; height: 56px;
	background: rgba(255,255,255,.12);
	border: 2px solid rgba(255,255,255,.25);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.4rem;
	color: var(--brand-gold);
	flex-shrink: 0;
}
.jbd-auth-page-hero__title  { font-size: 1.75rem; font-weight: 700; margin: 0 0 .25rem; color: #fff; }
.jbd-auth-page-hero__subtitle { color: rgba(255,255,255,.75); font-size: .9375rem; margin: 0; }

/* Body wrapper */
.jbd-auth-page-body { padding: 3rem 0 4rem; background: var(--gray-50); }
.jbd-login-page .jbd-auth-page-body { background: var(--color-bg); }
.jbd-lostpassword-page .jbd-auth-page-body { background: var(--gray-50); }

/* ── WC Login/Register form override (.jbd-wc-auth) ────────────────────── */
.jbd-wc-auth {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	max-width: 960px;
	margin: 0 auto;
}
.jbd-wc-auth__panel {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: 2rem 2rem 2.25rem;
	box-shadow: var(--shadow-sm);
}
.jbd-wc-auth__panel--register { background: #f8faff; border-color: #c7d9f5; }

.jbd-wc-auth__header {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.75rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--color-border);
}
.jbd-wc-auth__icon {
	width: 44px; height: 44px;
	background: rgba(15,35,81,.08);
	border-radius: var(--r-md);
	display: flex; align-items: center; justify-content: center;
	font-size: 1.1rem;
	color: var(--brand-navy);
	flex-shrink: 0;
}
.jbd-wc-auth__icon--gold { background: rgba(245,166,35,.12); color: var(--brand-gold); }
.jbd-wc-auth__title   { font-size: 1.125rem; font-weight: 700; color: var(--brand-navy); margin: 0 0 .2rem; }
.jbd-wc-auth__subtitle { font-size: .875rem; color: var(--gray-500); margin: 0; }

/* Form fields */
.jbd-wc-field { margin-bottom: 1.1rem; }
.jbd-wc-field label {
	display: block;
	font-size: .875rem;
	font-weight: 600;
	color: var(--gray-700);
	margin-bottom: .4rem;
}
.jbd-wc-field__required { color: #ef4444; margin-left: .2rem; }
.jbd-wc-field input[type="text"],
.jbd-wc-field input[type="email"],
.jbd-wc-field input[type="password"] {
	width: 100%;
	padding: .7rem 1rem;
	border: 1.5px solid var(--color-border);
	border-radius: var(--r-sm);
	font-size: .9375rem;
	color: var(--gray-800);
	background: #fff;
	box-sizing: border-box;
	transition: border-color .15s, box-shadow .15s;
}
.jbd-wc-field input:focus {
	outline: none;
	border-color: var(--brand-navy-light);
	box-shadow: 0 0 0 3px rgba(26,58,124,.1);
}

/* WooCommerce also injects .woocommerce-Input inside .jbd-wc-auth */
.jbd-wc-auth .woocommerce-Input--text {
	width: 100%;
	padding: .7rem 1rem;
	border: 1.5px solid var(--color-border);
	border-radius: var(--r-sm);
	font-size: .9375rem;
	color: var(--gray-800);
	background: #fff;
	box-sizing: border-box;
	transition: border-color .15s, box-shadow .15s;
}
.jbd-wc-auth .woocommerce-Input--text:focus {
	outline: none;
	border-color: var(--brand-navy-light);
	box-shadow: 0 0 0 3px rgba(26,58,124,.1);
}

/* Remember / forgot row */
.jbd-wc-auth__row--remember {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
	gap: .5rem;
}
.jbd-wc-auth__remember {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .875rem;
	color: var(--gray-600);
	cursor: pointer;
}
.jbd-wc-auth__remember input[type="checkbox"] { accent-color: var(--brand-navy); }
.jbd-wc-auth__lost-pass {
	font-size: .875rem;
	color: var(--brand-navy-light);
	text-decoration: none;
}
.jbd-wc-auth__lost-pass:hover { text-decoration: underline; }

/* WC form submit buttons - full-width inside auth panels */
.jbd-wc-auth__form .jbd-btn { margin-top: .5rem; }

/* Register panel extras */
.jbd-register-note {
	font-size: .875rem;
	color: var(--gray-500);
	background: var(--gray-50);
	border-radius: var(--r-sm);
	padding: .6rem .875rem;
	margin-bottom: 1rem;
}
.jbd-register-note i { color: var(--brand-navy-light); margin-right: .35rem; }
.jbd-register-privacy { font-size: .8125rem; color: var(--gray-400); margin-bottom: 1rem; line-height: 1.5; }

/* WooCommerce error/success notices inside auth panels */
.jbd-wc-auth .woocommerce-error,
.jbd-wc-auth .woocommerce-message,
.jbd-wc-auth .woocommerce-info {
	margin-bottom: 1rem;
	border-radius: var(--r-sm);
}

/* Lost-password card */
.jbd-lostpassword-card {
	max-width: 520px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: 2.25rem 2.5rem;
	box-shadow: var(--shadow-sm);
}
.jbd-lostpassword-card .woocommerce-Input--text,
.jbd-lostpassword-card input[type="text"],
.jbd-lostpassword-card input[type="email"] {
	width: 100%;
	padding: .7rem 1rem;
	border: 1.5px solid var(--color-border);
	border-radius: var(--r-sm);
	font-size: .9375rem;
	box-sizing: border-box;
	margin-bottom: 1rem;
}
.jbd-lostpassword-card label {
	display: block;
	font-weight: 600;
	font-size: .875rem;
	color: var(--gray-700);
	margin-bottom: .4rem;
}
.jbd-lostpassword-card .button,
.jbd-lostpassword-card button[type="submit"] {
	background: var(--brand-navy);
	color: #fff;
	border: none;
	padding: .75rem 2rem;
	border-radius: var(--r-sm);
	font-size: .9375rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .15s;
}
.jbd-lostpassword-card .button:hover,
.jbd-lostpassword-card button[type="submit"]:hover { background: var(--brand-navy-light); }
.jbd-lostpassword-back {
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--color-border);
}
.jbd-lostpassword-back a {
	color: var(--brand-navy-light);
	text-decoration: none;
	font-size: .875rem;
	font-weight: 500;
}
.jbd-lostpassword-back a:hover { text-decoration: underline; }
.jbd-lostpassword-back i { margin-right: .35rem; }

/* Responsive */
@media (max-width: 768px) {
	.jbd-wc-auth { grid-template-columns: 1fr; }
	.jbd-auth-page-hero__inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
	.jbd-lostpassword-card { padding: 1.5rem 1.25rem; }
}
@media (max-width: 480px) {
	.jbd-wc-auth__panel { padding: 1.5rem 1.25rem; }
}

/* ── Auth notice (redirect from Add Listing) ─────────────────────────── */
.jbd-auth-notice {
	display: flex;
	align-items: center;
	gap: .75rem;
	background: #eff6ff;
	border: 1.5px solid #bfdbfe;
	border-radius: var(--r-md);
	padding: 1rem 1.25rem;
	color: var(--brand-navy);
	font-size: .9375rem;
	font-weight: 500;
	margin-bottom: 1.75rem;
}
.jbd-auth-notice i { color: var(--brand-gold); font-size: 1.1rem; flex-shrink: 0; }

/* ── Auth grid (guests) ─────────────────────────────────────────────────── */
.jbd-account-body { padding-bottom: 4rem; }
.jbd-account-auth-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: start;
}
.jbd-account-auth-card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-xl);
	padding: 2rem;
}
.jbd-account-auth-card h2 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 0 0 1.25rem;
	display: flex;
	align-items: center;
	gap: .6rem;
}
.jbd-account-auth-card h2 i { color: var(--brand-gold); }
.jbd-account-auth-card--register { background: var(--brand-navy); border-color: var(--brand-navy); }
.jbd-account-auth-card--register h2 { color: #fff; }
.jbd-account-auth-card--register p { color: rgba(255,255,255,.8); margin-bottom: 1.25rem; }
.jbd-account-perks {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .65rem;
}
.jbd-account-perks li {
	color: #4a5568 !important;
	font-size: .9375rem;
	display: flex;
	align-items: center;
	gap: .6rem;
}
.jbd-account-perks li i { color: var(--brand-gold); font-size: .875rem; }

/* Login form inside auth card */
.jbd-account-auth-card .woocommerce-form-login .form-row { margin-bottom: .875rem; }
.jbd-account-auth-card .woocommerce-form-login input[type="text"],
.jbd-account-auth-card .woocommerce-form-login input[type="password"],
.jbd-account-auth-card .woocommerce-form-login input[type="email"] {
	width: 100%;
	border: 1px solid var(--color-border);
	border-radius: var(--r-sm);
	padding: .6rem .875rem;
	font-size: .9375rem;
	color: var(--gray-700);
	background: #fff;
	box-sizing: border-box;
}
.jbd-account-auth-card .woocommerce-form-login input:focus {
	outline: none;
	border-color: var(--brand-navy-light);
	box-shadow: 0 0 0 3px rgba(26,58,124,.12);
}
.jbd-account-auth-card .woocommerce-form-login label {
	font-size: .875rem;
	font-weight: 600;
	color: var(--gray-700);
	display: block;
	margin-bottom: .3rem;
}
.jbd-account-auth-card .woocommerce-form-login .button {
	display: block !important;
	width: 100% !important;
	padding: .75rem 1.5rem !important;
	background: var(--brand-navy) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--r-sm) !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	cursor: pointer;
	text-align: center !important;
	margin-top: .5rem;
}
.jbd-account-auth-card .woocommerce-form-login .button:hover { background: var(--brand-navy-mid) !important; }
.jbd-account-auth-card .woocommerce-LostPassword { margin-top: .75rem; }
.jbd-account-auth-card .woocommerce-LostPassword a {
	font-size: .8125rem;
	color: var(--brand-navy-light);
	text-decoration: none;
}

/* ── Logged-in dashboard layout ─────────────────────────────────────────── */
.jbd-account-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 2rem;
	align-items: start;
}

/* Sidebar */
.jbd-account-sidebar {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-xl);
	overflow: hidden;
	position: sticky;
	top: 1.5rem;
}
.jbd-account-sidebar__user {
	display: flex;
	align-items: center;
	gap: .875rem;
	padding: 1.25rem;
	background: var(--brand-navy);
	border-bottom: 1px solid rgba(255,255,255,.1);
}
.jbd-account-sidebar__avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255,255,255,.3);
	flex-shrink: 0;
}
.jbd-account-sidebar__user-info strong {
	display: block;
	font-size: .9375rem;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 148px;
}
.jbd-account-sidebar__user-info span {
	display: block;
	font-size: .75rem;
	color: rgba(255,255,255,.6);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 148px;
}
.jbd-account-sidebar__nav ul { list-style: none; margin: 0; padding: 0; }
.jbd-account-sidebar__nav ul li a {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: .8rem 1.25rem;
	font-size: .9375rem;
	color: var(--gray-700);
	text-decoration: none;
	border-bottom: 1px solid var(--color-border);
	transition: background .15s, color .15s;
}
.jbd-account-sidebar__nav ul li a i {
	width: 18px;
	text-align: center;
	color: var(--gray-400);
	font-size: .875rem;
	flex-shrink: 0;
	transition: color .15s;
}
.jbd-account-sidebar__nav ul li a:hover,
.jbd-account-sidebar__nav ul li.is-active a { background: var(--brand-navy); color: #fff; }
.jbd-account-sidebar__nav ul li a:hover i,
.jbd-account-sidebar__nav ul li.is-active a i { color: var(--brand-gold); }
.jbd-account-sidebar__nav ul li.endpoint-customer-logout a { color: #ef4444; }
.jbd-account-sidebar__nav ul li.endpoint-customer-logout a i { color: #ef4444; }
.jbd-account-sidebar__nav ul li.endpoint-customer-logout a:hover { background: #fee2e2; color: #991b1b; }
/* Add New Listing - gold accent */
.jbd-account-sidebar__nav ul li.endpoint-add-listing a {
	color: var(--brand-navy);
	font-weight: 600;
	border-top: 1px solid var(--color-border);
	margin-top: .25rem;
	padding-top: .875rem;
}
.jbd-account-sidebar__nav ul li.endpoint-add-listing a i { color: var(--brand-gold); }
.jbd-account-sidebar__nav ul li.endpoint-add-listing a:hover { background: #fef9ec; }
.jbd-account-sidebar__cta {
	padding: 1rem 1.25rem;
	border-top: 1px solid var(--color-border);
}
.jbd-btn--outline-navy {
	background: transparent;
	border: 1.5px solid var(--brand-navy);
	color: var(--brand-navy) !important;
}
.jbd-btn--outline-navy:hover { background: var(--brand-navy); color: #fff !important; }
.jbd-btn--sm { padding: .45rem .875rem !important; font-size: .875rem !important; }
.jbd-btn--full { display: block !important; width: 100%; text-align: center; }

/* Main content area */
.jbd-account-content {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-xl);
	padding: 2rem;
	min-height: 400px;
}
.jbd-account-content h2 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 0 0 1.25rem;
	padding-bottom: .875rem;
	border-bottom: 2px solid var(--color-border);
}
/* Strip WC default wrappers inside our content panel */
/* WC shortcode renders its own nav+content wrapper - flatten it inside our panel */
.jbd-account-content .woocommerce {
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: block !important;          /* override any grid layout */
}
/* Hide WC's built-in navigation - our sidebar handles it */
.jbd-account-content .woocommerce-MyAccount-navigation {
	display: none !important;
}
/* Content area fills full width */
.jbd-account-content .woocommerce-MyAccount-content {
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	border-radius: 0 !important;
	width: 100% !important;
	float: none !important;
}
.jbd-account-content p { color: var(--gray-700); line-height: 1.65; }
.jbd-account-content a { color: var(--brand-navy-light); }

/* Orders table inside content */
.jbd-account-content .woocommerce-orders-table,
.jbd-account-content .woocommerce-MyAccount-downloads {
	width: 100%;
	border-collapse: collapse;
}
.jbd-account-content .woocommerce-orders-table th,
.jbd-account-content .woocommerce-MyAccount-downloads th {
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--gray-400);
	border-bottom: 2px solid var(--color-border);
	padding: .6rem .75rem;
	text-align: left;
}
.jbd-account-content .woocommerce-orders-table td,
.jbd-account-content .woocommerce-MyAccount-downloads td {
	padding: .875rem .75rem;
	border-bottom: 1px solid var(--color-border);
	font-size: .9rem;
	color: var(--gray-700);
	vertical-align: middle;
}
.jbd-account-content .woocommerce-orders-table .button {
	display: inline-block;
	padding: .3rem .85rem;
	background: var(--brand-navy);
	color: #fff !important;
	border-radius: var(--r-sm);
	font-size: .8125rem;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
}
/* ── Address list (/my-account/edit-address/) ───────────────────────────── */
.jbd-addresses-intro {
	font-size: .9375rem;
	color: var(--gray-500);
	margin: 0 0 1.5rem;
}
.jbd-addresses-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}
.jbd-address-card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	overflow: hidden;
}
.jbd-address-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	background: var(--gray-50);
	border-bottom: 1px solid var(--color-border);
}
.jbd-address-card__title {
	font-size: .9375rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 0;
	display: flex;
	align-items: center;
	gap: .5rem;
}
.jbd-address-card__title i { color: var(--brand-gold); font-size: .875rem; }
.jbd-address-card__edit {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .8125rem;
	font-weight: 600;
	color: var(--brand-navy-light);
	text-decoration: none;
	padding: .3rem .7rem;
	border: 1px solid var(--color-border);
	border-radius: var(--r-sm);
	background: #fff;
	transition: background .15s, color .15s;
}
.jbd-address-card__edit:hover {
	background: var(--brand-navy);
	color: #fff;
	border-color: var(--brand-navy);
}
.jbd-address-card__body {
	padding: 1.25rem;
}
.jbd-address-card__body address {
	font-style: normal;
	font-size: .9375rem;
	color: var(--gray-700);
	line-height: 1.75;
}
.jbd-address-card__empty {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .875rem;
	color: var(--gray-400);
	font-style: italic;
	margin: 0;
}
.jbd-address-card__empty i { color: var(--gray-300); }

/* ── Edit address form (/my-account/edit-address/billing|shipping) ──────── */

.jbd-addr-form-wrap { display: flex; flex-direction: column; gap: 0; }

/* Header */
.jbd-addr-form-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.75rem;
	flex-wrap: wrap;
}
.jbd-addr-form-header__left { display: flex; align-items: center; gap: 1rem; }
.jbd-addr-form-header__icon {
	width: 48px;
	height: 48px;
	border-radius: var(--r-md);
	background: rgba(15,35,81,.07);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
	color: var(--brand-navy);
	flex-shrink: 0;
}
.jbd-addr-form-header__title {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--brand-navy);
	margin: 0 0 .2rem;
}
.jbd-addr-form-header__subtitle {
	font-size: .875rem;
	color: var(--gray-500);
	margin: 0;
}
.jbd-addr-form-header__back {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .875rem;
	font-weight: 600;
	color: var(--gray-500);
	text-decoration: none;
	padding: .5rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--r-sm);
	background: #fff;
	white-space: nowrap;
	flex-shrink: 0;
	transition: color .15s, border-color .15s;
}
.jbd-addr-form-header__back:hover { color: var(--brand-navy); border-color: var(--brand-navy); }

/* Form card */
.jbd-addr-form {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-xl);
	overflow: hidden;
}

/* Field grid - 2 columns, fields that need full width have .form-row-wide */
.jbd-addr-form__fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 1.5rem;
	row-gap: 0;
	padding: 2rem 2rem 0;
}
.jbd-addr-form__fields .form-row      { margin: 0 0 1.25rem; }
.jbd-addr-form__fields .form-row-first { grid-column: 1; }
.jbd-addr-form__fields .form-row-last  { grid-column: 2; }
.jbd-addr-form__fields .form-row-wide  { grid-column: 1 / -1; }

/* Labels */
.jbd-addr-form__fields label,
.jbd-addr-form__fields .form-row > label {
	display: block;
	font-size: .8125rem;
	font-weight: 700;
	color: var(--gray-600);
	margin-bottom: .4rem;
	text-transform: uppercase;
	letter-spacing: .05em;
}
.jbd-addr-form__fields label .required { color: #ef4444; }
.jbd-addr-form__fields label .optional {
	font-size: .75rem;
	font-weight: 400;
	color: var(--gray-400);
	text-transform: none;
	letter-spacing: 0;
}

/* All text inputs */
.jbd-addr-form__fields input[type="text"],
.jbd-addr-form__fields input[type="email"],
.jbd-addr-form__fields input[type="tel"],
.jbd-addr-form__fields input[type="number"],
.jbd-addr-form__fields textarea {
	display: block;
	width: 100%;
	border: 1.5px solid var(--color-border);
	border-radius: var(--r-sm);
	padding: .7rem 1rem;
	font-size: .9375rem;
	color: var(--gray-700);
	background: #fff;
	box-sizing: border-box;
	transition: border-color .15s, box-shadow .15s;
}
.jbd-addr-form__fields input:focus,
.jbd-addr-form__fields textarea:focus {
	outline: none;
	border-color: var(--brand-navy-light);
	box-shadow: 0 0 0 3px rgba(26,58,124,.12);
}

/* Native <select> - WC replaces these with Select2;
   hide when Select2 is active so they don't double-render.
   Scoped to .jbd-addr-form and also .jbd-account-content for belt-and-suspenders. */
.jbd-addr-form select,
.jbd-addr-form__fields select,
.jbd-account-content .select2-hidden-accessible { display: none !important; }

.jbd-addr-form__fields select:not(.select2-hidden-accessible):not([data-select2-id]) {
	display: block !important;
	width: 100%;
	border: 1.5px solid var(--color-border);
	border-radius: var(--r-sm);
	padding: .7rem 1rem;
	font-size: .9375rem;
	color: var(--gray-700);
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 1rem center;
	padding-right: 2.5rem;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
}

/* ── Select2 skin (WooCommerce country/state dropdowns) ──────────────────── */
.jbd-addr-form__fields .select2-container { width: 100% !important; }

.jbd-addr-form__fields .select2-container--default .select2-selection--single {
	height: auto;
	border: 1.5px solid var(--color-border);
	border-radius: var(--r-sm);
	background: #fff;
	padding: .7rem 2.5rem .7rem 1rem;
	font-size: .9375rem;
	color: var(--gray-700);
	line-height: 1.5;
	transition: border-color .15s, box-shadow .15s;
}
.jbd-addr-form__fields .select2-container--default.select2-container--open .select2-selection--single,
.jbd-addr-form__fields .select2-container--default.select2-container--focus .select2-selection--single {
	border-color: var(--brand-navy-light);
	box-shadow: 0 0 0 3px rgba(26,58,124,.12);
	outline: none;
}
.jbd-addr-form__fields .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--gray-700);
	padding: 0;
	line-height: inherit;
}
.jbd-addr-form__fields .select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: var(--gray-400);
}
.jbd-addr-form__fields .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 50%;
	right: .875rem;
	transform: translateY(-50%);
	height: auto;
	width: 16px;
}
.jbd-addr-form__fields .select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: var(--gray-400) transparent transparent;
	border-width: 5px 4px 0;
	margin-top: -2px;
	margin-left: -4px;
}
.jbd-addr-form__fields .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent var(--brand-navy);
	border-width: 0 4px 5px;
}

/* Select2 dropdown */
.select2-dropdown {
	border: 1.5px solid var(--brand-navy-light);
	border-radius: var(--r-sm);
	box-shadow: 0 8px 24px rgba(15,35,81,.12);
	background: #fff;
	z-index: 9999;
}
.select2-search--dropdown .select2-search__field {
	border: 1px solid var(--color-border);
	border-radius: var(--r-xs);
	padding: .5rem .75rem;
	font-size: .875rem;
	color: var(--gray-700);
}
.select2-search--dropdown .select2-search__field:focus {
	outline: none;
	border-color: var(--brand-navy-light);
}
.select2-results__option {
	padding: .55rem 1rem;
	font-size: .9375rem;
	color: var(--gray-700);
}
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
	background: var(--brand-navy);
	color: #fff;
}
.select2-container--default .select2-results__option[aria-selected="true"],
.select2-container--default .select2-results__option[data-selected="true"] {
	background: rgba(15,35,81,.06);
	color: var(--brand-navy);
	font-weight: 600;
}

/* Validation states */
.jbd-addr-form__fields .woocommerce-invalid input,
.jbd-addr-form__fields .woocommerce-invalid .select2-selection {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 3px rgba(239,68,68,.1) !important;
}
.jbd-addr-form__fields .woocommerce-validated input,
.jbd-addr-form__fields .woocommerce-validated .select2-selection {
	border-color: #059669 !important;
}
.jbd-addr-form__fields .woocommerce-input-wrapper { display: block; width: 100%; }

/* Form footer */
.jbd-addr-form__footer {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.5rem 2rem;
	background: var(--gray-50);
	border-top: 1px solid var(--color-border);
	flex-wrap: wrap;
}
.jbd-addr-form__footer .jbd-btn--primary {
	padding: .75rem 2rem !important;
	font-size: .9375rem !important;
}
.jbd-addr-form__cancel {
	font-size: .875rem;
	color: var(--gray-500);
	text-decoration: none;
	font-weight: 600;
}
.jbd-addr-form__cancel:hover { color: var(--gray-700); }

/* ── Edit account details form ───────────────────────────────────────────── */
.jbd-account-content .woocommerce-EditAccountForm fieldset {
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: 1.25rem 1.5rem;
	margin: 1.5rem 0 1rem;
}
.jbd-account-content .woocommerce-EditAccountForm legend {
	font-size: .875rem;
	font-weight: 700;
	color: var(--gray-500);
	text-transform: uppercase;
	letter-spacing: .05em;
	padding: 0 .5rem;
}
.jbd-account-content .woocommerce-EditAccountForm .form-row-first,
.jbd-account-content .woocommerce-EditAccountForm .form-row-last {
	display: inline-block;
	vertical-align: top;
	width: calc(50% - .625rem);
}
.jbd-account-content .woocommerce-EditAccountForm .form-row-first { margin-right: 1.25rem; }
.jbd-account-content .woocommerce-EditAccountForm button[name="save_account_details"] {
	padding: .7rem 1.75rem;
	background: var(--brand-navy);
	color: #fff;
	border: none;
	border-radius: var(--r-sm);
	font-size: .9375rem;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s;
}
.jbd-account-content .woocommerce-EditAccountForm button[name="save_account_details"]:hover {
	background: var(--brand-navy-mid);
}

/* ── My Account responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.jbd-account-layout { grid-template-columns: 200px 1fr; }
}
@media (max-width: 768px) {
	.jbd-account-auth-grid { grid-template-columns: 1fr; }
	.jbd-account-layout { grid-template-columns: 1fr; }
	.jbd-account-sidebar { position: static; }
	.jbd-account-hero__inner { flex-direction: column; align-items: flex-start; }
	.jbd-addresses-grid { grid-template-columns: 1fr; }
	/* Address edit form */
	.jbd-addr-form-header { flex-direction: column; gap: .875rem; }
	.jbd-addr-form__fields { grid-template-columns: 1fr; padding: 1.25rem 1.25rem 0; }
	.jbd-addr-form__fields .form-row-first,
	.jbd-addr-form__fields .form-row-last { grid-column: 1; padding-left: 0; padding-right: 0; }
	.jbd-addr-form__footer { padding: 1rem 1.25rem; }
	/* Edit account form */
	.jbd-account-content .woocommerce-EditAccountForm .form-row-first,
	.jbd-account-content .woocommerce-EditAccountForm .form-row-last {
		display: block; width: 100%; margin-right: 0;
	}
}
@media (max-width: 640px) {
	.jbd-account-hero { padding: 2rem 0 1.75rem; }
	.jbd-account-content { padding: 1.25rem; }
	.jbd-account-content .woocommerce-orders-table thead { display: none; }
	.jbd-account-content .woocommerce-orders-table td { display: block; padding: .4rem .5rem; }
	.jbd-account-content .woocommerce-orders-table tr { display: block; border-bottom: 1px solid var(--color-border); padding: .5rem 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MILESTONE 2 - FEATURED & PINNED LISTING SYSTEM
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Pinned card - navy border + top accent ──────────────────────────────── */
.jbd-listing-card--pinned {
	border: 2px solid var(--brand-navy);
	box-shadow: 0 0 0 3px rgba(15,35,81,.12), var(--shadow-md, 0 4px 16px rgba(0,0,0,.08));
	position: relative;
}
.jbd-listing-card--pinned::before {
	content: '';
	display: block;
	height: 4px;
	background: var(--brand-navy);
	border-radius: var(--r-md) var(--r-md) 0 0;
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
}

/* ── Featured card - gold border + top accent ────────────────────────────── */
.jbd-listing-card--featured {
	border: 2px solid var(--brand-gold);
	box-shadow: 0 0 0 3px rgba(245,166,35,.15), var(--shadow-md, 0 4px 16px rgba(0,0,0,.08));
	position: relative;
}
.jbd-listing-card--featured::before {
	content: '';
	display: block;
	height: 4px;
	background: var(--brand-gold);
	border-radius: var(--r-md) var(--r-md) 0 0;
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
}

/* ── Ribbon labels (Pinned / Featured) ───────────────────────────────────── */
.jbd-listing-card__ribbon {
	position: absolute;
	top: .75rem;
	right: .75rem;
	display: inline-flex;
	align-items: center;
	gap: .3em;
	padding: .25rem .65rem;
	border-radius: var(--r-full);
	font-size: .6875rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	line-height: 1.2;
	pointer-events: none;
	z-index: 2;
}
.jbd-listing-card__ribbon--pinned {
	background: var(--brand-navy);
	color: #fff;
}
.jbd-listing-card__ribbon--featured {
	background: var(--brand-gold);
	color: #fff;
}

/* Keep the category badge from clashing with the ribbon */
.jbd-listing-card--pinned .jbd-listing-card__badge,
.jbd-listing-card--featured .jbd-listing-card__badge {
	bottom: .75rem;
	top: auto;
}

/* ── Archive / taxonomy listing cards (HivePress template area) ─────────── */
/* HivePress renders its own card HTML - target the wrapper it produces.     */
.hp-listing--pinned .hp-listing__inner,
article.hp-listing--pinned {
	border: 2px solid var(--brand-navy) !important;
	box-shadow: 0 0 0 3px rgba(15,35,81,.12) !important;
}
.hp-listing--featured .hp-listing__inner,
article.hp-listing--featured {
	border: 2px solid var(--brand-gold) !important;
	box-shadow: 0 0 0 3px rgba(245,166,35,.15) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LISTING UPGRADE PURCHASE PANEL  (listing-upgrades.php)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Panel container ─────────────────────────────────────────────────────── */
.jbd-upgrade-panel {
	margin-top: 2.5rem;
	padding: 2rem;
	background: var(--gray-50);
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
}

.jbd-upgrade-panel__header {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.jbd-upgrade-panel__icon {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-navy);
	color: var(--brand-gold);
	border-radius: var(--r-md);
	font-size: 1.25rem;
}

.jbd-upgrade-panel__title {
	font-size: 1.1875rem;
	font-weight: 700;
	color: var(--gray-900);
	margin: 0 0 .25rem;
}

.jbd-upgrade-panel__subtitle {
	font-size: .875rem;
	color: var(--color-muted);
	margin: 0;
}

/* ── Cards grid ──────────────────────────────────────────────────────────── */
.jbd-upgrade-panel__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25rem;
}

/* ── Individual upgrade card ─────────────────────────────────────────────── */
.jbd-upgrade-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--color-surface);
	border: 2px solid var(--color-border);
	border-radius: var(--r-md);
	padding: 1.5rem;
	transition: box-shadow .2s, border-color .2s;
}

/* Featured card - gold accent */
.jbd-upgrade-card--featured {
	border-color: var(--brand-gold);
}
.jbd-upgrade-card--featured .jbd-upgrade-card__icon {
	color: var(--brand-gold);
	background: rgba(245,166,35,.1);
}

/* Pinned card - navy accent */
.jbd-upgrade-card--pinned {
	border-color: var(--brand-navy);
}
.jbd-upgrade-card--pinned .jbd-upgrade-card__icon {
	color: #fff;
	background: var(--brand-navy);
}

/* Active (already purchased) state */
.jbd-upgrade-card--active {
	opacity: .88;
	background: var(--gray-50);
}

/* "Most Visible" top label */
.jbd-upgrade-card__top-label {
	position: absolute;
	top: -1px;
	right: 1rem;
	background: var(--brand-navy);
	color: #fff;
	font-size: .6875rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: .2rem .6rem;
	border-radius: 0 0 var(--r-xs) var(--r-xs);
}

/* "Active" badge top-right */
.jbd-upgrade-card__active-badge {
	position: absolute;
	top: .75rem;
	right: .75rem;
	display: inline-flex;
	align-items: center;
	gap: .3em;
	background: var(--color-success);
	color: #fff;
	font-size: .6875rem;
	font-weight: 700;
	padding: .2rem .6rem;
	border-radius: var(--r-full);
}

/* Icon circle */
.jbd-upgrade-card__icon {
	width: 3rem;
	height: 3rem;
	border-radius: var(--r-full);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

/* Card name */
.jbd-upgrade-card__name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--gray-900);
	margin: 0 0 .75rem;
}

/* Perks list */
.jbd-upgrade-card__perks {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .4rem;
	font-size: .875rem;
	color: var(--color-text);
	flex: 1;
}
.jbd-upgrade-card__perks li {
	display: flex;
	align-items: center;
	gap: .5rem;
}
.jbd-upgrade-card__perks .fa-check {
	color: var(--color-success);
	font-size: .75rem;
}

/* Active message */
.jbd-upgrade-card__active-msg {
	font-size: .875rem;
	color: var(--color-muted);
	margin: 0 0 .75rem;
	flex: 1;
}

/* Price */
.jbd-upgrade-card__price {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: .25rem;
	line-height: 1;
}
.jbd-upgrade-card__duration {
	font-size: .8125rem;
	font-weight: 400;
	color: var(--color-muted);
}

/* Expiry countdown */
.jbd-upgrade-card__expiry {
	font-size: .8125rem;
	color: var(--color-muted);
	display: flex;
	align-items: center;
	gap: .4em;
	margin-bottom: .75rem;
}

/* CTA button - full width, pushed to bottom */
.jbd-upgrade-card__btn {
	margin-top: 1rem;
	width: 100%;
	justify-content: center;
	text-align: center;
}

/* ── Secure payment note ─────────────────────────────────────────────────── */
.jbd-upgrade-panel__note {
	margin: 1.25rem 0 0;
	font-size: .8125rem;
	color: var(--color-muted);
	display: flex;
	align-items: center;
	gap: .4em;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
	.jbd-upgrade-panel { padding: 1.25rem; }
	.jbd-upgrade-panel__header { flex-direction: column; }
	.jbd-upgrade-panel__cards { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE FEATURED LISTING ADVERTISEMENT
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Section wrapper - full-width navy gradient background ───────────────── */
.jbd-promo-section {
	background: linear-gradient(135deg, var(--brand-navy) 0%, #1a3a7c 60%, #0d1f47 100%);
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}

/* Subtle decorative circles */
.jbd-promo-section::before,
.jbd-promo-section::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	opacity: .06;
	background: #fff;
	pointer-events: none;
}
.jbd-promo-section::before {
	width: 600px;
	height: 600px;
	top: -200px;
	right: -150px;
}
.jbd-promo-section::after {
	width: 400px;
	height: 400px;
	bottom: -180px;
	left: -100px;
}

/* ── Inner two-column layout ──────────────────────────────────────────────── */
.jbd-promo__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

/* ── Left content ─────────────────────────────────────────────────────────── */
.jbd-promo__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	background: rgba(245,166,35,.18);
	color: var(--brand-gold);
	font-size: .8125rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .35rem .85rem;
	border-radius: var(--r-full);
	margin-bottom: 1.25rem;
}

.jbd-promo__title {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.25;
	margin: 0 0 1rem;
}

.jbd-promo__subtitle {
	font-size: 1rem;
	color: rgba(255,255,255,.75);
	line-height: 1.65;
	margin: 0 0 1.75rem;
}

.jbd-promo__benefits {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .65rem;
}
.jbd-promo__benefits li {
	display: flex;
	align-items: center;
	gap: .65rem;
	font-size: .9375rem;
	color: rgba(255,255,255,.88);
}
.jbd-promo__benefits .fa-check-circle {
	color: var(--brand-gold);
	font-size: 1rem;
	flex-shrink: 0;
}

.jbd-promo__cta-row {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	margin-bottom: 1.25rem;
}

.jbd-promo__cta-btn {
	font-size: 1rem;
	padding: .85rem 1.75rem;
	white-space: nowrap;
}

.jbd-promo__cta-note {
	font-size: .875rem;
	color: rgba(255,255,255,.65);
}

.jbd-promo__trust {
	font-size: .8125rem;
	color: rgba(255,255,255,.5);
	display: flex;
	align-items: center;
	gap: .35em;
	flex-wrap: wrap;
	margin: 0;
}
.jbd-promo__trust .fas {
	color: rgba(255,255,255,.4);
}

/* ── Right: tier cards ────────────────────────────────────────────────────── */
.jbd-promo__tiers {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	align-items: stretch;
}

.jbd-promo-tier {
	position: relative;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--r-md);
	padding: 1.5rem 1.25rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0;
	transition: transform .2s, box-shadow .2s;
}
.jbd-promo-tier:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0,0,0,.25);
}

/* Featured tier - gold accent line */
.jbd-promo-tier--featured {
	border-top: 3px solid var(--brand-gold);
}

/* Pinned tier - brighter background (premium feel) */
.jbd-promo-tier--pinned {
	background: rgba(255,255,255,.1);
	border: 2px solid rgba(255,255,255,.25);
	border-top: 3px solid #fff;
}

/* "Most Visible" ribbon on pinned card */
.jbd-promo-tier__top-label {
	position: absolute;
	top: -1px;
	right: 1rem;
	background: #fff;
	color: var(--brand-navy);
	font-size: .625rem;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: .2rem .55rem;
	border-radius: 0 0 var(--r-xs) var(--r-xs);
}

/* Header row: icon + name */
.jbd-promo-tier__header {
	display: flex;
	align-items: center;
	gap: .65rem;
	margin-bottom: .75rem;
}

.jbd-promo-tier__icon {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: var(--r-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}
.jbd-promo-tier--featured .jbd-promo-tier__icon {
	background: rgba(245,166,35,.2);
	color: var(--brand-gold);
}
.jbd-promo-tier--pinned .jbd-promo-tier__icon {
	background: rgba(255,255,255,.15);
	color: #fff;
}

.jbd-promo-tier__name {
	font-size: .9375rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

/* Price */
.jbd-promo-tier__price {
	font-size: 1.625rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	margin-bottom: 1rem;
}
.jbd-promo-tier--featured .jbd-promo-tier__price { color: var(--brand-gold); }
.jbd-promo-tier__per {
	font-size: .75rem;
	font-weight: 400;
	color: rgba(255,255,255,.55);
}

/* Perks list */
.jbd-promo-tier__perks {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .45rem;
	flex: 1;
}
.jbd-promo-tier__perks li {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	font-size: .8125rem;
	color: rgba(255,255,255,.8);
	line-height: 1.35;
}
.jbd-promo-tier__perks .fa-check {
	color: var(--brand-gold);
	font-size: .7rem;
	margin-top: .2rem;
	flex-shrink: 0;
}
.jbd-promo-tier--pinned .jbd-promo-tier__perks .fa-check { color: #fff; }

/* CTA button inside card */
.jbd-promo-tier__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .65rem 1rem;
	border-radius: var(--r-sm);
	font-size: .8125rem;
	font-weight: 700;
	text-decoration: none;
	transition: background .2s, color .2s;
	background: rgba(255,255,255,.1);
	color: #fff;
	border: 1px solid rgba(255,255,255,.2);
	margin-top: auto;
}
.jbd-promo-tier__btn:hover {
	background: rgba(255,255,255,.2);
	color: #fff;
}
.jbd-promo-tier__btn--primary {
	background: var(--brand-gold);
	color: var(--brand-navy);
	border-color: var(--brand-gold);
}
.jbd-promo-tier__btn--primary:hover {
	background: var(--brand-gold-dark);
	color: var(--brand-navy);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.jbd-promo__inner { grid-template-columns: 1fr; gap: 2.5rem; }
	.jbd-promo__tiers { grid-template-columns: repeat(2, 1fr); max-width: 520px; }
}
@media (max-width: 640px) {
	.jbd-promo-section { padding: 3rem 0; }
	.jbd-promo__tiers { grid-template-columns: 1fr; max-width: 100%; }
	.jbd-promo__cta-row { flex-direction: column; align-items: flex-start; gap: .75rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   32. PRICING PAGE (Milestone 3)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.jbd-pricing-hero {
	background: var(--brand-navy);
	padding: 3rem 0 2.5rem;
	position: relative;
	overflow: hidden;
}
.jbd-pricing-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient( ellipse at 70% 50%, rgba(245,166,35,.08) 0%, transparent 60% );
	pointer-events: none;
}
.jbd-pricing-hero .jbd-breadcrumb ol { margin-bottom: 1.25rem; }
.jbd-pricing-hero .jbd-breadcrumb a,
.jbd-pricing-hero .jbd-breadcrumb li { color: rgba(255,255,255,.65); }
.jbd-pricing-hero .jbd-breadcrumb li[aria-current] { color: #fff; }
.jbd-pricing-hero__title {
	font-family: var(--font-heading);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 .75rem;
	line-height: 1.15;
}
.jbd-pricing-hero__subtitle {
	font-size: 1.0625rem;
	color: rgba(255,255,255,.75);
	max-width: 560px;
	margin: 0;
	line-height: 1.6;
}

/* ── Section scaffold ─────────────────────────────────────────────────────── */
.jbd-pricing-section { padding: 4rem 0; }
.jbd-pricing-section--addons { background: var(--gray-50); }
.jbd-pricing-section--faq { background: #fff; }

.jbd-pricing-header {
	text-align: center;
	margin-bottom: 2.5rem;
}
.jbd-pricing-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--brand-gold-dark);
	background: rgba(245,166,35,.1);
	padding: .3rem .85rem;
	border-radius: var(--r-full);
	margin-bottom: .9rem;
}
.jbd-pricing-title {
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: var(--brand-navy);
	margin: 0 0 .65rem;
}
.jbd-pricing-subtitle {
	color: var(--color-muted);
	font-size: .9375rem;
	max-width: 540px;
	margin: 0 auto;
	line-height: 1.6;
}
.jbd-pricing-note {
	text-align: center;
	font-size: .8125rem;
	color: var(--color-muted);
	margin-top: 1.5rem;
}
.jbd-pricing-note .fas { margin-right: .3rem; color: var(--color-success); }

/* ── Package cards grid ───────────────────────────────────────────────────── */
.jbd-pkg-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	align-items: start;
}

.jbd-pkg-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--r-xl);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.jbd-pkg-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

/* Most Popular badge */
.jbd-pkg-card__badge {
	position: absolute;
	top: -1px;
	right: 1.5rem;
	background: var(--brand-gold);
	color: var(--brand-navy);
	font-size: .65rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .3rem .85rem;
	border-radius: 0 0 var(--r-sm) var(--r-sm);
}

/* Card header */
.jbd-pkg-card__header {
	padding: 1.75rem 1.5rem 1.25rem;
	background: var(--brand-navy);
	color: #fff;
	text-align: center;
}
.jbd-pkg-card--premium .jbd-pkg-card__header {
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
}
.jbd-pkg-card__icon {
	width: 3rem;
	height: 3rem;
	border-radius: var(--r-full);
	background: rgba(255,255,255,.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	margin: 0 auto .75rem;
	color: #fff;
}
.jbd-pkg-card--premium .jbd-pkg-card__icon {
	background: rgba(245,166,35,.25);
	color: var(--brand-gold);
}
.jbd-pkg-card__name {
	font-family: var(--font-heading);
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 .5rem;
	color: #fff;
}
.jbd-pkg-card__price {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	margin-bottom: .25rem;
}
.jbd-pkg-card--premium .jbd-pkg-card__price { color: var(--brand-gold); }
.jbd-pkg-card__price strong { color: inherit; font-weight: 800; }
.jbd-pkg-card__price .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; color: inherit; }
.jbd-pkg-card__duration {
	font-size: .75rem;
	font-weight: 400;
	color: rgba(255,255,255,.6);
}
.jbd-pkg-card__tagline {
	font-size: .8125rem;
	color: rgba(255,255,255,.6);
	margin: .5rem 0 0;
}

/* Card body */
.jbd-pkg-card__body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.jbd-pkg-card__features {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .55rem;
	flex: 1;
}
.jbd-pkg-card__features li {
	display: flex;
	align-items: flex-start;
	gap: .55rem;
	font-size: .875rem;
	color: var(--color-text);
	line-height: 1.4;
}
.jbd-pkg-card__features .fa-check { color: var(--color-success); font-size: .75rem; margin-top: .2rem; flex-shrink: 0; }
.jbd-pkg-card__features .fa-star  { color: var(--brand-gold); font-size: .75rem; margin-top: .2rem; flex-shrink: 0; }
.jbd-pkg-feature--no { color: var(--color-muted) !important; }
.jbd-pkg-feature--no .fa-times { color: var(--gray-300); font-size: .75rem; margin-top: .2rem; flex-shrink: 0; }

.jbd-pkg-card__cta {
	display: block;
	text-align: center;
	width: 100%;
}
.jbd-pkg-card--premium .jbd-pkg-card__cta {
	box-shadow: var(--shadow-gold);
}

/* ── Upgrade add-on cards ─────────────────────────────────────────────────── */
.jbd-addon-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: 760px;
	margin: 0 auto;
}

.jbd-addon-card {
	background: var(--brand-navy);
	border-radius: var(--r-xl);
	padding: 2rem;
	color: #fff;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.jbd-addon-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}
.jbd-addon-card--featured { background: linear-gradient(135deg, #1a3a7c 0%, #0f2351 100%); }
.jbd-addon-card--pinned   { background: linear-gradient(135deg, #0f2351 0%, #081840 100%); }

.jbd-addon-card__top-label {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--brand-gold);
	color: var(--brand-navy);
	font-size: .6rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .07em;
	padding: .2rem .6rem;
	border-radius: var(--r-full);
}
.jbd-addon-card__icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: var(--r-full);
	background: rgba(255,255,255,.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	margin-bottom: .85rem;
	color: var(--brand-gold);
}
.jbd-addon-card__name {
	font-family: var(--font-heading);
	font-size: 1.125rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 .4rem;
}
.jbd-addon-card__price {
	font-family: var(--font-heading);
	font-size: 1.625rem;
	font-weight: 800;
	color: var(--brand-gold);
	line-height: 1;
	margin-bottom: 1rem;
}
.jbd-addon-card__price strong { color: inherit; font-weight: inherit; }
.jbd-addon-card__price .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; color: inherit; }
.jbd-addon-card__per {
	font-size: .75rem;
	font-weight: 400;
	color: rgba(255,255,255,.5);
}
.jbd-addon-card__perks {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .45rem;
	flex: 1;
}
.jbd-addon-card__perks li {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	font-size: .8125rem;
	color: rgba(255,255,255,.8);
	line-height: 1.35;
}
.jbd-addon-card__perks .fa-check { color: var(--brand-gold); font-size: .7rem; margin-top: .2rem; flex-shrink: 0; }
.jbd-addon-card__btn {
	margin-top: auto;
	text-align: center;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.jbd-faq {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: .75rem;
}
.jbd-faq__item {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--r-md);
	overflow: hidden;
}
.jbd-faq__item[open] {
	box-shadow: var(--shadow-xs);
}
.jbd-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	font-weight: 600;
	font-size: .9375rem;
	color: var(--brand-navy);
	cursor: pointer;
	list-style: none;
	user-select: none;
}
.jbd-faq__question::-webkit-details-marker { display: none; }
.jbd-faq__caret {
	font-size: .75rem;
	color: var(--color-muted);
	flex-shrink: 0;
	transition: transform .2s var(--ease);
}
.jbd-faq__item[open] .jbd-faq__caret { transform: rotate(180deg); }
.jbd-faq__answer {
	padding: 0 1.25rem 1rem;
	font-size: .9rem;
	color: var(--color-text);
	line-height: 1.6;
	border-top: 1px solid var(--color-border);
}
.jbd-faq__answer a { color: var(--brand-navy-mid); text-decoration: underline; }

/* ── CTA strip ────────────────────────────────────────────────────────────── */
.jbd-pricing-cta-strip {
	background: var(--brand-navy);
	padding: 3.5rem 0;
	position: relative;
	overflow: hidden;
}
.jbd-pricing-cta-strip::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient( ellipse at 30% 50%, rgba(245,166,35,.1) 0%, transparent 55% );
	pointer-events: none;
}
.jbd-pricing-cta-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}
.jbd-pricing-cta-strip__text h2 {
	font-family: var(--font-heading);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 .5rem;
}
.jbd-pricing-cta-strip__text p {
	color: rgba(255,255,255,.7);
	margin: 0;
	font-size: .9375rem;
}
.jbd-pricing-cta-strip__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}
.jbd-btn--outline-light {
	border: 2px solid rgba(255,255,255,.4);
	color: #fff;
	background: transparent;
	padding: .65rem 1.5rem;
	border-radius: var(--r-full);
	font-weight: 700;
	font-size: .875rem;
	text-decoration: none;
	transition: border-color .2s, background .2s;
	display: inline-flex;
	align-items: center;
	gap: .45rem;
}
.jbd-btn--outline-light:hover {
	border-color: rgba(255,255,255,.75);
	background: rgba(255,255,255,.08);
	color: #fff;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.jbd-pkg-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 680px) {
	.jbd-addon-grid { grid-template-columns: 1fr; }
	.jbd-pricing-cta-strip__inner { flex-direction: column; text-align: center; }
	.jbd-pricing-cta-strip__actions { flex-direction: column; width: 100%; }
	.jbd-pricing-cta-strip__actions .jbd-btn { width: 100%; justify-content: center; }
}

/* ── Modal Registration Form ──────────────────────────────────────────────── */
.jbd-modal-register { margin-top: 1.5rem; }

.jbd-modal-register__divider {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-bottom: 1.25rem;
	color: #8a95a3;
	font-size: .8125rem;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.jbd-modal-register__divider::before,
.jbd-modal-register__divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e2e8f0;
}

.jbd-modal-register__field { margin-bottom: .875rem; }
.jbd-modal-register__field label {
	display: block;
	font-size: .875rem;
	font-weight: 500;
	color: #374151;
	margin-bottom: .35rem;
}
.jbd-modal-register__field label span { color: #e53e3e; margin-left: .15rem; }
.jbd-modal-register__field input {
	width: 100%;
	padding: .55rem .75rem;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: .9375rem;
	box-sizing: border-box;
}
.jbd-modal-register__field input:focus {
	outline: none;
	border-color: var(--brand-gold, #c9a84c);
	box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.jbd-modal-register__btn { margin-top: .5rem; }

/* ── Social icon buttons on listing pages ──────────────────────────────────── */
.jbd-listing-header__social {
	display: flex;
	align-items: center;
	gap: .375rem;
	flex-wrap: wrap;
}
.jbd-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f1f5f9;
	color: #334155;
	font-size: .875rem;
	text-decoration: none;
	transition: background .2s, color .2s, transform .15s;
	border: 1px solid #e2e8f0;
}
.jbd-social-icon:hover { transform: translateY(-2px); }
.jbd-social-icon--facebook:hover  { background: #1877f2; color: #fff; border-color: #1877f2; }
.jbd-social-icon--instagram:hover { background: #e1306c; color: #fff; border-color: #e1306c; }
.jbd-social-icon--twitter:hover,
.jbd-social-icon--x:hover          { background: #000;    color: #fff; border-color: #000; }
.jbd-social-icon--yelp:hover       { background: #d32323; color: #fff; border-color: #d32323; }
.jbd-social-icon--linkedin:hover   { background: #0077b5; color: #fff; border-color: #0077b5; }
.jbd-social-icon--youtube:hover    { background: #ff0000; color: #fff; border-color: #ff0000; }
.jbd-social-icon--pinterest:hover  { background: #e60023; color: #fff; border-color: #e60023; }
.jbd-social-icon--tiktok:hover     { background: #000;    color: #fff; border-color: #000; }
.jbd-social-icon--google:hover     { background: #4285f4; color: #fff; border-color: #4285f4; }
.jbd-social-icon--tripadvisor:hover{ background: #34e0a1; color: #000; border-color: #34e0a1; }

/* ── Sticky "Add Your Business" CTA bar ────────────────────────────────────── */
.jbd-sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #0f2351;
	color: #fff;
	padding: .75rem 1rem;
	box-shadow: 0 -2px 12px rgba(0,0,0,.25);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	animation: jbdSlideUp .35s ease;
}
@keyframes jbdSlideUp {
	from { transform: translateY(100%); }
	to   { transform: translateY(0); }
}
.jbd-sticky-cta[hidden] { display: none; }
.jbd-sticky-cta__inner {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}
.jbd-sticky-cta__msg {
	margin: 0;
	font-size: .9375rem;
	line-height: 1.4;
}
.jbd-sticky-cta__msg strong { color: var(--brand-gold, #c9a84c); }
.jbd-sticky-cta__btn {
	white-space: nowrap;
	flex-shrink: 0;
}
.jbd-sticky-cta__close {
	position: absolute;
	right: .75rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: rgba(255,255,255,.6);
	font-size: 1rem;
	cursor: pointer;
	padding: .25rem .5rem;
	line-height: 1;
	transition: color .15s;
}
.jbd-sticky-cta__close:hover { color: #fff; }
@media (max-width: 600px) {
	.jbd-sticky-cta__msg { font-size: .875rem; text-align: center; }
	.jbd-sticky-cta { padding-right: 2.5rem; }
}

/* ── Featured listings block on single blog posts ──────────────────────────── */
.jbd-post-featured-listings {
	margin: 2.5rem 0 1rem;
	padding-top: 2rem;
	border-top: 1px solid #e2e8f0;
}
.jbd-section__header--left {
	text-align: left;
	margin-bottom: 1.5rem;
}
.jbd-section__header--left .jbd-section__eyebrow { justify-content: flex-start; }
.jbd-post-featured-listings__cta {
	margin-top: 1.5rem;
	text-align: center;
}

/* ── Social share bar on single blog posts ─────────────────────────────────── */
.jbd-share {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .75rem;
	padding: 1.5rem 0;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
	margin: 2rem 0 1.5rem;
	text-align: center;
}
.jbd-share__label {
	font-size: .8125rem;
	font-weight: 700;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: .06em;
	white-space: nowrap;
}
.jbd-share__buttons {
	display: flex;
	align-items: center;
	gap: .5rem;
	flex-wrap: wrap;
	justify-content: center;
}
.jbd-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .375rem;
	padding: .5rem 1rem;
	border-radius: 6px;
	font-size: .8125rem;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: opacity .15s, transform .15s;
	line-height: 1;
	height: 36px;
	box-sizing: border-box;
}
.jbd-share__btn:hover { opacity: .85; transform: translateY(-1px); }
.jbd-share__btn--facebook { background: #1877f2; color: #fff; }
.jbd-share__btn--twitter  { background: #000;    color: #fff; }
.jbd-share__btn--linkedin { background: #0077b5; color: #fff; }
.jbd-share__btn--whatsapp { background: #25d366; color: #fff; }
.jbd-share__btn--email    { background: #64748b; color: #fff; }
.jbd-share__btn--copy     { background: #f1f5f9; color: #334155; border: 1px solid #e2e8f0; }
.jbd-share__btn--copy.jbd-share__btn--copied { background: #dcfce7; color: #16a34a; border-color: #86efac; }
@media (max-width: 600px) {
	.jbd-share__buttons { gap: .375rem; }
	.jbd-share__btn { padding: .5rem .75rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE SUBURBS SECTION  (.jbd-suburbs-*)
   ═══════════════════════════════════════════════════════════════════════════ */

.jbd-suburbs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
}

.jbd-suburb-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--gray-200);
	border-radius: var(--r-md);
	padding: 20px;
	text-decoration: none;
	color: inherit;
	transition: border-color .2s, box-shadow .2s, transform .2s;
	position: relative;
}
.jbd-suburb-card:hover {
	border-color: var(--brand-navy-mid);
	box-shadow: 0 4px 20px rgba(15,35,81,.1);
	transform: translateY(-2px);
}
.jbd-suburb-card__icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
	border-radius: var(--r-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.1rem;
}
.jbd-suburb-card__body {
	flex: 1;
	min-width: 0;
}
.jbd-suburb-card__name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 0 0 4px;
	line-height: 1.2;
}
.jbd-suburb-card__desc {
	font-size: .8rem;
	color: var(--color-muted);
	margin: 0 0 8px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.jbd-suburb-card__count {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: .75rem;
	font-weight: 600;
	color: var(--brand-gold-dark);
	background: #fff8ee;
	border: 1px solid #ffe4a0;
	padding: 2px 10px;
	border-radius: 9999px;
}
.jbd-suburb-card__arrow {
	flex-shrink: 0;
	color: var(--gray-300);
	font-size: .9rem;
	transition: color .2s, transform .2s;
}
.jbd-suburb-card:hover .jbd-suburb-card__arrow {
	color: var(--brand-navy-mid);
	transform: translateX(3px);
}

@media (max-width: 768px) {
	.jbd-suburbs-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CITY / SUBURB LANDING PAGES  (.jbd-city-*)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Remove the theme's default site-content padding on city/suburb pages */
.page-template-page-city .site-content { padding: 0 !important; }

.jbd-city-page { font-family: inherit; }

/* ── Hero ── */
.jbd-city-hero {
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 60%, var(--brand-navy-light) 100%);
	color: #fff;
	padding: 56px 24px 52px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.jbd-city-hero__bg-pattern {
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
	pointer-events: none;
}
.jbd-city-hero > * { position: relative; }
.jbd-city-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.25);
	color: #fff;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 5px 16px;
	border-radius: 9999px;
	margin-bottom: 18px;
}
.jbd-city-hero__title {
	font-size: clamp(1.8rem, 4.5vw, 2.8rem);
	font-weight: 800;
	margin: 0 0 14px;
	line-height: 1.15;
	color: #fff;
}
.jbd-city-hero__sub {
	font-size: clamp(.95rem, 2vw, 1.15rem);
	color: rgba(255,255,255,.85);
	margin: 0 auto 32px;
	max-width: 540px;
	line-height: 1.6;
}
.jbd-city-hero__stats {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	flex-wrap: wrap;
	margin-bottom: 32px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 16px;
	padding: 20px 32px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}
.jbd-city-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	flex: 1;
	min-width: 100px;
}
.jbd-city-stat__sep {
	width: 1px;
	height: 40px;
	background: rgba(255,255,255,.2);
}
.jbd-city-stat__number {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--brand-gold);
	line-height: 1;
}
.jbd-city-stat__label {
	font-size: .7rem;
	color: rgba(255,255,255,.65);
	text-transform: uppercase;
	letter-spacing: .06em;
	text-align: center;
}
.jbd-city-hero__actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}
.jbd-city-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--brand-gold);
	color: var(--brand-navy) !important;
	font-weight: 700;
	font-size: .95rem;
	padding: 13px 28px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background .2s, transform .2s;
}
.jbd-city-hero__cta:hover { background: var(--brand-gold-dark); transform: translateY(-2px); }
.jbd-city-hero__cta--ghost {
	background: rgba(255,255,255,.12);
	color: #fff !important;
	border: 1px solid rgba(255,255,255,.35);
}
.jbd-city-hero__cta--ghost:hover { background: rgba(255,255,255,.22); }

/* ── City Highlights Bar ── */
.jbd-city-highlights {
	background: var(--brand-navy);
	border-bottom: 3px solid var(--brand-gold);
}
.jbd-city-highlights__grid {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
}
.jbd-city-highlight {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 32px;
	border-right: 1px solid rgba(255,255,255,.1);
	color: #fff;
}
.jbd-city-highlight:last-child { border-right: none; }
.jbd-city-highlight > i {
	font-size: 1.2rem;
	color: var(--brand-gold);
	flex-shrink: 0;
}
.jbd-city-highlight__val {
	display: block;
	font-size: .95rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}
.jbd-city-highlight__lbl {
	display: block;
	font-size: .7rem;
	color: rgba(255,255,255,.55);
	text-transform: uppercase;
	letter-spacing: .05em;
}

/* ── GEO About section ── */
.jbd-geo-about {
	background: var(--gray-50);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	padding: 40px 24px;
}
.jbd-geo-about__grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: start;
	max-width: 1200px;
	margin: 0 auto;
}
.jbd-geo-about__heading {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 0 0 12px;
}
.jbd-geo-about__text {
	font-size: .95rem;
	line-height: 1.75;
	color: var(--color-text);
	margin: 0 0 12px;
}
.jbd-geo-about__list {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.jbd-geo-about__list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: .875rem;
	color: var(--color-text);
}
.jbd-geo-about__list li i {
	color: var(--brand-navy-mid);
	width: 16px;
	text-align: center;
	flex-shrink: 0;
}
.jbd-geo-about__stat-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	min-width: 220px;
}
.jbd-geo-stat-card {
	background: #fff;
	border: 1px solid var(--gray-200);
	border-radius: var(--r-md);
	padding: 16px 14px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.jbd-geo-stat-card > i {
	font-size: 1.1rem;
	color: var(--brand-navy-mid);
}
.jbd-geo-stat-card__num {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--brand-navy);
	line-height: 1;
}
.jbd-geo-stat-card__lbl {
	font-size: .7rem;
	color: var(--color-muted);
	text-transform: uppercase;
	letter-spacing: .05em;
}
@media (max-width: 768px) {
	.jbd-geo-about__grid { grid-template-columns: 1fr; gap: 24px; }
	.jbd-geo-about__stat-cards { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
	.jbd-geo-about__stat-cards { grid-template-columns: 1fr 1fr; }
}

/* ── Breadcrumb (light variant) ── */
.jbd-breadcrumb--light { margin-bottom: 20px; }
.jbd-breadcrumb--light ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
	font-size: .8rem;
}
.jbd-breadcrumb--light li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6); }
.jbd-breadcrumb--light li::before { content: '/'; }
.jbd-breadcrumb--light li:first-child::before { display: none; }
.jbd-breadcrumb--light a { color: rgba(255,255,255,.8); text-decoration: none; }
.jbd-breadcrumb--light a:hover { color: #fff; }

/* ── Intro blurb ── */
.jbd-city-intro {
	max-width: 760px;
	margin: 0 auto;
	padding: 28px 0 0;
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--color-text);
	text-align: center;
}

/* ── Generic section ── */
.jbd-city-section { padding: 36px 0; border-top: 1px solid var(--color-border); }
.jbd-city-section:first-of-type { border-top: none; }
.jbd-city-section__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}
.jbd-city-section__title { font-size: 1.45rem; font-weight: 700; color: var(--brand-navy); margin: 0; }
.jbd-city-section__count { font-size: .875rem; color: var(--color-muted); font-weight: 500; }
.jbd-city-section__footer { text-align: center; margin-top: 24px; }

/* ── Empty state ── */
.jbd-city-empty { text-align: center; padding: 56px 24px; color: var(--color-muted); }
.jbd-city-empty__icon { font-size: 3rem; margin-bottom: 16px; opacity: .3; }
.jbd-city-empty__text { font-size: 1.05rem; margin-bottom: 24px; }

/* ── Top-rated row ── */
.jbd-city-toprated { display: flex; flex-direction: column; gap: 12px; }
.jbd-toprated-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--gray-200);
	border-radius: var(--r-md);
	padding: 16px 20px;
	text-decoration: none;
	color: inherit;
	transition: border-color .2s, box-shadow .2s, transform .15s;
}
.jbd-toprated-card:hover {
	border-color: var(--brand-gold);
	box-shadow: 0 4px 16px rgba(245,166,35,.15);
	transform: translateY(-1px);
}
.jbd-toprated-card__rank {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
	color: #fff;
	font-weight: 800;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.jbd-toprated-card__img {
	width: 56px;
	height: 56px;
	border-radius: var(--r-sm);
	overflow: hidden;
	flex-shrink: 0;
	background: var(--gray-100);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-400);
	font-size: 1.3rem;
}
.jbd-toprated-card__img img { width: 100%; height: 100%; object-fit: cover; }
.jbd-toprated-card__body { flex: 1; min-width: 0; }
.jbd-toprated-card__body h3 { font-size: 1rem; font-weight: 700; margin: 0 0 3px; color: var(--brand-navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jbd-toprated-card__cat { font-size: .75rem; color: var(--color-muted); display: block; margin-bottom: 4px; }
.jbd-toprated-card__rating { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--color-muted); }
.jbd-toprated-card__rating strong { color: var(--brand-navy); }
.jbd-toprated-card__arrow { color: var(--gray-300); font-size: .85rem; flex-shrink: 0; transition: color .2s, transform .2s; }
.jbd-toprated-card:hover .jbd-toprated-card__arrow { color: var(--brand-gold-dark); transform: translateX(3px); }

/* ── Category pills ── */
.jbd-city-cats { display: flex; flex-wrap: wrap; gap: 10px; }
.jbd-city-cat-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--gray-100);
	border: 1px solid var(--gray-200);
	color: var(--brand-navy);
	font-size: .875rem;
	font-weight: 600;
	padding: 9px 18px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background .15s, border-color .15s, color .15s;
}
.jbd-city-cat-pill:hover { background: var(--brand-navy); border-color: var(--brand-navy); color: #fff; }
.jbd-city-cat-pill__count {
	background: rgba(0,0,0,.08);
	border-radius: 9999px;
	font-size: .72rem;
	padding: 2px 8px;
	font-weight: 700;
}
.jbd-city-cat-pill:hover .jbd-city-cat-pill__count { background: rgba(255,255,255,.2); }
.jbd-city-cat-pill--all {
	background: var(--brand-navy);
	border-color: var(--brand-navy);
	color: #fff;
}
.jbd-city-cat-pill--all:hover { background: var(--brand-gold); border-color: var(--brand-gold); color: #0f2351; }

/* ── Homepage FAQ section ── */
.jbd-faq-section { background: var(--gray-50, #f8f9fb); }
.jbd-faq-grid { max-width: 860px; margin: 0 auto; }
.jbd-faq-section .jbd-city-faq { gap: 10px; }
.jbd-faq-section .jbd-city-faq__item { background: #fff; }

/* ── Category page FAQ section ── */
.jbd-cat-faq-section {
	margin-top: 48px;
	padding: 40px 0 0;
	border-top: 2px solid var(--gray-200);
}
.jbd-cat-faq__inner { max-width: 860px; }
.jbd-cat-faq__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 0 0 20px;
}

/* ── Category description intro ── */
.jbd-cat-description {
	background: var(--gray-50, #f8f9fa);
	border-left: 4px solid var(--brand-navy);
	border-radius: 0 8px 8px 0;
	padding: 16px 20px;
	margin-bottom: 32px;
}
.jbd-cat-description p {
	margin: 0;
	color: var(--color-text, #1a2540);
	font-size: .97rem;
	line-height: 1.7;
}

/* ── Related services section ── */
.jbd-cat-related {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--gray-200);
}
.jbd-cat-related__title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 0 0 16px;
}
.jbd-cat-related__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.jbd-cat-related__item a {
	display: inline-block;
	background: #fff;
	border: 1px solid var(--brand-navy);
	color: var(--brand-navy) !important;
	font-size: .85rem;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background .15s, color .15s;
}
.jbd-cat-related__item a:hover {
	background: var(--brand-navy);
	color: #fff !important;
}

/* ── City links section ── */
.jbd-cat-cities {
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid var(--gray-200);
}
.jbd-cat-cities__title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 0 0 14px;
}
.jbd-cat-cities__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.jbd-cat-cities__item a {
	display: inline-block;
	background: var(--brand-navy);
	color: #fff !important;
	font-size: .85rem;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background .15s;
}
.jbd-cat-cities__item a:hover {
	background: var(--brand-navy-mid, #1c3a6e);
}

/* ── Suggested keyword backlinks ── */
.jbd-cat-keywords {
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid var(--gray-200);
}
.jbd-cat-keywords__title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 0 0 12px;
}
.jbd-cat-keywords__list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.jbd-cat-keywords__item a {
	display: inline-block;
	background: var(--gray-50, #f8f9fa);
	border: 1px solid var(--gray-200);
	color: var(--color-text, #1a2540) !important;
	font-size: .8rem;
	padding: 4px 12px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background .15s, border-color .15s;
}
.jbd-cat-keywords__item a:hover {
	background: var(--gray-100, #f1f3f5);
	border-color: var(--brand-navy);
}

/* ── No-results search notice ── */
.jbd-no-results-notice {
	background: #fff8e1;
	border-left: 4px solid var(--brand-gold);
	border-radius: 6px;
	padding: 14px 18px;
	margin-bottom: 20px;
	font-size: .95rem;
	color: #555;
	display: flex;
	align-items: center;
	gap: 10px;
}
.jbd-no-results-notice .fas {
	color: var(--brand-gold);
	font-size: 1.1rem;
	flex-shrink: 0;
}

/* ── Featured Listings Spotlight (category pages) ── */
.jbd-cat-featured {
	margin-bottom: 32px;
	padding: 20px 0 28px;
	border-bottom: 2px solid var(--brand-gold);
}
.jbd-cat-featured__header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}
.jbd-cat-featured__badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--brand-gold);
	color: var(--brand-navy);
	font-size: .75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
	padding: 4px 10px;
	border-radius: 9999px;
	flex-shrink: 0;
}
.jbd-cat-featured__title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 0;
}
.jbd-cat-featured__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
}

/* ── Featured card ── */
.jbd-feat-card {
	position: relative;
	background: #fff;
	border: 2px solid var(--brand-gold);
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 12px rgba(0,0,0,.07);
	transition: box-shadow .2s, transform .2s;
}
.jbd-feat-card--pinned {
	border-color: var(--brand-navy);
}
.jbd-feat-card:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,.12);
	transform: translateY(-2px);
}
.jbd-feat-card__feat-badge,
.jbd-feat-card__pin-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: .7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	padding: 3px 8px;
	border-radius: 9999px;
	z-index: 2;
}
.jbd-feat-card__feat-badge {
	background: var(--brand-gold);
	color: var(--brand-navy);
}
.jbd-feat-card__pin-badge {
	background: var(--brand-navy);
	color: #fff;
}
.jbd-feat-card__inner {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	flex: 1;
}
.jbd-feat-card__thumb {
	height: 130px;
	background: var(--gray-100, #f1f3f5) center/cover no-repeat;
}
.jbd-feat-card__thumb--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-300, #ced4da);
	font-size: 2.5rem;
}
.jbd-feat-card__body {
	padding: 14px 16px 10px;
	flex: 1;
}
.jbd-feat-card__name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 0 0 6px;
	line-height: 1.3;
}
.jbd-feat-card__rating {
	display: flex;
	align-items: center;
	gap: 3px;
	font-size: .82rem;
	color: var(--brand-gold);
	margin-bottom: 6px;
}
.jbd-feat-card__rating-text {
	color: var(--color-muted, #6c757d);
	font-size: .8rem;
	margin-left: 4px;
}
.jbd-feat-card__address,
.jbd-feat-card__phone {
	font-size: .82rem;
	color: var(--color-muted, #6c757d);
	margin: 0 0 4px;
	display: flex;
	align-items: flex-start;
	gap: 6px;
}
.jbd-feat-card__address i,
.jbd-feat-card__phone i {
	color: var(--brand-navy);
	flex-shrink: 0;
	margin-top: 2px;
}
.jbd-feat-card__actions {
	display: flex;
	gap: 6px;
	padding: 10px 12px 12px;
	flex-wrap: wrap;
}
.jbd-feat-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: .8rem;
	font-weight: 600;
	padding: 7px 12px;
	border-radius: 8px;
	text-decoration: none;
	transition: background .15s, color .15s;
	flex: 1;
	justify-content: center;
	white-space: nowrap;
}
.jbd-feat-card__cta--call {
	background: var(--brand-navy);
	color: #fff !important;
}
.jbd-feat-card__cta--call:hover { background: var(--brand-navy-mid, #1c3a6e); }
.jbd-feat-card__cta--web {
	background: var(--gray-100, #f1f3f5);
	color: var(--brand-navy) !important;
}
.jbd-feat-card__cta--web:hover { background: var(--gray-200); }
.jbd-feat-card__cta--view {
	background: var(--brand-gold);
	color: var(--brand-navy) !important;
}
.jbd-feat-card__cta--view:hover { background: var(--brand-gold-dark, #c8960a); }

@media (max-width: 600px) {
	.jbd-cat-featured__grid { grid-template-columns: 1fr; }
	.jbd-feat-card__actions { flex-direction: column; }
	.jbd-feat-card__cta { flex: none; width: 100%; }
}

/* ── Browse by Category on single listing pages ── */
.jbd-listing-city-cats {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--gray-200);
}
.jbd-listing-city-cats__title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin-bottom: 16px;
}

/* ── FAQ accordion ── */
.jbd-city-faq { display: flex; flex-direction: column; gap: 8px; }
.jbd-city-faq__item {
	border: 1px solid var(--gray-200);
	border-radius: var(--r-md);
	overflow: hidden;
	background: #fff;
}
.jbd-city-faq__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: none;
	border: none;
	padding: 18px 20px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--brand-navy);
	cursor: pointer;
	text-align: left;
	transition: background .15s;
}
.jbd-city-faq__q:hover { background: var(--gray-50); }
.jbd-city-faq__icon { flex-shrink: 0; font-size: .8rem; color: var(--color-muted); transition: transform .2s; }
.jbd-city-faq__a { padding: 0 20px 18px; color: var(--color-text); line-height: 1.7; font-size: .95rem; }
.jbd-city-faq__a p { margin: 0; }

/* ── Nearby cities ── */
.jbd-city-nearby {
	background: var(--gray-50);
	border-top: 1px solid var(--color-border);
	padding: 48px 0;
}
.jbd-city-nearby .jbd-container { padding-top: 0; }
.jbd-city-nearby__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.jbd-city-nearby__link {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1px solid var(--gray-200);
	border-radius: var(--r-md);
	padding: 14px 16px;
	text-decoration: none;
	color: inherit;
	transition: border-color .15s, box-shadow .15s, transform .15s;
}
.jbd-city-nearby__link:hover {
	border-color: var(--brand-navy-mid);
	box-shadow: 0 3px 12px rgba(15,35,81,.1);
	transform: translateY(-1px);
}
.jbd-city-nearby__link > i:first-child {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
	color: #fff;
	border-radius: var(--r-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .9rem;
	flex-shrink: 0;
}
.jbd-city-nearby__link span { flex: 1; min-width: 0; }
.jbd-city-nearby__link strong { display: block; font-size: .9rem; font-weight: 700; color: var(--brand-navy); }
.jbd-city-nearby__link small { display: block; font-size: .75rem; color: var(--color-muted); }

/* ── Bottom CTA ── */
.jbd-city-cta {
	background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-mid) 100%);
	text-align: center;
	padding: 64px 24px;
	color: #fff;
}
.jbd-city-cta__emoji { font-size: 2.5rem; margin-bottom: 12px; }
.jbd-city-cta__title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin: 0 0 12px; color: #fff !important; }
.jbd-city-cta__sub { color: rgba(255,255,255,.82) !important; margin: 0 auto 32px; font-size: 1.05rem; max-width: 520px; }
.jbd-city-cta__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.jbd-city-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--brand-gold);
	color: var(--brand-navy) !important;
	font-weight: 700;
	font-size: 1rem;
	padding: 14px 32px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background .2s, transform .2s;
}
.jbd-city-cta__btn:hover { background: var(--brand-gold-dark); transform: translateY(-2px); }
.jbd-city-cta__btn--ghost {
	background: rgba(255,255,255,.12);
	color: #fff !important;
	border: 1px solid rgba(255,255,255,.3);
}
.jbd-city-cta__btn--ghost:hover { background: rgba(255,255,255,.22); }

/* ── Responsive ── */
@media (max-width: 900px) {
	.jbd-city-highlights__grid { justify-content: flex-start; }
	.jbd-city-highlight { padding: 14px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); width: 50%; }
	.jbd-city-highlight:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 768px) {
	.jbd-city-hero { padding: 40px 16px 36px; }
	.jbd-city-hero__stats { padding: 16px 20px; gap: 0; }
	.jbd-city-stat__number { font-size: 1.3rem; }
	.jbd-city-section { padding: 32px 0; }
	.jbd-city-nearby__grid { grid-template-columns: 1fr 1fr; }
	.jbd-toprated-card { flex-wrap: wrap; }
}
@media (max-width: 480px) {
	.jbd-city-nearby__grid { grid-template-columns: 1fr; }
	.jbd-city-highlight { width: 100%; }
}
