/* ==========================================================================
   Auto Hub 2 – frontend
   Colors & fonts follow WoodMart (--wd-primary-color, --wd-title-font …)
   ========================================================================== */
:root {
	--wah-accent: var(--wd-primary-color, #d10f1c);
	--wah-accent-2: color-mix(in srgb, var(--wah-accent) 82%, #000);
	--wah-accent-soft: color-mix(in srgb, var(--wah-accent) 8%, #fff);
	--wah-accent-line: color-mix(in srgb, var(--wah-accent) 24%, #fff);
	--wah-ink: #14161b;
	--wah-ink-2: #2a2e36;
	--wah-text: #5b616b;
	--wah-muted: #8a909a;
	--wah-line: #e7e9ee;
	--wah-bg: #f5f6f8;
	--wah-card: #fff;
	--wah-ok: #16a34a;
	--wah-star: #f5a524;
	--wah-r: 14px;
	--wah-r-sm: calc(var(--wah-r) * .65);
	--wah-shadow-sm: 0 1px 2px rgba(15, 18, 25, .05), 0 2px 8px rgba(15, 18, 25, .04);
	--wah-shadow: 0 1px 2px rgba(15, 18, 25, .04), 0 12px 32px -12px rgba(15, 18, 25, .16);
	--wah-shadow-lg: 0 24px 60px -20px rgba(15, 18, 25, .28);
	--wah-tf: var(--wd-title-font, inherit);
	--wah-bf: var(--wd-text-font, inherit);
	--wah-overlay: .7;
	--wah-sticky-top: calc(var(--wd-admin-bar-h, 0px) + 90px);
}

/* ---------- Base / resets (protect against theme-wide button styles) ---------- */
.wah-page .wd-content-layout { padding-top: 0; padding-bottom: 0; }
.wah-single, .wah-archive-page, .wah-sc, .wah-finder, .wah-acc, .wah-card { font-family: var(--wah-bf); color: var(--wah-text); }
.wah-single *, .wah-archive-page *, .wah-card * { box-sizing: border-box; }
button[class*="wah-"], .wah-promo-thumbs > button, .wah-strip-grid > button {
	appearance: none; margin: 0; padding: 0; min-height: 0; width: auto; height: auto;
	border: 0; border-radius: 0; background: none; box-shadow: none; color: inherit;
	font: inherit; line-height: inherit; letter-spacing: normal; text-transform: none; cursor: pointer;
}
.wah-ico { display: inline-flex; flex: 0 0 auto; width: 1.2em; height: 1.2em; line-height: 0; }
.wah-ico svg { width: 100%; height: 100%; }
.wah-ico-img img { width: 100%; height: 100%; object-fit: contain; }
.wah-container { position: relative; }
.wah-h { position: relative; margin: 0 0 20px; font-family: var(--wah-tf); font-size: clamp(21px, 2.2vw, 26px); line-height: 1.25; font-weight: 700; color: var(--wah-ink); letter-spacing: -.01em; }
.wah-eyebrow { display: inline-block; margin-bottom: 8px; color: var(--wah-accent); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.wah-sec-head { margin-bottom: 22px; }
.wah-sec-head .wah-h { margin: 0; }
.wah-sec-head.is-center { text-align: center; }
.wah-sec-head.is-split { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.wah-link { display: inline-flex; align-items: center; gap: 6px; color: var(--wah-ink); font-weight: 600; text-decoration: none; }
.wah-link:hover { color: var(--wah-accent); }
.wah-link .wah-ico { width: 16px; height: 16px; transition: transform .2s ease; }
.wah-link:hover .wah-ico { transform: translateX(3px); }
.wah-muted { color: var(--wah-muted); }

/* ---------- Buttons ---------- */
.wah-actions { display: grid; gap: 10px; }
.wah-actions-md, .wah-actions-sm { grid-template-columns: 1fr 1fr; }
.wah-actions.is-single { grid-template-columns: 1fr; }
.wah-btn, button.wah-btn, input.wah-btn {
	position: relative; display: inline-flex !important; align-items: center; justify-content: center; gap: 9px;
	min-height: 52px !important; padding: 12px 22px !important; border: 1.5px solid transparent !important; border-radius: var(--wah-r-sm) !important;
	font-family: var(--wah-tf) !important; font-size: 15px !important; font-weight: 600 !important; line-height: 1.2 !important;
	text-transform: none !important; letter-spacing: normal !important; text-decoration: none !important; white-space: nowrap;
	cursor: pointer; transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}
.wah-btn:active { transform: translateY(1px); }
.wah-btn .wah-ico { width: 20px; height: 20px; }
.wah-btn .wah-btn-arrow { position: absolute; right: 16px; width: 16px; height: 16px; opacity: .75; transition: transform .2s ease; }
.wah-btn:hover .wah-btn-arrow { transform: translateX(3px); }
.wah-btn-wa, .wah-btn-primary { background: var(--wah-accent) !important; color: #fff !important; box-shadow: 0 8px 20px -10px var(--wah-accent) !important; }
.wah-btn-wa:hover, .wah-btn-primary:hover { background: var(--wah-accent-2) !important; color: #fff !important; }
.wah-btn-call { background: #fff !important; color: var(--wah-ink) !important; border-color: var(--wah-ink) !important; }
.wah-btn-call:hover { background: var(--wah-ink) !important; color: #fff !important; }
.wah-btn-dark { background: var(--wah-ink) !important; color: #fff !important; }
.wah-btn-dark:hover { background: #000 !important; color: #fff !important; }
.wah-btn-ghost { background: #fff !important; color: var(--wah-ink) !important; border-color: var(--wah-line) !important; }
.wah-btn-ghost:hover { border-color: var(--wah-ink) !important; }
.wah-btn-ghost .wah-ico { width: 16px; height: 16px; }
.wah-btn-light { background: #fff !important; color: var(--wah-ink) !important; }
.wah-btn-light:hover { background: var(--wah-ink) !important; color: #fff !important; }
.wah-btn.is-block { width: 100%; }
.wah-btn:focus-visible, .wah-chip-btn:focus-visible, .wah-secnav a:focus-visible, .wah-cat:focus-visible { outline: 2px solid var(--wah-accent); outline-offset: 2px; }
.wah-actions-md .wah-btn { min-height: 44px !important; padding: 8px 12px !important; font-size: 14px !important; }
.wah-actions-sm .wah-btn { min-height: 40px !important; padding: 6px 10px !important; font-size: 13px !important; gap: 6px; }
.wah-actions-sm .wah-btn .wah-ico, .wah-actions-md .wah-btn .wah-ico { width: 17px; height: 17px; }
.wah-actions-icon { grid-auto-flow: column; gap: 8px; }
.wah-actions-icon .wah-btn { min-height: 46px !important; min-width: 46px; padding: 0 14px !important; }
.wah-actions-icon .wah-btn-call span:not(.wah-ico) { display: none; }

.wah-chip-btn, button.wah-chip-btn {
	display: inline-flex; align-items: center; gap: 7px; height: 40px; padding: 0 14px !important;
	border: 1px solid var(--wah-line) !important; border-radius: 999px !important; background: #fff !important;
	color: var(--wah-ink) !important; font-size: 13px !important; font-weight: 600 !important; transition: all .2s ease;
}
.wah-chip-btn:hover { border-color: var(--wah-ink) !important; }
.wah-chip-btn .wah-ico { width: 17px; height: 17px; }
.wah-chip-btn b { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px; background: var(--wah-accent); color: #fff; font-size: 11px; }
.wah-fav.is-on, .wah-fav.is-on:hover { color: var(--wah-accent) !important; }
.wah-fav.is-on .wah-ico svg { fill: currentColor; }

/* ---------- Badges / pills / rating ---------- */
.wah-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.wah-badge {
	display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px;
	background: var(--wah-accent); color: #fff !important; font-size: 12px; font-weight: 700; line-height: 1.3; text-decoration: none !important;
}
.wah-badge .wah-ico { width: 14px; height: 14px; }
.wah-badge.is-soft { background: var(--wah-accent-soft); color: var(--wah-accent) !important; }
.wah-badge.is-dark { background: var(--wah-ink); }
.wah-badge.is-outline { background: #fff; color: var(--wah-ink) !important; box-shadow: inset 0 0 0 1px var(--wah-line); }
.wah-badge.is-outline .wah-ico { color: var(--wah-ok); }
.wah-pill { display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 8px; background: var(--wah-accent); color: #fff; font-size: 12px; font-weight: 700; line-height: 1.2; box-shadow: 0 4px 12px -4px rgba(0,0,0,.3); }
.wah-pill .wah-ico { width: 13px; height: 13px; }
.wah-pill.is-dark { background: rgba(20, 22, 27, .88); backdrop-filter: blur(6px); }
.wah-pill.is-light { background: rgba(255,255,255,.94); color: var(--wah-ink); }

.wah-stars { position: relative; display: inline-flex; line-height: 0; vertical-align: middle; }
.wah-stars svg { width: 17px; height: 17px; margin-right: 1px; }
.wah-stars-bg svg { fill: #e2e5ea; }
.wah-stars-fg { position: absolute; inset: 0 auto 0 0; overflow: hidden; white-space: nowrap; }
.wah-stars-fg svg { fill: var(--wah-star); }
.wah-rating { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; color: var(--wah-text); font-size: 14px; text-decoration: none !important; }
.wah-rating strong { color: var(--wah-ink); }
.wah-rating:hover span { text-decoration: underline; }
.wah-rating.is-light, .wah-rating.is-light strong { color: #fff; }
.wah-rating.is-light .wah-stars-bg svg { fill: rgba(255,255,255,.25); }
.wah-rating.is-sm { margin-top: 4px; font-size: 12.5px; }
.wah-rating.is-sm .wah-stars svg { width: 13px; height: 13px; }

/* ---------- Hero ---------- */
.wah-hero {
	position: relative; isolation: isolate; overflow: hidden; margin-bottom: 36px; color: #fff;
	background: radial-gradient(120% 140% at 100% 0%, color-mix(in srgb, var(--wah-accent) 45%, #14161b) 0%, #14161b 55%) center / cover no-repeat;
}
.wah-hero[style*="--wah-hero-bg"] { background: #14161b var(--wah-hero-bg) center / cover no-repeat; }
.wah-hero::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(90deg, rgba(12,13,16, calc(var(--wah-overlay) + .22)) 0%, rgba(12,13,16, var(--wah-overlay)) 50%, rgba(12,13,16, calc(var(--wah-overlay) - .3)) 100%),
	            linear-gradient(0deg, rgba(12,13,16,.55), rgba(12,13,16,0) 45%);
}
.wah-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--wah-accent); }
.wah-hero-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; min-height: 300px; padding-block: 40px 52px; }
.wah-hero-main { flex: 1; min-width: 0; max-width: 720px; }
.wah-hero .wah-eyebrow { color: color-mix(in srgb, var(--wah-accent) 45%, #fff); }
.wah-hero-title { margin: 4px 0 12px !important; color: #fff !important; font-family: var(--wah-tf); font-size: clamp(32px, 4.6vw, 56px) !important; line-height: 1.05 !important; font-weight: 800; letter-spacing: -.025em; }
.wah-hero-sub { margin: 0 0 16px; max-width: 560px; color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.6; }
.wah-hero-side { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.wah-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px); color: #fff; font-size: 13px; font-weight: 600; white-space: nowrap; }
.wah-hero-badge .wah-ico { width: 18px; height: 18px; color: color-mix(in srgb, var(--wah-accent) 40%, #fff); }
.wah-hero-price { padding: 16px 20px; border-radius: var(--wah-r); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(10px); }
.wah-hero .wah-price { justify-content: flex-end; text-align: right; }
.wah-hero .wah-price-now { color: #fff; }
.wah-hero .wah-price-prefix { color: rgba(255,255,255,.7); }
.wah-hero .wah-price-old { color: rgba(255,255,255,.55); }
.wah-hero .wah-price-note { justify-content: flex-end; color: #fff; }
.wah-hero .wah-meta-line { color: #fff; }
.wah-hero .wah-meta-line .wah-ico { color: rgba(255,255,255,.65); }
.wah-hero .wah-meta-line li + li::before { background: rgba(255,255,255,.3); }
.wah-hero-stat { text-align: right; }
.wah-hero-stat strong { display: block; font-family: var(--wah-tf); font-size: 44px; line-height: 1; color: #fff; }
.wah-hero-stat span { color: rgba(255,255,255,.7); font-size: 14px; }
.wah-hero-search {
	display: flex; align-items: center; gap: 8px; max-width: 620px; margin-top: 22px; padding: 6px 6px 6px 16px;
	border-radius: 999px; background: #fff; box-shadow: var(--wah-shadow-lg);
}
.wah-hero-search > .wah-ico { width: 20px; height: 20px; color: var(--wah-muted); }
.wah-hero-search input[type=search] { flex: 1; min-width: 0; height: 46px !important; padding: 0 6px !important; border: 0 !important; background: none !important; box-shadow: none !important; color: var(--wah-ink) !important; font-size: 15px; }
.wah-hero-search .wah-btn { min-height: 46px !important; border-radius: 999px !important; padding: 8px 24px !important; }

/* ---------- Breadcrumb ---------- */
.wah-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; margin: 22px 0 18px; font-size: 13px; color: var(--wah-muted); }
.wah-hero .wah-crumbs { margin-top: 0; }
.wah-crumbs a { color: var(--wah-text); text-decoration: none; }
.wah-crumbs a:hover { color: var(--wah-accent); }
.wah-crumbs [aria-current] { color: var(--wah-ink); font-weight: 600; }
.wah-crumb-sep { width: 12px; height: 12px; opacity: .5; }
.wah-crumbs.is-light a { color: rgba(255,255,255,.72); }
.wah-crumbs.is-light a:hover { color: #fff; }
.wah-crumbs.is-light [aria-current] { color: #fff; }

/* ---------- Title block ---------- */
.wah-title-block { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.wah-tb-head { margin-bottom: 24px; }
.wah-tb-panel { margin-bottom: 4px; }
.wah-title { margin: 0 0 10px !important; font-family: var(--wah-tf); font-size: clamp(28px, 3.3vw, 40px) !important; line-height: 1.12 !important; font-weight: 800; color: var(--wah-ink) !important; letter-spacing: -.02em; }
.wah-tb-panel .wah-title { font-size: clamp(22px, 2.2vw, 26px) !important; }
.wah-meta-line { display: flex; flex-wrap: wrap; gap: 8px 0; margin: 0 0 12px; padding: 0; list-style: none; color: var(--wah-ink-2); font-size: 15px; font-weight: 500; }
.wah-meta-line li { position: relative; display: inline-flex; align-items: center; gap: 7px; margin: 0; padding: 0 16px 0 0; }
.wah-meta-line li + li { padding-left: 16px; }
.wah-meta-line li + li::before { content: ""; position: absolute; left: 0; top: 50%; width: 4px; height: 4px; border-radius: 50%; transform: translateY(-50%); background: var(--wah-line); }
.wah-meta-line .wah-ico { width: 18px; height: 18px; color: var(--wah-accent); }
.wah-utility { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- Top: gallery + summary ---------- */
.wah-top { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(340px, 1fr); gap: 32px; align-items: start; margin-bottom: 40px; }
.wah-top-info { position: sticky; top: var(--wah-sticky-top); display: grid; gap: 16px; }

.wah-gallery { position: relative; }
.wah-g-main { position: relative; overflow: hidden; border-radius: var(--wah-r); background: var(--wah-bg); box-shadow: var(--wah-shadow-sm); }
.wah-g-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; aspect-ratio: 16 / 10.5; outline: none; }
.wah-g-track::-webkit-scrollbar { display: none; }
button.wah-g-slide { position: relative; flex: 0 0 100%; width: 100%; height: 100%; scroll-snap-align: start; cursor: zoom-in; overflow: hidden; }
button.wah-g-slide.is-video { cursor: pointer; }
.wah-g-img { display: block; width: 100% !important; height: 100% !important; object-fit: cover; }
.wah-g-noimg { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #1b1e24, #2f343d); }
.wah-g-empty { display: grid; place-items: center; aspect-ratio: 16 / 10.5; color: var(--wah-line); }
.wah-g-empty .wah-ico { width: 96px; height: 96px; }
.wah-g-badges { position: absolute; top: 16px; left: 16px; z-index: 3; display: flex; flex-wrap: wrap; gap: 6px; pointer-events: none; }
.wah-g-sale { position: absolute; top: 16px; right: 16px; z-index: 3; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--wah-accent); color: #fff; font-weight: 800; font-size: 15px; box-shadow: 0 8px 20px -8px var(--wah-accent); pointer-events: none; }
button.wah-g-nav {
	position: absolute; top: 50%; z-index: 3; display: grid; place-items: center; width: 46px; height: 46px; margin-top: -23px;
	border-radius: 50% !important; background: rgba(255,255,255,.92) !important; color: var(--wah-ink) !important; box-shadow: var(--wah-shadow) !important;
	opacity: 0; transition: opacity .2s ease, transform .2s ease;
}
.wah-g-main:hover .wah-g-nav, .wah-g-nav:focus-visible { opacity: 1; }
.wah-g-nav.is-prev { left: 16px; transform: scaleX(-1); }
.wah-g-nav.is-next { right: 16px; }
.wah-g-nav .wah-ico { width: 20px; height: 20px; }
.wah-g-nav[disabled] { opacity: 0 !important; pointer-events: none; }
.wah-g-count { position: absolute; left: 16px; bottom: 16px; z-index: 3; display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: rgba(20,22,27,.78); color: #fff; font-size: 12.5px; font-weight: 600; backdrop-filter: blur(6px); pointer-events: none; }
.wah-g-count .wah-ico { width: 15px; height: 15px; }
button.wah-g-zoom { position: absolute; right: 16px; bottom: 16px; z-index: 3; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50% !important; background: rgba(255,255,255,.92) !important; color: var(--wah-ink) !important; box-shadow: var(--wah-shadow-sm) !important; }
.wah-g-zoom .wah-ico { width: 18px; height: 18px; }
.wah-g-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; scrollbar-width: thin; padding-bottom: 4px; }
button.wah-g-thumb { position: relative; flex: 0 0 96px; height: 70px; overflow: hidden; border-radius: var(--wah-r-sm) !important; opacity: 1; outline: 2px solid transparent !important; outline-offset: -2px; transition: opacity .2s ease, outline-color .2s ease; }
.wah-g-thumb img, .wah-g-thumb .wah-g-noimg { width: 100%; height: 100%; object-fit: cover; display: block; }
.wah-g-thumb:hover { opacity: .85; }
.wah-g-thumb.is-active { opacity: .45; outline-color: var(--wah-accent) !important; }
.wah-g-thumb video, .wah-g-slide video.wah-g-img { display: block; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }

.wah-play {
	position: absolute; top: 50%; left: 50%; z-index: 2; display: grid; place-items: center; width: 76px; height: 76px; margin: -38px 0 0 -38px;
	border-radius: 50%; background: rgba(255,255,255,.2); border: 1.5px solid rgba(255,255,255,.6); color: #fff;
	-webkit-backdrop-filter: blur(10px) saturate(1.3); backdrop-filter: blur(10px) saturate(1.3);
	box-shadow: 0 10px 30px -8px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.35);
	transition: transform .25s ease, background .25s ease; pointer-events: none;
}
.wah-play::before { content: ""; position: absolute; inset: -9px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.35); animation: wah-ring 2.4s ease-out infinite; }
@keyframes wah-ring { 0% { transform: scale(.9); opacity: .9; } 100% { transform: scale(1.35); opacity: 0; } }
.wah-play .wah-ico { width: 26px; height: 26px; margin-left: 4px; filter: drop-shadow(0 1px 2px rgba(0,0,0,.25)); }
.wah-play .wah-ico svg { fill: currentColor; }
.wah-play.is-sm { width: 30px; height: 30px; margin: -15px 0 0 -15px; border-width: 1px; box-shadow: 0 4px 10px -4px rgba(0,0,0,.4); }
.wah-play.is-sm::before { display: none; }
.wah-play.is-sm .wah-ico { width: 12px; height: 12px; margin-left: 2px; }
button.wah-play.is-lg { position: absolute; pointer-events: auto; top: 40%; width: 76px; height: 76px; margin: -38px 0 0 -38px; border-radius: 50% !important; background: rgba(255,255,255,.2) !important; border: 1.5px solid rgba(255,255,255,.6) !important; box-shadow: 0 10px 30px -8px rgba(0,0,0,.45) !important; }
button.wah-play.is-lg:hover, button.wah-g-slide:hover .wah-play { transform: scale(1.08); background: rgba(255,255,255,.3) !important; }

.wah-panel { padding: 26px; border: 1px solid var(--wah-line); border-radius: var(--wah-r); background: var(--wah-card); box-shadow: var(--wah-shadow); }
.wah-panel > * + * { margin-top: 20px; }
.wah-panel-soft { background: var(--wah-bg); box-shadow: none; }

.wah-short { color: var(--wah-text); font-size: 15px; line-height: 1.7; }
.wah-short p { margin: 0 0 8px; }
.wah-short p:last-child { margin: 0; }

/* Price */
.wah-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 12px; }
.wah-price-prefix { width: 100%; color: var(--wah-muted); font-size: 13px; font-weight: 500; }
.wah-price-now { color: var(--wah-ink); font-family: var(--wah-tf); font-size: 38px; font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
.wah-price-now .wah-money { white-space: nowrap; }
.wah-price-now.is-empty { font-size: 24px; }
.wah-summary .wah-price-now { color: var(--wah-accent); }
.wah-price-hero .wah-price-now { font-size: clamp(28px, 3vw, 42px); }
.wah-price-old { color: var(--wah-muted); font-size: 18px; }
.wah-save { align-self: center; padding: 4px 10px; border-radius: 999px; background: color-mix(in srgb, var(--wah-ok) 12%, #fff); color: var(--wah-ok); font-size: 12.5px; font-weight: 700; }
.wah-price-note { display: inline-flex; align-items: center; gap: 6px; width: 100%; margin-top: 4px; color: var(--wah-ink-2); font-size: 14px; font-weight: 600; }
.wah-price-note .wah-ico { width: 16px; height: 16px; color: var(--wah-accent); }

/* Summary extras */
.wah-points { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.wah-points.is-2col { grid-template-columns: 1fr 1fr; }
.wah-points li { display: flex; align-items: center; gap: 12px; margin: 0; color: var(--wah-ink); font-size: 15px; font-weight: 500; }
.wah-points .wah-ico { display: grid; place-items: center; width: 30px; height: 30px; padding: 6px; border-radius: 50%; background: var(--wah-accent-soft); color: var(--wah-accent); }
.wah-duration { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--wah-r-sm); background: var(--wah-bg); }
.wah-duration > .wah-ico { width: 30px; height: 30px; color: var(--wah-accent); }
.wah-duration small { display: block; color: var(--wah-muted); font-size: 12px; }
.wah-duration strong { color: var(--wah-ink); font-size: 16px; }
.wah-avail p { margin: 8px 0 0; color: var(--wah-text); font-size: 14px; }
.wah-avail-pill { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px; border-radius: 999px; background: color-mix(in srgb, var(--wah-ok) 10%, #fff); color: var(--wah-ok); font-size: 12.5px; font-weight: 700; }
.wah-avail-pill i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: wah-pulse 2s infinite; }
@keyframes wah-pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--wah-ok) 50%, transparent); } 70% { box-shadow: 0 0 0 8px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.wah-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; padding: 0; list-style: none; }
.wah-quick li { display: flex; align-items: center; gap: 12px; margin: 0; padding: 12px; border-radius: var(--wah-r-sm); background: var(--wah-bg); }
.wah-quick .wah-ico { width: 34px; height: 34px; padding: 7px; border-radius: 10px; background: #fff; color: var(--wah-accent); box-shadow: var(--wah-shadow-sm); }
.wah-quick strong { display: block; color: var(--wah-ink); font-size: 15px; line-height: 1.25; }
.wah-quick small { color: var(--wah-muted); font-size: 12px; }
.wah-trust { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 14px; margin: 0; padding: 16px 0 0; list-style: none; border-top: 1px dashed var(--wah-line); }
.wah-trust li { display: flex; align-items: center; gap: 7px; margin: 0; color: var(--wah-ink-2); font-size: 13px; font-weight: 600; }
.wah-trust .wah-ico { width: 20px; height: 20px; color: var(--wah-ok); }
.wah-extra { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--wah-line); border-radius: var(--wah-r-sm); color: var(--wah-ink) !important; text-decoration: none !important; transition: border-color .2s ease, background .2s ease; }
.wah-extra:hover { border-color: var(--wah-accent); background: var(--wah-accent-soft); }
.wah-extra-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--wah-accent-soft); color: var(--wah-accent); }
.wah-extra-ico .wah-ico { width: 22px; height: 22px; }
.wah-extra-txt { flex: 1; min-width: 0; }
.wah-extra-txt strong { display: block; font-size: 15px; }
.wah-extra-txt small { color: var(--wah-muted); font-size: 13px; }
.wah-extra-arrow { width: 18px; height: 18px; color: var(--wah-muted); }

/* Enquiry */
.wah-enquiry { display: grid; gap: 12px; }
.wah-enquiry-head { display: flex; align-items: center; gap: 12px; margin-bottom: 2px; }
.wah-enquiry-head h3 { margin: 0 !important; font-size: 18px !important; color: var(--wah-ink); }
.wah-enquiry-head p { margin: 2px 0 0; color: var(--wah-muted); font-size: 13px; }
.wah-enquiry-ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: #fff; color: var(--wah-accent); box-shadow: var(--wah-shadow-sm); }
.wah-enquiry-ico .wah-ico { width: 20px; height: 20px; }
.wah-enquiry-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wah-field { display: grid; gap: 6px; margin: 0; }
.wah-field > span { color: var(--wah-ink-2); font-size: 13px; font-weight: 600; }
.wah-field input, .wah-field textarea, .wah-fg input, .wah-fg select, .wah-sort select, .wah-finder select, .wah-finder input, .wah-rv-form textarea, .wah-rv-form input[type=text], .wah-rv-form input[type=email], .wah-rv-form input[type=url] {
	width: 100%; min-height: 46px; padding: 10px 14px !important; border: 1px solid var(--wah-line) !important; border-radius: var(--wah-r-sm) !important;
	background: #fff !important; color: var(--wah-ink) !important; font-size: 14.5px !important; box-shadow: none !important; transition: border-color .2s ease, box-shadow .2s ease;
}
.wah-field textarea, .wah-rv-form textarea { min-height: 96px; resize: vertical; }
.wah-field input:focus, .wah-field textarea:focus, .wah-fg input:focus, .wah-fg select:focus, .wah-rv-form textarea:focus, .wah-rv-form input:focus { border-color: var(--wah-accent) !important; box-shadow: 0 0 0 3px var(--wah-accent-soft) !important; outline: none; }
.wah-enquiry .wah-btn { width: 100%; }
.wah-enquiry-msg { margin: 0; font-size: 13.5px; font-weight: 600; }
.wah-enquiry-msg:empty { display: none; }
.wah-enquiry-msg.is-ok { color: var(--wah-ok); }
.wah-enquiry-msg.is-err { color: #dc2626; }
.wah-enquiry.is-busy .wah-btn { opacity: .6; pointer-events: none; }
.wah-hp { position: absolute !important; left: -9999px !important; }

/* ---------- Highlights ---------- */
.wah-highlights { display: grid; grid-template-columns: repeat(var(--n, 4), minmax(0, 1fr)); gap: 12px; margin: 16px 0 0; padding: 0; list-style: none; }
.wah-highlights li { display: flex; align-items: center; gap: 12px; margin: 0; padding: 16px; border: 1px solid var(--wah-line); border-radius: var(--wah-r); background: #fff; }
.wah-highlights.is-compact li { flex-direction: column; align-items: flex-start; }
.wah-hl-ico { display: grid; place-items: center; flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; background: var(--wah-accent-soft); color: var(--wah-accent); }
.wah-hl-ico .wah-ico { width: 22px; height: 22px; }
.wah-highlights strong { display: block; color: var(--wah-ink); font-size: 14.5px; line-height: 1.3; }
.wah-highlights span:not(.wah-ico):not(.wah-hl-ico) { display: block; margin-top: 3px; color: var(--wah-muted); font-size: 12.5px; line-height: 1.45; }
.wah-highlights.is-full { margin: 0 0 44px; }
.wah-highlights.is-full li { padding: 20px; }

/* ---------- Process ---------- */
.wah-process { position: relative; padding: 56px 0; margin-bottom: 44px; background: var(--wah-ink); color: #fff; overflow: hidden; }
.wah-process::before { content: ""; position: absolute; width: 520px; height: 520px; right: -160px; top: -260px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--wah-accent) 40%, transparent), transparent 70%); }
.wah-process .wah-h { color: #fff; margin-bottom: 36px; }
.wah-steps { position: relative; display: grid; grid-template-columns: repeat(var(--n, 4), minmax(0, 1fr)); gap: 24px; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.wah-steps::before { content: ""; position: absolute; top: 32px; left: 12%; right: 12%; border-top: 2px dashed rgba(255,255,255,.18); }
.wah-steps li { position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px; margin: 0; text-align: center; }
.wah-step-ico { position: relative; display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: 10px; border-radius: 50%; background: #1f232b; border: 1px solid rgba(255,255,255,.12); color: #fff; }
.wah-step-ico .wah-ico { width: 26px; height: 26px; }
.wah-step-ico b { position: absolute; top: -4px; right: -4px; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--wah-accent); color: #fff; font-size: 12px; }
.wah-steps strong { color: #fff; font-size: 16px; }
.wah-steps span:not(.wah-step-ico):not(.wah-ico) { max-width: 240px; color: rgba(255,255,255,.65); font-size: 13.5px; line-height: 1.5; }

/* ---------- Section nav ---------- */
.wah-secnav { position: sticky; top: calc(var(--wah-sticky-top) - 20px); z-index: 20; margin: 0 0 28px; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--wah-line); }
.wah-secnav-inner { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.wah-secnav-inner::-webkit-scrollbar { display: none; }
.wah-secnav a { position: relative; padding: 16px 14px; color: var(--wah-text); font-family: var(--wah-tf); font-size: 15px; font-weight: 600; white-space: nowrap; text-decoration: none !important; }
.wah-secnav a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: -1px; height: 3px; border-radius: 3px 3px 0 0; background: var(--wah-accent); transform: scaleX(0); transition: transform .25s ease; }
.wah-secnav a:hover { color: var(--wah-ink); }
.wah-secnav a.is-active { color: var(--wah-accent); }
.wah-secnav a.is-active::after { transform: scaleX(1); }

/* ---------- Lower ---------- */
.wah-lower { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(300px, 1fr); gap: 40px; margin-bottom: 56px; }
.wah-sec { scroll-margin-top: calc(var(--wah-sticky-top) + 50px); padding-bottom: 36px; margin-bottom: 36px; border-bottom: 1px solid var(--wah-line); }
.wah-sec:last-child { border-bottom: 0; margin-bottom: 0; }
.wah-content { color: var(--wah-text); font-size: 15.5px; line-height: 1.8; }
.wah-content > :last-child { margin-bottom: 0; }
.wah-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 22px 0 0; padding: 0; list-style: none; }
.wah-checklist li { display: flex; align-items: flex-start; gap: 10px; margin: 0; color: var(--wah-ink); font-weight: 500; }
.wah-checklist .wah-ico { width: 22px; height: 22px; padding: 4px; margin-top: 1px; border-radius: 50%; background: var(--wah-ok); color: #fff; }
.wah-note { display: flex; align-items: center; gap: 16px; margin-top: 24px; padding: 18px 20px; border-radius: var(--wah-r); background: var(--wah-accent-soft); border: 1px solid var(--wah-accent-line); }
.wah-note-ico { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; border-radius: 12px; background: #fff; color: var(--wah-accent); }
.wah-note-ico .wah-ico { width: 24px; height: 24px; }
.wah-note strong { display: block; color: var(--wah-ink); font-size: 15.5px; }
.wah-note span { color: var(--wah-text); font-size: 14px; }

.wah-specs { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border: 1px solid var(--wah-line); border-radius: var(--wah-r); overflow: hidden; }
.wah-spec { display: flex; justify-content: space-between; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--wah-line); }
.wah-spec:nth-child(odd) { border-right: 1px solid var(--wah-line); }
.wah-spec:nth-child(4n+1), .wah-spec:nth-child(4n+2) { background: var(--wah-bg); }
.wah-spec dt { display: flex; align-items: center; gap: 10px; margin: 0; color: var(--wah-text); font-weight: 400; font-size: 14px; }
.wah-spec dt .wah-ico { width: 18px; height: 18px; color: var(--wah-muted); }
.wah-spec dd { margin: 0; color: var(--wah-ink); font-weight: 700; font-size: 14px; text-align: right; }
.wah-swatch { display: inline-block; width: 12px; height: 12px; margin-right: 8px; border-radius: 50%; vertical-align: -1px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.15); }

.wah-features { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.wah-features li { display: flex; align-items: center; gap: 12px; margin: 0; padding: 12px 14px; border: 1px solid var(--wah-line); border-radius: var(--wah-r-sm); color: var(--wah-ink); font-weight: 600; font-size: 14px; }
.wah-feat-ico { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--wah-accent-soft); color: var(--wah-accent); }
.wah-feat-ico .wah-ico { width: 18px; height: 18px; }

.wah-included { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0; padding: 0; list-style: none; }
.wah-included li { display: flex; gap: 14px; margin: 0; padding: 18px; border-radius: var(--wah-r); background: var(--wah-bg); }
.wah-inc-ico { display: grid; place-items: center; flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; background: #fff; color: var(--wah-accent); box-shadow: var(--wah-shadow-sm); }
.wah-inc-ico .wah-ico { width: 22px; height: 22px; }
.wah-included strong { display: block; color: var(--wah-ink); font-size: 15px; line-height: 1.35; }
.wah-included span:not(.wah-ico):not(.wah-inc-ico) { display: block; margin-top: 3px; color: var(--wah-muted); font-size: 13.5px; }

.wah-faqs { display: grid; gap: 10px; }
.wah-faq { border: 1px solid var(--wah-line); border-radius: var(--wah-r-sm); background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.wah-faq[open] { border-color: var(--wah-accent-line); box-shadow: var(--wah-shadow-sm); }
.wah-faq summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 20px; color: var(--wah-ink); font-weight: 600; font-size: 15.5px; cursor: pointer; list-style: none; }
.wah-faq summary::-webkit-details-marker { display: none; }
.wah-faq-ico { flex: 0 0 28px; width: 28px; height: 28px; padding: 6px; border-radius: 50%; background: var(--wah-bg); color: var(--wah-ink); transition: transform .25s ease, background .2s ease; }
.wah-faq[open] .wah-faq-ico { transform: rotate(45deg); background: var(--wah-accent); color: #fff; }
.wah-faq-a { padding: 0 20px 18px; color: var(--wah-text); line-height: 1.75; }
.wah-faq-a p:last-child { margin-bottom: 0; }

/* ---------- Sidebar ---------- */
.wah-side-sticky { position: sticky; top: calc(var(--wah-sticky-top) + 50px); display: grid; gap: 18px; }
.wah-side-card { padding: 22px; border: 1px solid var(--wah-line); border-radius: var(--wah-r); background: #fff; box-shadow: var(--wah-shadow-sm); }
.wah-side-book-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.wah-side-thumb { flex: 0 0 56px; width: 56px !important; height: 56px !important; border-radius: 10px; object-fit: cover; }
.wah-side-name { display: block; margin-bottom: 2px; color: var(--wah-ink); font-size: 14px; line-height: 1.3; }
.wah-dealer-head { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.wah-dealer-logo { display: grid; place-items: center; flex: 0 0 60px; width: 60px; height: 60px; overflow: hidden; border-radius: 16px; background: var(--wah-ink); color: #fff; font-size: 24px; font-weight: 800; }
.wah-dealer-logo img { width: 100%; height: 100%; object-fit: cover; }
.wah-dealer-name { display: flex; align-items: center; gap: 6px; color: var(--wah-ink); font-size: 17px; line-height: 1.3; }
.wah-verified { width: 18px; height: 18px; color: #2563eb; }
.wah-dealer-tag { display: block; color: var(--wah-muted); font-size: 13px; }
.wah-dealer-info { display: grid; gap: 14px; margin: 0 0 16px; padding: 16px 0 0; list-style: none; border-top: 1px solid var(--wah-line); }
.wah-dealer-info li { display: flex; gap: 12px; margin: 0; color: var(--wah-ink); font-size: 14px; line-height: 1.5; }
.wah-dealer-info .wah-ico { width: 20px; height: 20px; margin-top: 1px; color: var(--wah-accent); }
.wah-dealer-info a { color: var(--wah-ink); font-weight: 700; text-decoration: none; }
.wah-dealer-info small { display: block; color: var(--wah-muted); font-size: 12px; }
.wah-dealer-info li:last-child { margin-bottom: 0; }
.wah-promo { margin: 0; }
.wah-promo-img { position: relative; overflow: hidden; border-radius: var(--wah-r); background: var(--wah-ink); }
.wah-promo-img img { display: block; width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; }
.wah-promo-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,13,16,.85) 0%, rgba(12,13,16,.05) 60%); pointer-events: none; }
.wah-promo figcaption { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; color: #fff; font-family: var(--wah-tf); font-weight: 700; font-size: 19px; line-height: 1.3; }
.wah-promo figcaption::before { content: ""; display: block; width: 36px; height: 3px; margin-bottom: 10px; border-radius: 2px; background: var(--wah-accent); }
.wah-promo-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.wah-promo-thumbs > button, .wah-strip-grid > button { display: block; width: 100%; overflow: hidden; border-radius: var(--wah-r-sm) !important; cursor: zoom-in; }
.wah-promo-thumbs img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .35s ease; }
.wah-promo-thumbs button:hover img, .wah-strip-grid button:hover img { transform: scale(1.06); }
.wah-help:empty { display: none; }
.wah-help-card { background: var(--wah-ink); color: rgba(255,255,255,.75); border: 0; }
.wah-help-card strong { display: block; margin: 12px 0 4px; color: #fff; font-size: 18px; }
.wah-help-card p { margin: 0 0 12px; font-size: 14px; }
.wah-help-ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--wah-accent); color: #fff; }
.wah-help-ico .wah-ico { width: 24px; height: 24px; }
.wah-help-phone { color: #fff !important; font-size: 18px; font-weight: 800; text-decoration: none !important; }

/* ---------- Reviews ---------- */
.wah-alert { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; padding: 12px 16px; border-radius: var(--wah-r-sm); background: color-mix(in srgb, var(--wah-ok) 10%, #fff); color: var(--wah-ok); font-weight: 600; }
.wah-alert .wah-ico { width: 20px; height: 20px; }
.wah-rv-summary { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 24px; border-radius: var(--wah-r); background: var(--wah-bg); }
.wah-rv-score { display: grid; justify-items: center; gap: 6px; padding-right: 28px; border-right: 1px solid var(--wah-line); text-align: center; }
.wah-rv-score strong { color: var(--wah-ink); font-family: var(--wah-tf); font-size: 48px; line-height: 1; }
.wah-rv-score span { color: var(--wah-muted); font-size: 13px; }
.wah-rv-bars { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.wah-rv-bars li { display: grid; grid-template-columns: 36px 1fr 28px; align-items: center; gap: 10px; margin: 0; color: var(--wah-text); font-size: 13px; }
.wah-rv-bars i { height: 8px; border-radius: 4px; background: #e2e5ea; overflow: hidden; }
.wah-rv-bars b { display: block; height: 100%; border-radius: 4px; background: var(--wah-star); }
.wah-rv-bars em { font-style: normal; color: var(--wah-muted); text-align: right; }
.wah-rv-cta { max-width: 220px; }
.wah-rv-cta p { margin: 0 0 10px; color: var(--wah-text); font-size: 14px; }
.wah-rv-form { margin-top: 20px; padding: 24px; border: 1px solid var(--wah-line); border-radius: var(--wah-r); }
.wah-rv-form[hidden] { display: none; }
.wah-rv-form-title { margin: 0 0 14px !important; font-size: 20px !important; color: var(--wah-ink); }
.wah-rv-form .comment-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0; }
.wah-rv-form .comment-form > * { grid-column: 1 / -1; margin: 0 !important; }
.wah-rv-form .comment-form-author, .wah-rv-form .comment-form-email { grid-column: span 1; }
.wah-rv-form .comment-form-url, .wah-rv-form .comment-form-cookies-consent { display: none; }
.wah-rv-form label { display: block; margin-bottom: 6px; color: var(--wah-ink-2); font-weight: 600; font-size: 13.5px; }
.wah-rv-form .required { color: var(--wah-accent); }
.wah-rv-form .form-submit input[type=submit] { width: auto; }
.wah-star-input { margin: 0; padding: 0; border: 0; }
.wah-star-input legend { margin-bottom: 4px; padding: 0; color: var(--wah-ink-2); font-weight: 600; font-size: 13.5px; }
.wah-star-row { display: inline-flex; flex-direction: row-reverse; gap: 2px; }
.wah-star-row { position: relative; }
.wah-star-row input { position: absolute !important; opacity: 0 !important; width: 1px !important; height: 1px !important; margin: 0 !important; appearance: none !important; }
.wah-star-row label { margin: 0 !important; color: #d6dae0 !important; font-size: 34px !important; line-height: 1; cursor: pointer; transition: color .15s ease, transform .15s ease; }
.wah-star-row label:hover, .wah-star-row label:hover ~ label, .wah-star-row input:checked ~ label { color: var(--wah-star) !important; }
.wah-star-row label:hover { transform: scale(1.12); }
.wah-star-row input:focus-visible + label { outline: 2px solid var(--wah-accent); outline-offset: 2px; border-radius: 4px; }
.wah-star-input.is-error legend { color: #dc2626; }
.wah-rv-list { margin: 24px 0 0; padding: 0; list-style: none; }
.wah-rv-list .children { margin: 14px 0 0 24px; padding: 0 0 0 16px; list-style: none; border-left: 2px solid var(--wah-line); }
.wah-review { margin: 0 0 14px; padding: 20px; border: 1px solid var(--wah-line); border-radius: var(--wah-r); background: #fff; }
.wah-review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.wah-review-avatar { width: 44px; height: 44px; border-radius: 50%; }
.wah-review-who { flex: 1; min-width: 0; }
.wah-review-who strong { display: block; color: var(--wah-ink); }
.wah-review-who span { color: var(--wah-muted); font-size: 12.5px; }
.wah-review-text { color: var(--wah-text); line-height: 1.7; }
.wah-review-text p:last-child { margin-bottom: 0; }
.wah-review-pending { margin: 0 0 8px; color: #b45309; font-size: 13px; font-weight: 600; }
.wah-review .comment-reply-link { display: inline-block; margin-top: 8px; color: var(--wah-accent); font-weight: 600; font-size: 13px; }

/* ---------- Strip / related / CTA ---------- */
.wah-strip, .wah-related { margin-bottom: 56px; }
.wah-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.wah-strip-grid button:first-child { grid-column: span 2; grid-row: span 2; }
.wah-strip-grid img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.wah-cta { position: relative; overflow: hidden; display: flex; align-items: center; gap: 22px; margin: 0 0 64px; padding: 32px 36px; border-radius: calc(var(--wah-r) * 1.4); background: linear-gradient(120deg, var(--wah-accent), var(--wah-accent-2)); color: #fff; }
.wah-cta::after { content: ""; position: absolute; width: 300px; height: 300px; right: -80px; top: -150px; border-radius: 50%; background: rgba(255,255,255,.1); }
.wah-cta-ico { display: grid; place-items: center; flex: 0 0 64px; width: 64px; height: 64px; border-radius: 18px; background: rgba(255,255,255,.15); }
.wah-cta-ico .wah-ico { width: 32px; height: 32px; }
.wah-cta-text { flex: 1; position: relative; z-index: 1; }
.wah-cta-text strong { display: block; color: #fff; font-family: var(--wah-tf); font-size: clamp(20px, 2.2vw, 26px); line-height: 1.25; }
.wah-cta-text span { color: rgba(255,255,255,.85); }
.wah-cta .wah-btn { position: relative; z-index: 1; }

/* ---------- Cards ---------- */
.wah-grid-cards { display: grid; grid-template-columns: repeat(var(--wah-cols, 3), minmax(0, 1fr)); gap: 24px; }
.wah-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--wah-line); border-radius: var(--wah-r); background: #fff; transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease; }
.wah-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--wah-shadow-lg); }
.wah-card.is-featured { border-color: var(--wah-accent-line); }
.wah-card-media { position: relative; }
.wah-card-img { display: block; aspect-ratio: 16 / 11; overflow: hidden; background: var(--wah-bg); }
.wah-card-img img { display: block; width: 100% !important; height: 100% !important; object-fit: cover; transition: transform .5s ease; }
.wah-card:hover .wah-card-img img { transform: scale(1.05); }
.wah-card-noimg { display: grid; place-items: center; height: 100%; color: var(--wah-line); }
.wah-card-noimg .wah-ico { width: 60px; height: 60px; }
.wah-card-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-wrap: wrap; gap: 6px; pointer-events: none; }
button.wah-card-fav { position: absolute; top: 12px; right: 12px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50% !important; background: rgba(255,255,255,.94) !important; color: var(--wah-ink) !important; box-shadow: var(--wah-shadow-sm) !important; transition: transform .2s ease, color .2s ease; }
.wah-card-fav:hover { transform: scale(1.08); color: var(--wah-accent) !important; }
.wah-card-fav .wah-ico { width: 18px; height: 18px; }
.wah-card-video { position: absolute; left: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px 4px 6px; border-radius: 999px; background: rgba(20,22,27,.8); color: #fff; font-size: 12px; font-weight: 600; }
.wah-card-video .wah-ico { width: 18px; height: 18px; padding: 4px; border-radius: 50%; background: var(--wah-accent); }
.wah-card-video .wah-ico svg { fill: currentColor; }
.wah-card-body { display: flex; flex: 1; flex-direction: column; gap: 10px; padding: 18px; }
.wah-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 18px; }
.wah-card-cat { color: var(--wah-accent) !important; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; text-decoration: none !important; }
.wah-card-rating { display: inline-flex; align-items: center; gap: 4px; color: var(--wah-ink); font-size: 13px; font-weight: 700; }
.wah-card-rating .wah-ico { width: 15px; height: 15px; color: var(--wah-star); }
.wah-card-rating .wah-ico svg { fill: currentColor; }
.wah-card-rating small { color: var(--wah-muted); font-weight: 400; }
.wah-card-title { margin: 0 !important; font-family: var(--wah-tf); font-size: 18px !important; line-height: 1.3 !important; font-weight: 700; }
.wah-card-title a { color: var(--wah-ink) !important; text-decoration: none !important; }
.wah-card-title a:hover { color: var(--wah-accent) !important; }
.wah-card-text { margin: 0; color: var(--wah-text); font-size: 14px; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wah-card-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 2px 0 0; padding: 0; list-style: none; }
.wah-card-specs li { display: flex; align-items: center; gap: 6px; margin: 0; padding: 6px 8px; border-radius: 8px; background: var(--wah-bg); color: var(--wah-ink-2); font-size: 12.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wah-card-specs .wah-ico { width: 15px; height: 15px; color: var(--wah-accent); }
.wah-card-loc { display: inline-flex; align-items: center; gap: 6px; color: var(--wah-muted); font-size: 13px; }
.wah-card-loc .wah-ico { width: 15px; height: 15px; }
.wah-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--wah-line); }
.wah-cp { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 8px; }
.wah-cp small { width: 100%; color: var(--wah-muted); font-size: 12px; }
.wah-cp strong { color: var(--wah-ink); font-family: var(--wah-tf); font-size: 20px; font-weight: 800; line-height: 1.2; }
.wah-cp del { color: var(--wah-muted); font-size: 13px; }
.wah-cp.is-empty { color: var(--wah-ink-2); font-weight: 700; }
.wah-card-more { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-width: 38px; height: 38px; padding: 0 10px; border-radius: 999px; background: var(--wah-bg); color: var(--wah-ink) !important; font-weight: 600; font-size: 13px; text-decoration: none !important; transition: background .2s ease, color .2s ease; }
.wah-card-more:hover { background: var(--wah-ink); color: #fff !important; }
.wah-card-more .wah-ico { width: 16px; height: 16px; }
.wah-grid-compact { --wah-cols: 3; gap: 16px; }
.wah-sc-more { margin-top: 28px; text-align: center; }
.wah-card .wah-actions-sm .wah-btn { min-width: 0; }
.wah-card .wah-actions-sm .wah-btn span:not(.wah-ico) { overflow: hidden; text-overflow: ellipsis; }
/* Card width based styles (set by script – works in every browser) */
.wah-grid-cards.is-compact .wah-card-body .wah-actions-sm:not(.is-single) { grid-template-columns: minmax(0, 1fr) 44px; }
.wah-grid-cards.is-compact .wah-card-body .wah-btn-call { padding: 0 !important; }
.wah-grid-cards.is-compact .wah-card-body .wah-btn-call span:not(.wah-ico) { display: none; }
.wah-grid-cards.is-compact .wah-card-body { padding: 16px; }
.wah-grid-cards.is-compact .wah-card-title { font-size: 17px !important; }

/* ---------- Archive ---------- */
.wah-archive-page .wah-hero { margin-bottom: 0; }
.wah-archive-page .wah-hero-inner { min-height: 320px; align-items: center; }
.wah-cats { display: flex; gap: 12px; margin: -34px 0 32px; padding: 4px 2px 10px; overflow-x: auto; position: relative; z-index: 2; scrollbar-width: thin; }
.wah-cat { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; padding: 10px 16px 10px 10px; border: 1px solid var(--wah-line); border-radius: 999px; background: #fff; color: var(--wah-ink) !important; font-weight: 600; font-size: 14px; text-decoration: none !important; box-shadow: var(--wah-shadow); transition: all .2s ease; }
.wah-cat:hover { border-color: var(--wah-accent); }
.wah-cat.is-active { background: var(--wah-ink); border-color: var(--wah-ink); color: #fff !important; }
.wah-cat-ico { display: grid; place-items: center; width: 36px; height: 36px; overflow: hidden; border-radius: 50%; background: var(--wah-accent-soft); color: var(--wah-accent); }
.wah-cat-ico.has-img { background: #fff; }
.wah-cat-ico img { width: 100%; height: 100%; object-fit: contain; }
.wah-cat-ico .wah-ico { width: 18px; height: 18px; }
.wah-cat.is-active .wah-cat-ico { background: rgba(255,255,255,.14); color: #fff; }
.wah-cat-count { display: inline-grid; place-items: center; min-width: 24px; height: 22px; padding: 0 7px; border-radius: 11px; background: var(--wah-bg); color: var(--wah-muted); font-size: 12px; }
.wah-cat.is-active .wah-cat-count { background: rgba(255,255,255,.14); color: #fff; }

.wah-arch { display: grid; gap: 32px; margin-bottom: 64px; }
.wah-arch.has-filters { grid-template-columns: 280px minmax(0, 1fr); align-items: start; }
.wah-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.wah-results { margin: 0; color: var(--wah-text); }
.wah-results strong { color: var(--wah-ink); }
.wah-toolbar-right { display: flex; align-items: center; gap: 10px; }
.wah-sort select { min-width: 190px; min-height: 42px; border-radius: 999px !important; }
.wah-filter-open { display: none !important; }
.wah-filters { position: sticky; top: var(--wah-sticky-top); padding: 22px; border: 1px solid var(--wah-line); border-radius: var(--wah-r); background: #fff; box-shadow: var(--wah-shadow-sm); }
.wah-filters-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.wah-filters-head strong { display: inline-flex; align-items: center; gap: 8px; color: var(--wah-ink); font-size: 17px; }
.wah-filters-head strong .wah-ico { width: 18px; height: 18px; color: var(--wah-accent); }
.wah-filters-head a { color: var(--wah-accent); font-size: 13px; font-weight: 600; }
button.wah-filters-close { display: none; font-size: 28px; line-height: 1; color: var(--wah-muted); }
.wah-filters-form { display: grid; gap: 18px; }
.wah-fg > label { display: block; margin-bottom: 8px; color: var(--wah-ink); font-size: 13.5px; font-weight: 700; }
.wah-fg > label small { color: var(--wah-muted); font-weight: 400; }
.wah-fg-row { display: flex; align-items: center; gap: 8px; }
.wah-fg-row span { color: var(--wah-muted); }
.wah-fg-row input, .wah-fg-row select { min-width: 0; }
.wah-pills-choice { display: flex; flex-wrap: wrap; gap: 6px; }
.wah-choice { margin: 0 !important; cursor: pointer; }
.wah-choice { position: relative; }
.wah-choice input[type=radio] { position: absolute !important; opacity: 0 !important; width: 1px !important; height: 1px !important; margin: 0 !important; appearance: none !important; pointer-events: none; }
.wah-choice input[type=radio]::before, .wah-choice input[type=radio]::after, .wah-star-row input::before, .wah-star-row input::after { display: none !important; }
.wah-choice > span { display: inline-flex; align-items: center; gap: 5px; padding: 7px 12px; border: 1px solid var(--wah-line); border-radius: 999px; color: var(--wah-ink-2); font-size: 13px; font-weight: 600; transition: all .2s ease; }
.wah-choice > span .wah-ico { width: 15px; height: 15px; }
.wah-choice:hover > span { border-color: var(--wah-ink); }
.wah-choice input:checked + span { background: var(--wah-ink); border-color: var(--wah-ink); color: #fff; }
.wah-choice input:focus-visible + span { outline: 2px solid var(--wah-accent); outline-offset: 2px; }
.wah-filters-backdrop { display: none; }
.wah-pagination { margin-top: 36px; }
.wah-pagination .page-numbers { display: inline-grid; place-items: center; min-width: 44px; height: 44px; margin: 0 3px; padding: 0 10px; border: 1px solid var(--wah-line); border-radius: 12px; color: var(--wah-ink); font-weight: 600; text-decoration: none; }
.wah-pagination .page-numbers.current, .wah-pagination a.page-numbers:hover { background: var(--wah-ink); border-color: var(--wah-ink); color: #fff; }
.wah-pagination { text-align: center; }
.wah-empty { padding: 56px 24px; border: 1px dashed var(--wah-line); border-radius: var(--wah-r); text-align: center; }
.wah-empty > .wah-ico { width: 56px; height: 56px; padding: 14px; border-radius: 50%; background: var(--wah-bg); color: var(--wah-muted); }
.wah-empty h3 { margin: 14px 0 6px; color: var(--wah-ink); }
.wah-empty p { margin: 0 auto 18px; max-width: 420px; }
.wah-empty-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

/* Finder */
.wah-finder { padding: 22px; border-radius: calc(var(--wah-r) * 1.2); background: #fff; box-shadow: var(--wah-shadow-lg); }
.wah-finder-title { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: var(--wah-ink); font-size: 18px; }
.wah-finder-title .wah-ico { width: 22px; height: 22px; color: var(--wah-accent); }
.wah-finder-fields { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) auto; gap: 12px; align-items: end; }
.wah-finder label { display: grid; gap: 6px; margin: 0; }
.wah-finder label span { color: var(--wah-muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* ---------- Modal ---------- */
.wah-modal { position: fixed; inset: 0; z-index: 999999; display: grid; place-items: center; padding: 60px 70px; background: rgba(8, 9, 11, .92); }
.wah-modal[hidden] { display: none; }
.wah-modal-body { width: min(1200px, 100%); display: grid; place-items: center; }
.wah-modal-body iframe, .wah-modal-body video { display: block; width: min(1100px, 100%); aspect-ratio: 16 / 9; height: auto; border: 0; border-radius: 12px; background: #000; }
.wah-modal-body img { display: block; max-width: 100%; max-height: calc(100vh - 140px); border-radius: 12px; }
button.wah-modal-close { position: absolute; top: 14px; right: 20px; color: #fff !important; font-size: 42px !important; line-height: 1 !important; opacity: .85; }
button.wah-modal-close:hover { opacity: 1; }
button.wah-modal-nav { position: absolute; top: 50%; display: grid; place-items: center; width: 52px; height: 52px; margin-top: -26px; border-radius: 50% !important; background: rgba(255,255,255,.12) !important; color: #fff !important; }
button.wah-modal-nav:hover { background: rgba(255,255,255,.24) !important; }
.wah-modal-nav[hidden] { display: none; }
.wah-modal-nav.is-prev { left: 12px; transform: scaleX(-1); }
.wah-modal-nav.is-next { right: 12px; }
.wah-modal-nav .wah-ico { width: 24px; height: 24px; }
.wah-modal-count { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.7); font-size: 13px; }
.wah-toast { position: fixed; left: 50%; bottom: 96px; z-index: 999999; padding: 12px 20px; border-radius: 999px; background: var(--wah-ink); color: #fff; font-size: 14px; font-weight: 600; box-shadow: var(--wah-shadow-lg); transform: translateX(-50%); animation: wah-in .25s ease; }
@keyframes wah-in { from { opacity: 0; transform: translate(-50%, 10px); } }

/* ---------- Mobile bar ---------- */
.wah-mbar { display: none; }

/* ---------- My Account ---------- */
.wah-acc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.wah-acc-card { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid var(--wah-line); border-radius: var(--wah-r); color: var(--wah-ink) !important; text-decoration: none !important; transition: all .2s ease; }
.wah-acc-card:hover { border-color: var(--wah-accent); box-shadow: var(--wah-shadow); }
.wah-acc-card-ico { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--wah-accent-soft); color: var(--wah-accent); }
.wah-acc-card-ico .wah-ico { width: 24px; height: 24px; }
.wah-acc-card-txt { flex: 1; }
.wah-acc-card-txt strong { display: block; font-size: 16px; }
.wah-acc-card-txt small { color: var(--wah-muted); }
.wah-acc-card-arrow { width: 18px; height: 18px; color: var(--wah-muted); }
.wah-acc { display: grid; gap: 36px; }
.wah-acc-block h3 { margin: 0 0 14px; font-size: 19px; color: var(--wah-ink); }
.wah-acc-list { display: grid; gap: 12px; }
.wah-acc-item { display: grid; grid-template-columns: 68px minmax(0, 1fr) auto; align-items: center; gap: 10px 16px; padding: 14px; border: 1px solid var(--wah-line); border-radius: var(--wah-r); }
.wah-acc-thumb { display: grid; place-items: center; width: 68px; height: 68px; overflow: hidden; border-radius: 12px; background: var(--wah-bg); color: var(--wah-muted); }
.wah-acc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wah-acc-name { display: block; color: var(--wah-ink) !important; font-weight: 700; text-decoration: none !important; }
.wah-acc-sub { color: var(--wah-muted); font-size: 13px; }
.wah-acc-status { padding: 5px 12px; border-radius: 999px; background: var(--wah-bg); color: var(--wah-text); font-size: 12px; font-weight: 700; white-space: nowrap; }
.wah-st-new { background: #eff6ff; color: #1d4ed8; }
.wah-st-contacted { background: #fff7ed; color: #c2410c; }
.wah-st-booked { background: color-mix(in srgb, var(--wah-ok) 12%, #fff); color: var(--wah-ok); }
.wah-acc-btns { grid-column: 2 / -1; }
.wah-acc-btns .wah-actions { max-width: 360px; }
.wah-acc-empty { display: grid; justify-items: center; gap: 12px; padding: 36px 24px; border: 1px dashed var(--wah-line); border-radius: var(--wah-r); text-align: center; }
.wah-acc-empty > .wah-ico { width: 48px; height: 48px; color: var(--wah-accent); }
.wah-acc-empty p { margin: 0; max-width: 440px; }
.wah-acc-hint { display: flex; align-items: center; gap: 8px; color: var(--wah-muted); }
.wah-acc-hint .wah-ico { color: var(--wah-accent); }
.wah-acc-switch { display: inline-flex; gap: 4px; margin-bottom: 24px; padding: 4px; border-radius: 999px; background: var(--wah-bg); }
.wah-acc-switch a { padding: 8px 18px; border-radius: 999px; color: var(--wah-text); font-weight: 600; text-decoration: none; }
.wah-acc-switch a.is-active { background: #fff; color: var(--wah-ink); box-shadow: var(--wah-shadow-sm); }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
	.wah-grid-cards { --wah-cols-max: 3; }
	.wah-grid-cards[style*="--wah-cols:4"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
	:root { --wah-sticky-top: calc(var(--wd-admin-bar-h, 0px) + 70px); }
	.wah-top, .wah-lower { grid-template-columns: minmax(0, 1fr); }
	.wah-top-info, .wah-side-sticky, .wah-filters { position: static; }
	.wah-side-book { display: none; }
	.wah-side-sticky { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
	.wah-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
	.wah-steps::before { display: none; }
	.wah-grid-cards, .wah-grid-cards[style] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wah-highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wah-arch.has-filters { grid-template-columns: minmax(0, 1fr); }
	.wah-filter-open { display: inline-flex !important; }
	.wah-filters { position: fixed; top: 0; bottom: 0; left: 0; z-index: 100000; width: min(360px, 88vw); overflow-y: auto; border-radius: 0; transform: translateX(-105%); transition: transform .3s ease; }
	.wah-filters-open .wah-filters { transform: none; }
	button.wah-filters-close { display: block; }
	.wah-filters-open .wah-filters-backdrop { display: block; position: fixed; inset: 0; z-index: 99999; background: rgba(0,0,0,.45); }
	.wah-rv-summary { grid-template-columns: auto 1fr; }
	.wah-rv-cta { grid-column: 1 / -1; max-width: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
	.wah-rv-cta p { margin: 0; }
	.wah-finder-fields { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
	.wah-hero-inner { flex-direction: column; align-items: flex-start; min-height: 0; padding-block: 28px 36px; }
	.wah-hero-side { align-items: flex-start; width: 100%; }
	.wah-hero .wah-price { justify-content: flex-start; text-align: left; }
	.wah-hero .wah-price-note { justify-content: flex-start; }
	.wah-hero-stat { display: flex; align-items: baseline; gap: 8px; text-align: left; }
	.wah-hero-stat strong { font-size: 28px; }
	.wah-archive-page .wah-hero-side .wah-btn { display: none !important; }
	.wah-hero-search .wah-btn { padding: 8px 16px !important; }
	.wah-title-block { flex-direction: column; align-items: flex-start; gap: 14px; }
	.wah-top { gap: 20px; }
	.wah-panel { padding: 20px; }
	.wah-price-now { font-size: 30px; }
	.wah-g-nav { opacity: 1 !important; width: 38px !important; height: 38px !important; margin-top: -19px !important; }
	.wah-g-thumb { flex-basis: 88px !important; height: 66px !important; }
	.wah-included, .wah-checklist, .wah-enquiry-row, .wah-points.is-2col, .wah-acc-cards, .wah-specs { grid-template-columns: 1fr; }
	.wah-spec:nth-child(odd) { border-right: 0; }
	.wah-spec:nth-child(n) { background: #fff; }
	.wah-spec:nth-child(even) { background: var(--wah-bg); }
	.wah-steps { grid-template-columns: 1fr; }
	.wah-steps li { flex-direction: row; align-items: center; gap: 16px; text-align: left; }
	.wah-step-ico { flex: 0 0 56px; width: 56px; height: 56px; margin: 0; }
	.wah-steps li > strong, .wah-steps li > span:not(.wah-step-ico) { display: block; }
	.wah-steps li { display: grid; grid-template-columns: 56px 1fr; grid-template-rows: auto auto; column-gap: 16px; }
	.wah-steps .wah-step-ico { grid-row: span 2; }
	.wah-cta { flex-direction: column; align-items: flex-start; padding: 26px; }
	.wah-cta .wah-btn { width: 100%; }
	.wah-grid-cards, .wah-grid-cards[style] { gap: 16px; }
	.wah-rv-summary { grid-template-columns: 1fr; }
	.wah-rv-score { padding: 0 0 16px; border-right: 0; border-bottom: 1px solid var(--wah-line); }
	.wah-rv-cta { flex-direction: column; align-items: stretch; }
	.wah-rv-form .comment-form { grid-template-columns: 1fr; }
	.wah-rv-form .comment-form-author, .wah-rv-form .comment-form-email { grid-column: 1 / -1; }
	.wah-toolbar { align-items: stretch; }
	.wah-toolbar-right { width: 100%; }
	.wah-sort { flex: 1; }
	.wah-sort select { width: 100%; min-width: 0; }
	.wah-strip-grid { grid-template-columns: repeat(2, 1fr); }
	.wah-acc-item { grid-template-columns: 56px minmax(0, 1fr); }
	.wah-acc-thumb { width: 56px; height: 56px; }
	.wah-acc-status { grid-column: 2; justify-self: start; }
	.wah-grid-compact { --wah-cols: 2; }

	body.wah-has-mbar .wah-mbar {
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 390;
		display: flex; align-items: center; gap: 12px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
		background: #fff; box-shadow: 0 -8px 24px rgba(15,18,25,.12);
		transform: translateY(calc(100% + 80px)); visibility: hidden; transition: transform .3s ease, visibility 0s linear .3s;
	}
	body.wah-has-mbar .wah-mbar.is-on { transform: none; visibility: visible; transition: transform .3s ease; }
	body.wah-has-mbar.sticky-toolbar-on .wah-mbar { bottom: 55px; }
	.wah-mbar-price { flex: 1; min-width: 0; }
	.wah-mbar-price small { display: block; overflow: hidden; color: var(--wah-muted); font-size: 11.5px; white-space: nowrap; text-overflow: ellipsis; }
	.wah-mbar-price strong { color: var(--wah-ink); font-family: var(--wah-tf); font-size: 18px; }
}
@media (max-width: 560px) {
	.wah-grid-cards, .wah-grid-cards[style], .wah-grid-compact { grid-template-columns: minmax(0, 1fr); }
	.wah-highlights { grid-template-columns: 1fr 1fr; gap: 8px; }
	.wah-highlights li { flex-direction: column; align-items: flex-start; padding: 14px; }
	.wah-quick li { padding: 10px; gap: 8px; }
	.wah-quick .wah-ico { width: 30px; height: 30px; }
	.wah-finder-fields { grid-template-columns: 1fr; }
	.wah-mbar-actions .wah-btn-wa span:not(.wah-ico) { display: none; }
	.wah-modal { padding: 50px 8px; }
	.wah-modal-nav { top: auto !important; bottom: 10px; margin: 0 !important; }
}
@media (prefers-reduced-motion: reduce) {
	.wah-single *, .wah-archive-page *, .wah-card * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
.wah-enquiry-panel { margin-top: 20px; }
@media (max-width: 1024px) {
	.wah-top { display: flex; flex-direction: column; }
	.wah-top-media { display: contents; }
	.wah-top-media > .wah-gallery { order: 1; width: 100%; }
	.wah-top-info { order: 2; width: 100%; }
	.wah-top-media > .wah-highlights { order: 3; margin: 0; }
	.wah-top-media > .wah-enquiry-panel { order: 4; margin: 0; }
}

/* ---------- Brands ---------- */
.wah-brand { display: inline-flex; align-items: center; gap: 8px; color: var(--wah-ink) !important; text-decoration: none !important; }
.wah-brand-logo { display: grid; place-items: center; flex: 0 0 auto; overflow: hidden; background: #fff; }
.wah-brand-logo img { display: block; width: 100%; height: 100%; object-fit: contain; }
.wah-brand-logo.is-letter { background: var(--wah-ink); color: #fff; font-weight: 800; }
.wah-brand-chip { max-width: 100%; }
.wah-brand-chip .wah-brand-logo { width: 38px; height: 26px; padding: 2px; border-radius: 6px; box-shadow: inset 0 0 0 1px var(--wah-line); }
.wah-brand-chip .wah-brand-logo.is-letter { font-size: 12px; box-shadow: none; }
.wah-brand-chip .wah-brand-name { overflow: hidden; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; text-overflow: ellipsis; }
.wah-brand-chip:hover .wah-brand-name { color: var(--wah-accent); }
.wah-brand-box .wah-brand-logo { width: 88px; height: 60px; padding: 8px; border: 1px solid var(--wah-line); border-radius: var(--wah-r-sm); transition: border-color .2s ease, box-shadow .2s ease; }
.wah-brand-box .wah-brand-logo.is-letter { width: 60px; font-size: 26px; border: 0; }
.wah-brand-box:hover .wah-brand-logo { border-color: var(--wah-accent); box-shadow: var(--wah-shadow-sm); }
.wah-brand-box:not(.has-logo) .wah-brand-name { font-weight: 700; }
.wah-tb-side { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.wah-tb-brand { margin-bottom: 8px; }
.wah-spec-logo { display: inline-block; width: 22px; height: 22px; margin-right: 8px; object-fit: contain; vertical-align: -6px; }
.wah-card-top .wah-brand-chip { min-width: 0; }

/* Brand page hero */
.wah-hero-brand { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.wah-hero-brand .wah-brand-logo { width: 96px; height: 72px; padding: 10px; border: 0; border-radius: var(--wah-r); box-shadow: var(--wah-shadow-lg); }
.wah-hero-brand .wah-brand-logo.is-letter { width: 72px; background: var(--wah-accent); color: #fff; font-size: 34px; }
.wah-hero-brand .wah-brand-name { display: none; }
.wah-hero-brand .wah-hero-title { margin: 0 !important; }

/* About the brand */
.wah-brand-box-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.wah-brand-box-head small { display: block; color: var(--wah-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.wah-brand-box-head strong { color: var(--wah-ink); font-size: 18px; }
.wah-brand-box p { margin: 0 0 12px; color: var(--wah-text); font-size: 14px; line-height: 1.6; }

/* Brand grid [car_brands] */
.wah-brands.is-grid { display: grid; grid-template-columns: repeat(var(--wah-bcols, 6), minmax(0, 1fr)); gap: 14px; }
.wah-brands.is-slider { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - (var(--wah-bcols, 6) - 1) * 14px) / var(--wah-bcols, 6)); gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: thin; }
.wah-brands.is-slider .wah-brand-tile { scroll-snap-align: start; }
.wah-brand-tile { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 18px 12px 16px; border: 1px solid var(--wah-line); border-radius: var(--wah-r); background: #fff; color: var(--wah-ink) !important; text-align: center; text-decoration: none !important; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.wah-brand-tile:hover { transform: translateY(-3px); border-color: transparent; box-shadow: var(--wah-shadow); }
.wah-brand-tile-logo { display: grid; place-items: center; width: 100%; height: 64px; margin-bottom: 6px; }
.wah-brand-tile-logo img { max-width: 80%; max-height: 64px; object-fit: contain; filter: grayscale(1); opacity: .75; transition: filter .25s ease, opacity .25s ease; }
.wah-brand-tile:hover .wah-brand-tile-logo img { filter: none; opacity: 1; }
.wah-brand-tile-logo b { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--wah-bg); color: var(--wah-ink); font-size: 24px; }
.wah-brand-tile-name { font-weight: 700; font-size: 14px; }
.wah-brand-tile-count { color: var(--wah-muted); font-size: 12px; }

@media (max-width: 1024px) {
	.wah-brands.is-grid { grid-template-columns: repeat(min(var(--wah-bcols, 6), 4), minmax(0, 1fr)); }
	.wah-brands.is-slider { grid-auto-columns: 30%; }
}
@media (max-width: 768px) {
	.wah-tb-side { flex-direction: row-reverse; align-items: center; justify-content: space-between; width: 100%; }
	.wah-hero-brand .wah-brand-logo { width: 72px; height: 54px; }
	.wah-brands.is-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
	.wah-brands.is-slider { grid-auto-columns: 40%; }
}

/* ==========================================================================
   2.2 – whole photos, compact banners, toolbar, phone button order
   ========================================================================== */

/* Photos
   Cards: "full" = natural shape (whole photo, no crop); "fill" = same-size frames (cover).
   Gallery: frame takes the first photo's real shape (like WooCommerce/WoodMart). */
.wah-g-track { aspect-ratio: var(--wah-g-ratio, 16 / 10.5); }
button.wah-g-slide { background: var(--wah-bg); }
.wah-g-img { object-fit: contain; }
.wah-fit-fill .wah-g-img, .wah-g-slide.is-video .wah-g-img { object-fit: cover; }
.wah-fit-full .wah-card-img { aspect-ratio: auto; }
.wah-fit-full .wah-card-img img { height: auto !important; object-fit: initial; }
.wah-fit-full .wah-card-noimg { aspect-ratio: 16 / 11; }
.wah-has-ratio .wah-card-img img { height: 100% !important; object-fit: cover !important; }

/* Banners: balanced spacing */
.wah-hero { margin-bottom: 44px; }
.wah-hero-inner, .wah-archive-page .wah-hero-inner { min-height: 0; padding-block: 44px 52px; align-items: center; }
.wah-hero .wah-crumbs { margin: 0 0 18px; }
.wah-hero .wah-eyebrow { margin-bottom: 10px; }
.wah-hero-title { font-size: clamp(30px, 3.6vw, 48px) !important; margin: 0 0 14px !important; line-height: 1.12 !important; }
.wah-hero-sub { margin: 0 0 18px; font-size: 16.5px; line-height: 1.65; }
.wah-hero .wah-rating { margin-top: 2px; }
.wah-hero .wah-meta-line { margin-bottom: 14px; }
.wah-hero-search { margin-top: 22px; }
.wah-hero-search input[type=search], .wah-hero-search .wah-btn { height: 46px !important; min-height: 46px !important; }
.wah-hero-stat strong { font-size: 40px; }
.wah-cats { margin-top: -30px; margin-bottom: 36px; }
.wah-archive-page .wah-container > .wah-arch:first-child { margin-top: 44px; }

/* Toolbar can be hidden (phones keep the Filters button) */
.wah-toolbar.is-hidden { display: none; }

@media (max-width: 1024px) {
	.wah-arch.has-filters .wah-toolbar.is-hidden { display: flex; }
	.wah-toolbar.is-hidden .wah-results, .wah-toolbar.is-hidden .wah-sort { display: none; }
}

@media (max-width: 768px) {
	.wah-hero { margin-bottom: 28px; }
	.wah-hero::after { height: 3px; }
	.wah-hero-inner, .wah-archive-page .wah-hero-inner { gap: 12px; padding-block: 26px 30px; }
	.wah-hero-title { font-size: clamp(24px, 7vw, 30px) !important; line-height: 1.18 !important; margin-bottom: 10px !important; }
	.wah-hero-sub { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; font-size: 14.5px; }
	.wah-hero .wah-crumbs { margin-bottom: 12px; font-size: 12px; }
	.wah-hero .wah-eyebrow { margin-bottom: 6px; font-size: 11px; }
	.wah-hero .wah-rating { font-size: 13px; }
	.wah-hero .wah-meta-line { margin-bottom: 10px; font-size: 13px; }
	.wah-archive-page .wah-container > .wah-arch:first-child { margin-top: 28px; }
	.wah-hero-single .wah-hero-side { display: none; }
	.wah-archive-page .wah-hero-side { display: none; }
	.wah-hero-search { margin-top: 14px; padding: 4px 4px 4px 12px; }
	.wah-hero-search input[type=search], .wah-hero-search .wah-btn { height: 38px !important; min-height: 38px !important; font-size: 14px; }
	.wah-hero-brand { gap: 12px; margin-bottom: 6px; }
	.wah-hero-brand .wah-brand-logo { width: 60px; height: 44px; padding: 6px; }
	.wah-cats { margin-top: -16px; margin-bottom: 22px; gap: 8px; }
	.wah-cat { padding: 6px 12px 6px 6px; font-size: 13px; }
	.wah-cat-ico { width: 28px; height: 28px; }

	/* Booking panel: WhatsApp / Call right after the short description */
	.wah-summary { display: flex; flex-direction: column; gap: 16px; }
	.wah-summary > * + * { margin-top: 0; }
	.wah-summary > * { order: 10; }
	.wah-summary > .wah-title-block,
	.wah-summary > .wah-avail,
	.wah-summary > .wah-price,
	.wah-summary > .wah-short { order: 1; }
	.wah-summary > .wah-actions { order: 2; }
}
.wah-card-badges, button.wah-card-fav, .wah-card-video { z-index: 3; }
.wah-card-img { overflow: hidden; }

/* Grid columns per device: columns / tablet / mobile (shortcode options) */
@media (max-width: 1024px) {
	.wah-grid-cards, .wah-grid-cards[style] { grid-template-columns: repeat(var(--wah-cols-t, 2), minmax(0, 1fr)); }
}
@media (max-width: 767px) {
	.wah-grid-cards, .wah-grid-cards[style], .wah-grid-compact { grid-template-columns: repeat(var(--wah-cols-m, 1), minmax(0, 1fr)); gap: 12px; }
}
/* Very narrow cards (2 per row on phones) */
/* Card width based styles (set by script – works in every browser) */
.wah-grid-cards.is-narrow .wah-card-body { gap: 8px; padding: 12px; }
.wah-grid-cards.is-narrow .wah-card-title { font-size: 15px !important; }
.wah-grid-cards.is-narrow .wah-card-text, .wah-grid-cards.is-narrow .wah-card-loc { display: none; }
.wah-grid-cards.is-narrow .wah-card-specs { grid-template-columns: 1fr; }
.wah-grid-cards.is-narrow .wah-card-specs li:nth-child(n+3) { display: none; }
.wah-grid-cards.is-narrow .wah-card-top .wah-brand-chip .wah-brand-logo { display: none; }
.wah-grid-cards.is-narrow .wah-cp strong { font-size: 16px; }
.wah-grid-cards.is-narrow .wah-cp del { display: none; }
.wah-grid-cards.is-narrow .wah-card-more { display: none; }
.wah-grid-cards.is-narrow .wah-card-body .wah-actions-sm:not(.is-single) { grid-template-columns: 1fr 1fr; gap: 6px; }
.wah-grid-cards.is-narrow .wah-card-body .wah-actions-sm:not(.is-single) .wah-btn { padding: 0 !important; }
.wah-grid-cards.is-narrow .wah-card-body .wah-actions-sm:not(.is-single) .wah-btn span:not(.wah-ico) { display: none; }
.wah-grid-cards.is-narrow .wah-card-body .wah-actions-sm.is-single .wah-btn { padding: 0 8px !important; font-size: 12.5px !important; }
.wah-grid-cards.is-narrow .wah-card-badges .wah-pill { padding: 3px 7px; font-size: 11px; }

/* Elementor widget options */
.wah-el .wah-sc-more:empty { display: none; }
.wah-hide-cat .wah-card-cat, .wah-hide-cat .wah-card-top .wah-brand { display: none !important; }
.wah-hide-rating .wah-card-rating { display: none !important; }
.wah-hide-price .wah-card-price { visibility: hidden; }
.wah-hide-price.wah-el .wah-card-foot { justify-content: flex-end; }
.wah-hide-price .wah-card-price { display: none; }
.wah-hide-badges .wah-card-badges, .wah-hide-badges .wah-card-video { display: none !important; }
.wah-hide-fav .wah-card-fav { display: none !important; }
.wah-hide-text .wah-card-text { display: none !important; }
.wah-hide-specs .wah-card-specs { display: none !important; }
.wah-hide-meta .wah-card-loc { display: none !important; }
.wah-el.wah-fit-fill .wah-card-img { aspect-ratio: 16 / 11; }
.wah-el.wah-fit-fill .wah-card-img img { object-fit: cover; height: 100% !important; }
.wah-el.wah-fit-full .wah-card-img:not([style]) { aspect-ratio: auto; }
.wah-el.wah-fit-full:not(.wah-has-ratio) .wah-card-img img { height: auto !important; }
.wah-no-lift .wah-card:hover { transform: none; }
.wah-el-empty { padding: 24px; border: 2px dashed var(--wah-line); border-radius: var(--wah-r); color: var(--wah-muted); text-align: center; }

/* Gallery: thumbnails on the left (laptops) */
@media (min-width: 1025px) {
	.wah-single .wah-top { grid-template-columns: minmax(0, var(--wah-gal-w, 55%)) minmax(320px, 1fr); }
	.wah-gallery.is-thumbs-left { display: grid; grid-template-columns: var(--wah-thumb-w, 124px) minmax(0, 1fr); gap: 14px; align-items: stretch; }
	.wah-gallery.is-thumbs-left .wah-g-main { grid-column: 2; grid-row: 1; }
	.wah-gallery.is-thumbs-left .wah-g-side { grid-column: 1; grid-row: 1; position: relative; height: 0; min-height: 100%; box-sizing: border-box; padding: 0 0 52px; }
	.wah-gallery.is-thumbs-left .wah-g-thumbs {
		position: relative; height: 100%; flex-direction: column; gap: 12px; margin: 0; padding: 0;
		overflow-x: hidden; overflow-y: auto; scrollbar-width: none;
	}
	.wah-gallery.is-thumbs-left .wah-g-thumbs::-webkit-scrollbar { display: none; }
	.wah-gallery.is-thumbs-left button.wah-g-thumb { flex: 0 0 auto; width: 100%; height: auto; aspect-ratio: 1; }

	/* WoodMart-style arrows: two grey buttons under the thumbnails */
	.wah-gallery.is-thumbs-left .wah-thumb-nav { display: block !important; position: absolute; inset: auto 0 0 0; height: 42px; margin: 0; pointer-events: none; }
	.wah-gallery.is-thumbs-left .wah-thumb-nav .wd-btn-arrow {
		position: absolute; inset: auto; top: 0; bottom: auto; width: calc(50% - 5px); height: 42px; margin: 0; transform: none; z-index: 5; pointer-events: auto;
		--wd-arrow-width: 100%; --wd-arrow-height: 42px; --wd-arrow-icon-size: 18px;
		--wd-arrow-bg: #f1f2f4; --wd-arrow-bg-hover: #e4e6ea; --wd-arrow-bg-dis: #f1f2f4;
		--wd-arrow-color: #333; --wd-arrow-color-hover: #111; --wd-arrow-color-dis: #b9bdc4; --wd-arrow-radius: 6px; --wd-arrow-shadow: none;
	}
	.wah-gallery.is-thumbs-left .wah-thumb-nav .wd-prev { left: 0; right: auto; }
	.wah-gallery.is-thumbs-left .wah-thumb-nav .wd-next { right: 0; left: auto; }
	.wah-gallery.is-thumbs-left .wah-thumb-nav .wd-arrow-inner { width: 100%; height: 42px; border-radius: 6px; }
	.wah-gallery.is-thumbs-left .wah-thumb-nav .wd-arrow-inner::after { display: inline-block; transform: rotate(90deg); }
	.wah-gallery.is-thumbs-left .wah-thumb-nav .wd-arrow-inner .wah-ico { transform: rotate(90deg); }
	.wah-gallery.is-thumbs-left .wah-thumb-nav .wd-prev .wah-ico { transform: rotate(-90deg); }
	.wah-gallery.is-thumbs-left .wah-thumb-nav .wd-btn-arrow.wd-disabled { pointer-events: none; }

}

/* Thumbnail arrows exist only for the laptop "thumbnails on the left" layout */
.wah-gallery .wah-thumb-nav { display: none !important; }

/* Checklist ticks in the brand colour */
.wah-checklist .wah-ico { background: var(--wah-accent); }
/* Fallback when the WoodMart arrow styles are not available */
.wah-thumb-nav .wd-arrow-inner:has(.wah-ico) { display: grid; place-items: center; background: #f1f2f4; color: #333; cursor: pointer; }
.wah-thumb-nav .wd-arrow-inner .wah-ico { width: 16px; height: 16px; }
/* Video slides / thumbs: dark backdrop so the glass play button always stands out */
button.wah-g-thumb.is-video, button.wah-g-slide.is-video { background: #16181d; }

/* Video playing inside the main image area */
.wah-g-player { position: absolute; inset: 0; z-index: 4; background: #000; }
.wah-g-player iframe, .wah-g-player video { display: block; width: 100%; height: 100%; border: 0; object-fit: contain; background: #000; }
.wah-g-main.is-playing .wah-g-badges, .wah-g-main.is-playing .wah-g-sale, .wah-g-main.is-playing .wah-g-count { display: none; }
.wah-g-main button.wah-g-nav, .wah-g-main button.wah-g-zoom { z-index: 5; }
.wah-g-main.is-playing button.wah-g-zoom { top: 16px; bottom: auto; }

/* Phones: a little more space between "You may also like" cards */
@media (max-width: 767px) {
	.wah-related .wah-grid-cards, .wah-related .wah-grid-cards[style] { gap: 22px; }
}

/* Grids always contain their cards; no hover lift on touch screens */
.wah-sc, .wah-el, .wah-grid-cards { display: flow-root; position: relative; }
.wah-grid-cards { display: grid; }
@media (hover: none) {
	.wah-card:hover { transform: none; box-shadow: none; }
	.wah-card:hover .wah-card-img img { transform: none; }
}

/* Brand filter with logos */
.wah-brand-choices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.wah-brand-choices.is-collapsible:not(.is-open) .wah-bchoice:nth-child(n+10) { display: none; }
.wah-bchoice { position: relative; margin: 0 !important; cursor: pointer; }
.wah-bchoice input[type=radio] { position: absolute !important; opacity: 0 !important; width: 1px !important; height: 1px !important; margin: 0 !important; appearance: none !important; pointer-events: none; }
.wah-bchoice-box { position: relative; display: flex; flex-direction: column; align-items: center; gap: 5px; height: 100%; padding: 10px 4px 8px; border: 1px solid var(--wah-line); border-radius: 10px; background: #fff; text-align: center; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.wah-bchoice:hover .wah-bchoice-box { border-color: var(--wah-ink); }
.wah-bchoice input:checked + .wah-bchoice-box { border-color: var(--wah-accent); background: var(--wah-accent-soft); box-shadow: 0 0 0 1px var(--wah-accent) inset; }
.wah-bchoice input:focus-visible + .wah-bchoice-box { outline: 2px solid var(--wah-accent); outline-offset: 2px; }
.wah-bchoice-logo { display: grid; place-items: center; width: 100%; height: 34px; }
.wah-bchoice-logo img { max-width: 80%; max-height: 34px; object-fit: contain; }
.wah-bchoice-logo.is-letter { width: 34px; border-radius: 50%; background: var(--wah-bg); color: var(--wah-ink); font-weight: 800; font-size: 15px; }
.wah-bchoice-logo.is-any { color: var(--wah-accent); }
.wah-bchoice-logo.is-any .wah-ico { width: 26px; height: 26px; }
.wah-bchoice-name { display: block; width: 100%; overflow: hidden; color: var(--wah-ink-2); font-size: 11.5px; font-weight: 600; line-height: 1.25; white-space: nowrap; text-overflow: ellipsis; }
.wah-bchoice-count { position: absolute; top: 4px; right: 5px; color: var(--wah-muted); font-size: 10px; font-style: normal; }
button.wah-bchoice-more { display: block; margin: 10px auto 0; padding: 4px 8px !important; color: var(--wah-accent) !important; font-size: 12.5px !important; font-weight: 600 !important; text-decoration: underline !important; }
.wah-bchoice-more .is-less, .wah-bchoice-more.is-open .is-more { display: none; }
.wah-bchoice-more.is-open .is-less { display: inline; }
.wah-bchoice-logo.is-icon { color: var(--wah-ink-2); }
.wah-bchoice-logo.is-icon .wah-ico { width: 30px; height: 30px; }
.wah-bchoice-logo.is-icon .wah-ico-img img { width: 100%; height: 100%; object-fit: contain; }
.wah-bchoice input:checked + .wah-bchoice-box .wah-bchoice-logo.is-icon { color: var(--wah-accent); }
.wah-fg-tiles + .wah-fg-tiles { margin-top: 4px; }
