/* =====================================================================
   COMAGRIL 2026 — Machinery Export & Logistics design system
   80% transport / export · 20% machinery dealer
   Palette : deep navy #0e2a47 · ocean #123b63 · signal orange #ff7a14
   ===================================================================== */

:root {
	--navy-900: #071527;
	--navy-800: #0a1f36;
	--navy-700: #0e2a47;
	--navy-600: #123b63;
	--navy-500: #1d5288;
	--blue-300: #3e6f9e;
	--orange-500: #ff7a14;
	--orange-400: #ff8a2a;
	--orange-600: #f06400;
	--surface: #f4f7fb;
	--card: #ffffff;
	--ink-900: #101c2c;
	--ink-700: #33445c;
	--ink-500: #5d6f88;
	--line: #dde6f0;
	--success: #14a05a;
	--danger: #d92c2c;
	--wa: #25d366;
	--radius: 16px;
	--radius-sm: 10px;
	--shadow-sm: 0 2px 10px rgba(14, 42, 71, .08);
	--shadow-md: 0 10px 32px rgba(14, 42, 71, .14);
	--shadow-lg: 0 24px 60px rgba(7, 21, 39, .28);
	--font-head: 'Archivo', 'Inter', sans-serif;
	--font-body: 'Inter', sans-serif;

	/* Logo colours. The SVG logos paint themselves with these, so every theme
	   automatically recolours the logo just by overriding its own palette. */
	--logo-bg: var(--navy-700);
	--logo-mid: var(--blue-300);
	--logo-accent: var(--orange-500);
	--logo-ink: #eef5fb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--font-body);
	background: var(--surface);
	color: var(--ink-900);
	font-size: 15.5px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: var(--navy-500); text-decoration: none; }
a:hover { color: var(--orange-600); }

/* ============================== TOP BAR ============================== */
.topbar {
	background: var(--navy-900);
	color: #b9cbdd;
	font-size: 12.5px;
	position: relative;
	z-index: 60;
}
.topbar-inner {
	max-width: 1280px; margin: 0 auto; padding: 7px 22px;
	display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.topbar-contact { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-contact i { color: var(--orange-400); margin-right: 5px; }
.topbar-tag { opacity: .85; letter-spacing: .4px; text-transform: uppercase; font-weight: 600; font-size: 11px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-account { display: flex; align-items: center; gap: 8px; }
.topbar-account a { color: #b9cbdd; font-weight: 600; }
.topbar-account a:hover { color: #fff; }
.topbar-account i { color: var(--orange-400); margin-right: 4px; }
.topbar-account-sep { opacity: .4; }
.account-menu { position: relative; }
.account-menu-toggle {
	background: none; border: none; cursor: pointer; color: #b9cbdd; font-weight: 600;
	font-size: inherit; font-family: inherit; display: flex; align-items: center; gap: 4px; padding: 0;
}
.account-menu-toggle:hover { color: #fff; }
.account-menu-toggle i:first-child { color: var(--orange-400); margin-right: 2px; }
.account-menu-chevron { font-size: 9px; opacity: .8; transition: .2s; }
.account-menu.open .account-menu-chevron { transform: rotate(180deg); }

.header-bell { position: relative; display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; color: #b9cbdd; font-size: 14px; transition: .2s; }
.header-bell:hover { color: #fff; background: rgba(255,255,255,.08); }
.header-bell.has-unread { color: #ffcf40; animation: header-bell-shake 2.5s ease-in-out infinite; }
.header-bell-dot { position: absolute; top: 2px; right: 2px; width: 11px; height: 11px; border-radius: 50%; background: #ff3b30; border: 2px solid var(--navy-800, #0e2338); box-shadow: 0 0 0 rgba(255,59,48,.6); animation: header-bell-pulse 1.8s infinite; z-index: 2; }
@keyframes header-bell-pulse { 0% { box-shadow: 0 0 0 0 rgba(255,59,48,.6); } 70% { box-shadow: 0 0 0 6px rgba(255,59,48,0); } 100% { box-shadow: 0 0 0 0 rgba(255,59,48,0); } }
@keyframes header-bell-shake { 0%, 88%, 100% { transform: rotate(0); } 90% { transform: rotate(-12deg); } 92% { transform: rotate(10deg); } 94% { transform: rotate(-8deg); } 96% { transform: rotate(6deg); } 98% { transform: rotate(0); } }

.header-callnow { display: flex; align-items: center; gap: 10px; padding-right: 14px; margin-right: 4px; border-right: 1px solid rgba(255,255,255,.15); }
.header-callnow-info { display: flex; align-items: center; gap: 8px; color: #b9cbdd; }
.header-callnow-info:hover { color: #fff; }
.header-callnow-info i { font-size: 16px; color: var(--orange-400); }
.header-callnow-info span { display: flex; flex-direction: column; line-height: 1.25; }
.header-callnow-info small { font-size: 9.5px; text-transform: uppercase; letter-spacing: .4px; opacity: .8; }
.header-callnow-info b { font-size: 12.5px; }
.header-callnow-wa { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: #25D366; color: #fff; font-size: 15px; flex-shrink: 0; transition: .2s; }
.header-callnow-wa:hover { filter: brightness(1.08); transform: scale(1.05); }
@media (max-width: 780px) { .header-callnow-info span { display: none; } .header-callnow { padding-right: 8px; gap: 6px; } }
.header-bell-menu { position: relative; }
.header-bell-dropdown {
	display: none; position: absolute; right: 0; top: calc(100% + 12px);
	background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
	width: 320px; max-width: 88vw; padding: 10px; z-index: 100; max-height: 420px; overflow-y: auto;
}
.header-bell-menu.open .header-bell-dropdown { display: block; }
.header-bell-dropdown-title { margin: 2px 6px 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--ink-500); }
/* Scoped under .header-bell-dropdown (not just the bare class) so these win
   over .topbar-account a / .topbar-account i — those target ANY link/icon
   inside the topbar for the dark navy bar, and were leaking their pale,
   low-contrast color into this white popup, making the text unreadable. */
.header-bell-dropdown .header-bell-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 8px; border-radius: 8px; color: var(--ink-900) !important; }
.header-bell-dropdown .header-bell-item:hover { background: var(--surface); }
.header-bell-dropdown .header-bell-item-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin: 0; }
.header-bell-dropdown .header-bell-item-icon i { color: var(--navy-600) !important; font-size: 13px; margin: 0; }
.header-bell-dropdown .header-bell-item-text { flex: 1; min-width: 0; font-size: 13px; line-height: 1.4; color: var(--ink-900) !important; }
.header-bell-dropdown .header-bell-item small { color: var(--ink-500) !important; font-size: 11px; font-weight: 400; }
.header-bell-empty { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 24px 10px; color: var(--ink-500) !important; font-size: 12.5px; text-align: center; }
.header-bell-empty i { font-size: 22px; opacity: .5; color: var(--ink-500) !important; margin: 0; }
.header-bell-dropdown .header-bell-viewall { display: block; text-align: center; margin-top: 6px; padding: 10px; border-radius: 8px; font-size: 12.5px; font-weight: 700; color: var(--navy-600) !important; border-top: 1px solid var(--line); }
.header-bell-dropdown .header-bell-viewall:hover { background: var(--surface); }
@media (max-width: 480px) { .header-bell-dropdown { position: fixed; right: 8px; left: 8px; width: auto; top: 56px; } }

.account-menu-dropdown {
	display: none; position: absolute; right: 0; top: calc(100% + 12px);
	background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
	min-width: 240px; padding: 8px; z-index: 100;
}
.account-menu.open .account-menu-dropdown { display: block; }
.account-menu-dropdown a {
	display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; color: var(--ink-900);
}
.account-menu-dropdown a:hover { background: var(--surface); }
.account-menu-dropdown a i { width: 18px; text-align: center; color: var(--navy-600); font-size: 15px; }
.account-menu-dropdown a span { display: flex; flex-direction: column; line-height: 1.35; }
.account-menu-dropdown a b { font-size: 13.5px; font-weight: 700; }
.account-menu-dropdown a small { font-size: 11.5px; color: var(--ink-500); font-weight: 400; }
.account-menu-dropdown a.account-menu-logout { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px; }
.account-menu-dropdown a.account-menu-logout i { color: var(--danger); }

/* ============================== ACCOUNT LOGIN/REGISTER TABS ============================== */
.account-tabs { display: flex; gap: 4px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 4px; margin-bottom: 16px; }
.account-tab { flex: 1; text-align: center; padding: 10px 14px; border-radius: calc(var(--radius) - 4px); font-weight: 600; color: var(--ink-500); }
.account-tab.active { background: var(--card); color: var(--ink-900); box-shadow: var(--shadow-sm); }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-current {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.14);
	color: #eaf3fb; font-family: var(--font-body);
	padding: 5px 12px; border-radius: 999px; cursor: pointer; font-size: 12.5px;
	display: flex; align-items: center; gap: 7px; transition: .2s;
}
.lang-current:hover { background: rgba(255,255,255,.14); }
.lang-current i { font-size: 10px; opacity: .8; }
.lang-menu {
	display: none; position: absolute; right: 0; top: calc(100% + 8px);
	background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
	min-width: 185px; padding: 8px; z-index: 100;
	max-height: 60vh; overflow: auto;
}
.lang-menu.open { display: block; }
.lang-menu a {
	display: block; padding: 8px 12px; border-radius: 8px;
	color: var(--ink-900); font-size: 13.5px; white-space: nowrap;
}
.lang-menu a:hover { background: var(--surface); }
.lang-menu a.active { background: var(--navy-700); color: #fff; }
.flag-ico { vertical-align: middle; border-radius: 2px; }

/* ============================== NAVBAR ============================== */
.navbar {
	background: linear-gradient(180deg, var(--navy-800), var(--navy-700));
	position: sticky; top: 0; z-index: 50;
	box-shadow: 0 4px 24px rgba(7,21,39,.35);
	transition: .25s;
}
.navbar.scrolled { box-shadow: 0 6px 30px rgba(7,21,39,.5); }
/* Anything a script scrolls to (e.g. the Buy Now button jumping to the contact
   form) needs breathing room above it, or it lands hidden under the sticky navbar. */
.agent-card { scroll-margin-top: 150px; }
.nav-container {
	max-width: 1280px; margin: 0 auto; padding: 10px 22px;
	display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.nav-logo a { display: flex; align-items: center; gap: 12px; }
.nav-logo img, .nav-logo .logo-mark { height: 52px; width: 52px; flex-shrink: 0; border-radius: 12px; display: block; }
.nav-logo img { width: auto; }
.logo-text h1 {
	font-family: var(--font-head); font-size: 21px; font-weight: 800;
	color: #fff; letter-spacing: .5px; line-height: 1.1;
}
.logo-text p {
	font-size: 10.5px; color: var(--orange-400); text-transform: uppercase;
	letter-spacing: 1.6px; font-weight: 600;
}

.nav-menu { display: flex; list-style: none; gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
.nav-menu a {
	display: block; padding: 9px 11px; border-radius: 10px; text-align: center;
	transition: .18s;
}
.nav-menu a .nav-title {
	display: block; color: #eaf3fb; font-weight: 700; font-size: 12px; letter-spacing: .6px;
	font-family: var(--font-head);
}
.nav-menu a .nav-subtitle { display: block; color: #7d9cbd; font-size: 10px; margin-top: 1px; }
.nav-menu a:hover { background: rgba(255,255,255,.08); }
.nav-menu a.active { background: var(--orange-500); }
.nav-menu a.active .nav-title { color: #fff; }
.nav-menu a.active .nav-subtitle { color: #ffe3c9; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span {
	display: block; width: 26px; height: 3px; margin: 5px 0;
	background: #fff; border-radius: 3px; transition: .25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================== ALERTS ============================== */
.alert {
	max-width: 1280px; margin: 14px auto 0; padding: 13px 18px;
	border-radius: var(--radius-sm); display: flex; align-items: center; gap: 10px;
	font-size: 14px; box-shadow: var(--shadow-sm);
}
.alert-error { background: #ffe9e9; color: #8f1414; border: 1px solid #f3bcbc; }
.alert-success { background: #e3f8ec; color: #0c5c33; border: 1px solid #b5e6cc; }
.alert-close { margin-left: auto; background: none; border: 0; cursor: pointer; color: inherit; opacity: .6; }
.alert-close:hover { opacity: 1; }

/* ============================== LAYOUT ============================== */
.main-content { min-height: 62vh; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 22px 60px; }

/* Cards */
.glass-card {
	background: var(--card); border: 1px solid var(--line);
	border-radius: var(--radius); box-shadow: var(--shadow-sm);
	padding: 26px; margin-bottom: 24px;
}

/* ============================== HERO ============================== */
.hero-banner, .page-banner {
	margin: 22px -22px 26px;
	border-radius: 0;
	background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
	background-size: cover !important; background-position: center !important;
	position: relative; overflow: hidden; color: #fff;
}
@media (min-width: 1330px) {
	.hero-banner, .page-banner { margin: 22px 0 26px; border-radius: 22px; }
}
.hero-banner::before, .page-banner::before {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(7,21,39,.82) 20%, rgba(7,21,39,.45) 60%, rgba(7,21,39,.25));
}
.hero-inner { position: relative; padding: 74px 56px; max-width: 900px; }
.page-banner .hero-inner { padding: 52px 56px; }

.hero-eyebrow {
	display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px;
	text-transform: uppercase; color: var(--orange-400);
	background: rgba(255,122,20,.12); border: 1px solid rgba(255,122,20,.4);
	padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero-title {
	font-family: var(--font-head); font-size: clamp(30px, 4.6vw, 54px);
	font-weight: 900; line-height: 1.08; letter-spacing: -.5px; margin-bottom: 14px;
}
.grad-text {
	background: linear-gradient(90deg, var(--orange-400), #ffc37e);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-subtitle { font-size: 16.5px; color: #cdddeb; max-width: 640px; margin-bottom: 26px; }

.banner-title {
	font-family: var(--font-head); font-size: clamp(24px, 3.4vw, 38px);
	font-weight: 800; line-height: 1.15;
}
.banner-subtitle { margin-top: 8px; color: #cdddeb; font-size: 15px; }
.banner-cat {
	display: inline-block; background: rgba(255,122,20,.18); border: 1px solid rgba(255,122,20,.45);
	color: #ffd9b3; font-size: 12.5px; font-weight: 600; padding: 3px 12px;
	border-radius: 999px; margin-right: 10px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

/* Buttons */
.btn-primary, .btn-outline, .btn-whatsapp, .search-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: .4px;
	border: 0; border-radius: 12px; cursor: pointer; transition: .2s; text-align: center;
}
.btn-primary {
	background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
	color: #fff; padding: 13px 26px;
	box-shadow: 0 8px 22px rgba(255,122,20,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,122,20,.45); color: #fff; }
.btn-secondary {
	background: var(--surface); color: var(--navy-700); padding: 13px 26px;
	border: 1.5px solid var(--line);
}
.btn-secondary:hover { background: var(--card); color: var(--navy-700); transform: translateY(-2px); }
.auction-buynow {
	margin-top: 16px; padding: 16px; border-radius: 12px;
	background: linear-gradient(150deg, rgba(20,160,90,.08), rgba(20,160,90,.02));
	border: 1.5px solid rgba(20,160,90,.35);
}
.auction-buynow-head { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--success); text-transform: uppercase; letter-spacing: .3px; margin-bottom: 12px; }
.auction-buynow-prices { display: flex; align-items: stretch; gap: 10px; margin-bottom: 14px; }
.abn-price { flex: 1; display: flex; flex-direction: column; gap: 3px; padding: 10px 12px; border-radius: 9px; background: rgba(255,255,255,.6); }
.abn-price span { font-size: 11px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .3px; }
.abn-price b { font-size: 16px; font-weight: 700; color: var(--ink-500); }
.abn-price.abn-now { background: var(--success); }
.abn-price.abn-now span { color: rgba(255,255,255,.85); }
.abn-price.abn-now b { font-size: 21px; font-weight: 800; color: #fff; }
.auction-buynow-btn {
	background: linear-gradient(135deg, #17b566, var(--success)); color: #fff; padding: 13px 26px;
	box-shadow: 0 8px 20px rgba(20,160,90,.35); border: none;
}
.auction-buynow-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(20,160,90,.45); color: #fff; }
@media (max-width: 480px) { .auction-buynow-prices { flex-direction: column; } }
.btn-outline {
	background: rgba(255,255,255,.06); color: #fff; padding: 13px 26px;
	border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-whatsapp {
	background: var(--wa); color: #fff; padding: 12px 22px; margin-top: 12px;
	box-shadow: 0 8px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { background: #1fb958; color: #fff; transform: translateY(-2px); }
.btn-whatsapp i { font-size: 19px; }

/* Search boxes */
.search-container { display: flex; gap: 16px; flex-wrap: wrap; }
.search-container.page-top { margin-bottom: 26px; }
.search-box {
	background: rgba(10,31,54,.66); backdrop-filter: blur(14px);
	border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
	padding: 18px 20px; flex: 1; min-width: 300px;
}
.search-container.page-top .search-box { background: var(--card); border: 1px solid var(--line); }
.search-box h3 {
	font-family: var(--font-head); font-size: 13.5px; font-weight: 700;
	color: #fff; letter-spacing: .5px; margin-bottom: 11px; text-transform: uppercase;
}
.search-container.page-top .search-box h3 { color: var(--ink-900); }
.search-box h3 i:first-child { color: var(--orange-400); margin-right: 6px; }
.help-icon { color: #9fb8ce; cursor: help; font-size: 13px; }
.search-row { display: flex; gap: 9px; }
.search-input {
	flex: 1; padding: 12px 15px; font-size: 14px; font-family: var(--font-body);
	background: rgba(255,255,255,.94); color: var(--ink-900);
	border: 1px solid rgba(255,255,255,.35); border-radius: 11px; outline: 0; min-width: 0;
}
.search-container.page-top .search-input,
.page-search .search-input { background: var(--surface); border: 1px solid var(--line); }
.search-input:focus { border-color: var(--orange-400); box-shadow: 0 0 0 3px rgba(255,122,20,.18); }
.search-btn { background: var(--orange-500); color: #fff; padding: 12px 22px; }
.search-btn:hover { background: var(--orange-600); }

.page-search { display: flex; align-items: center; gap: 12px; padding: 16px 20px; }
.page-search > i { color: var(--blue-300); font-size: 17px; }

.tracking-form {
	background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
	border-radius: var(--radius); padding: 22px 24px; margin: 18px 0; color: #fff;
}
.tracking-form h3, .page-body .tracking-form h3 { font-family: var(--font-head); font-size: 15px; margin-bottom: 13px; color: #fff; }
.tracking-form h3 i:first-child { color: var(--orange-400); margin-right: 6px; }

/* ============================== STATS STRIP ============================== */
.stats-strip {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
	margin: 0 0 34px;
}
.stat-item {
	background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 20px 14px; text-align: center; box-shadow: var(--shadow-sm);
}
.stat-item i { font-size: 25px; color: var(--orange-500); margin-bottom: 8px; display: block; }
.stat-item b {
	display: block; font-family: var(--font-head); font-size: 27px; font-weight: 800;
	color: var(--navy-700); line-height: 1.1;
}
.stat-item span { font-size: 12.5px; color: var(--ink-500); }

/* ============================== SECTION TITLES ============================== */
.section-title { margin: 36px 0 20px; display: flex; align-items: center; gap: 14px; }
.section-title h2 {
	font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--navy-700);
}
.section-title h2 i { color: var(--orange-500); margin-right: 8px; }
.section-title::after { content: ''; flex: 1; height: 2px; background: linear-gradient(90deg, var(--line), transparent); }

.section-heading {
	font-family: var(--font-head); font-size: 19px; font-weight: 800; color: var(--navy-700);
	margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--surface);
}
.section-heading i { color: var(--orange-500); margin-right: 8px; }
.side-heading {
	font-family: var(--font-head); font-size: 15.5px; font-weight: 800; color: var(--navy-700);
	margin-bottom: 14px;
}
.side-heading i { color: var(--orange-500); margin-right: 6px; }

/* ============================== INVENTORY SIDEBAR + TOOLBAR ============================== */
.inventory-layout { margin-top: 24px; }
.filters-panel h4:first-child { display: flex; align-items: center; justify-content: space-between; }
.filters-panel h4 a { font-weight: 500; color: var(--ink-500); }
.filters-panel h4 a:hover { color: var(--orange-500); }
.filter-range-form { padding: 4px 11px 10px; }
.filter-range-row { display: flex; gap: 8px; margin-bottom: 8px; }
.filter-range-row .form-input { width: 0; flex: 1 1 0; padding: 7px 9px; font-size: 13px; }
.filter-range-submit { font-size: 12.5px; padding: 7px; }
.inventory-toolbar {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
	margin: 4px 2px 14px;
}
.inventory-toolbar .results-count { margin: 0; }
.inventory-sort label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-700); font-weight: 500; }
.inventory-sort select { padding: 7px 10px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--card); font-size: 13px; }

/* ============================== PROPERTY GRID / CARDS ============================== */
.results-count { color: var(--ink-500); font-size: 13.5px; margin: 4px 2px 14px; }

.property-grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
	gap: 20px; margin-bottom: 30px;
}
.property-grid.small { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.property-card {
	display: flex; flex-direction: column; padding: 0; overflow: hidden; margin: 0;
	transition: .22s; position: relative;
}
.property-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #c9d8ea; }

.property-image {
	display: block; height: 205px; background-color: var(--navy-600);
	background-size: cover; background-position: center; position: relative;
}
.property-image.small { height: 155px; }
.property-image .card-img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover; display: block;
}
.property-image::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(7,21,39,.06), transparent 40%, rgba(7,21,39,.32));
}

.badge {
	position: absolute; top: 12px; left: 12px; z-index: 2;
	font-family: var(--font-head); font-size: 10.5px; font-weight: 800; letter-spacing: 1px;
	padding: 5px 11px; border-radius: 999px; color: #fff;
}
.badge-sale { background: var(--success); }
.badge-rent { background: var(--navy-500); }
.badge-sold { background: var(--danger); }
.banner-title .badge { position: static; font-size: 13px; vertical-align: middle; margin-right: 6px; }

.cat-chip {
	position: absolute; bottom: 10px; left: 12px; z-index: 2;
	background: rgba(7,21,39,.72); backdrop-filter: blur(6px);
	color: #ffd9b3; font-size: 11px; font-weight: 600;
	padding: 4px 11px; border-radius: 999px; border: 1px solid rgba(255,122,20,.35);
}

.property-info { display: block; padding: 16px 18px 18px; }
.property-price {
	display: inline-block; font-family: var(--font-head); font-size: 19px; font-weight: 800;
	color: var(--orange-600); margin-bottom: 5px;
}
.property-price small { font-size: 12px; color: var(--ink-500); font-weight: 600; }
.property-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--ink-900); line-height: 1.3; }
.property-location { color: var(--ink-500); font-size: 13px; margin-top: 5px; }
.property-location i { color: var(--orange-500); margin-right: 4px; }
.property-vin { color: var(--ink-500); font-size: 12px; margin-top: 4px; letter-spacing: .2px; }
.property-vin i { color: var(--orange-500); margin-right: 4px; }
.property-vin.locked { cursor: pointer; }
.property-vin.locked:hover { color: var(--orange-600); text-decoration: underline; }
.vin-locked { cursor: pointer; }
.vin-locked:hover { text-decoration: underline; }
.property-features { display: flex; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
.property-features span { font-size: 12.5px; color: var(--ink-700); }
.property-features i { color: var(--blue-300); margin-right: 4px; }
.read-more-link { display: inline-block; margin-top: 9px; color: var(--orange-600); font-size: 13px; font-weight: 600; }

/* Filter chips */
.filter-bar { display: flex; gap: 9px; flex-wrap: wrap; margin: 4px 0 20px; }
.filter-chip {
	background: var(--card); border: 1.5px solid var(--line); color: var(--ink-700);
	font-size: 13px; font-weight: 600; padding: 8px 17px; border-radius: 999px; transition: .18s;
}
.filter-chip:hover { border-color: var(--orange-400); color: var(--orange-600); }
.filter-chip.active {
	background: var(--navy-700); border-color: var(--navy-700); color: #fff;
}

.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-500); }
.empty-state i { font-size: 44px; color: var(--line); display: block; margin-bottom: 14px; }

/* Pagination — inherits each theme's colours through the variables */
.pager {
	display: flex; justify-content: center; align-items: center;
	gap: 7px; flex-wrap: wrap; margin: 6px 0 40px;
}
.pager-btn {
	min-width: 40px; height: 40px; padding: 0 12px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--card); border: 1.5px solid var(--line); color: var(--ink-700);
	border-radius: var(--radius-sm); font-weight: 700; font-size: 14px;
	font-family: var(--font-head); transition: .18s;
}
.pager-btn:hover { border-color: var(--orange-400); color: var(--orange-600); }
.pager-btn.active {
	background: var(--navy-700); border-color: var(--navy-700); color: #fff;
}
.pager-btn.disabled { opacity: .35; pointer-events: none; }
.pager-gap { color: var(--ink-500); padding: 0 2px; }

/* ============================== MACHINE PAGE ============================== */
.property-layout {
	display: grid; grid-template-columns: minmax(0, 1fr) 355px; gap: 24px; align-items: start;
}
.property-main { min-width: 0; }
.property-side { position: sticky; top: 92px; }

.property-head { padding: 15px 22px; }
.property-meta {
	display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
	font-size: 13.5px; color: var(--ink-700); font-weight: 600;
}
.print-link { font-size: 13px; color: var(--blue-300); font-weight: 600; }
.print-link:hover { color: var(--orange-600); }

/* Gallery */
.property-gallery { padding: 14px; }
.gallery-main { position: relative; border-radius: 12px; overflow: hidden; background: var(--navy-800); }
.main-image { display: block; width: 100%; height: 460px; object-fit: cover; cursor: zoom-in; }
.gal-arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	background: rgba(7,21,39,.55); color: #fff; border: 0; cursor: pointer;
	width: 44px; height: 44px; border-radius: 50%; font-size: 17px; transition: .18s;
	backdrop-filter: blur(4px);
}
.gal-arrow:hover { background: var(--orange-500); }
.gal-prev { left: 14px; }
.gal-next { right: 14px; }
.gal-counter {
	position: absolute; bottom: 12px; left: 14px;
	background: rgba(7,21,39,.65); color: #fff; font-size: 12px; font-weight: 600;
	padding: 4px 12px; border-radius: 999px;
}
.gal-zoom {
	position: absolute; bottom: 12px; right: 14px; cursor: pointer;
	background: rgba(7,21,39,.65); color: #fff; width: 36px; height: 36px;
	border-radius: 50%; display: flex; align-items: center; justify-content: center;
	transition: .18s;
}
.gal-zoom:hover { background: var(--orange-500); }
.gallery-thumbs { display: flex; gap: 9px; margin-top: 11px; overflow-x: auto; padding-bottom: 4px; }
.thumb-image {
	width: 88px; height: 62px; object-fit: cover; border-radius: 8px; cursor: pointer;
	opacity: .62; transition: .18s; border: 2px solid transparent; flex-shrink: 0;
}
.thumb-image:hover { opacity: 1; }
.thumb-image.active { opacity: 1; border-color: var(--orange-500); }

/* Lightbox */
#lightbox {
	display: none; position: fixed; inset: 0; z-index: 300;
	background: rgba(4,11,20,.94); align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lb-img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lb-close {
	position: absolute; top: 20px; right: 26px; background: none; border: 0;
	color: #fff; font-size: 42px; cursor: pointer; opacity: .8; line-height: 1;
}
.lb-close:hover { opacity: 1; }
.lb-arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	background: rgba(255,255,255,.1); color: #fff; border: 0; cursor: pointer;
	width: 54px; height: 54px; border-radius: 50%; font-size: 21px; transition: .18s;
}
.lb-arrow:hover { background: var(--orange-500); }
.lb-prev { left: 26px; }
.lb-next { right: 26px; }
.lb-counter {
	position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
	color: #cdddeb; font-size: 13.5px; font-weight: 600;
}

/* Features grid */
.features-grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 13px;
}
.feature-item {
	display: flex; align-items: center; gap: 13px;
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius-sm); padding: 13px 15px;
}
.feature-item > i {
	width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	background: #fff; color: var(--navy-500); font-size: 15px;
	border: 1px solid var(--line);
}
.feature-item.highlight { background: #fff4e8; border-color: #ffd9b3; }
.feature-item.highlight > i { background: var(--orange-500); color: #fff; border: 0; }
.feature-label { display: block; font-size: 11.5px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.feature-value { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink-900); overflow-wrap: anywhere; }

/* Text blocks */
.page-body { font-size: 15px; color: var(--ink-700); }
.page-body h1, .page-body h2, .page-body h3, .page-body h4 {
	font-family: var(--font-head); color: var(--navy-700); margin: 18px 0 10px; line-height: 1.3;
}
.page-body h1:first-child, .page-body h2:first-child, .page-body h3:first-child { margin-top: 0; }
.page-body p { margin-bottom: 12px; }
.page-body ul, .page-body ol { margin: 0 0 14px 22px; }
.page-body li { margin-bottom: 6px; }
.page-body img { border-radius: 12px; }
.page-body a { font-weight: 600; }
.home-text { padding: 30px 34px; }

.property-map iframe { width: 100%; min-height: 380px; border: 0; border-radius: 12px; }

/* ============================== SIDEBAR (machine page) ============================== */
.buy-box { padding: 20px; }
.buy-price { font-size: 26px; font-weight: 800; color: var(--ink-900); margin-bottom: 2px; }
.buy-now-btn { margin-bottom: 12px; }
.auction-meta { font-size: 11.5px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 10px; }
.auction-countdown { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--orange-600); background: var(--surface); border-radius: var(--radius-sm); padding: 8px 12px; margin-bottom: 12px; }
.bid-form { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.bid-form .form-input { padding: 10px 12px; }
.finance-sim { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.finance-toggle {
	width: 100%; display: flex; align-items: center; justify-content: space-between;
	padding: 11px 14px; background: var(--surface); border: 0; font-size: 13.5px; font-weight: 600; color: var(--ink-900); cursor: pointer;
}
.finance-toggle i { color: var(--orange-500); }
.finance-toggle .finance-chevron { transition: transform .2s; color: var(--ink-500); }
.finance-body { padding: 14px; }
.finance-body .form-group { margin-bottom: 10px; }
.finance-result { font-size: 14px; color: var(--ink-900); margin: 10px 0 6px; }
.finance-result b { color: var(--orange-600); font-size: 17px; }
.finance-disclaimer { font-size: 11px; color: var(--ink-500); line-height: 1.5; margin: 0; }
.doc-row {
	display: flex; align-items: center; gap: 10px; padding: 12px 14px;
	border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 13px; color: var(--ink-700);
}
.doc-row i.fa-file-pdf { font-size: 20px; color: #d73a3a; }
.doc-row b { color: var(--ink-900); display: block; font-size: 13.5px; }
.doc-row.locked { cursor: pointer; }
.doc-row.locked:hover { border-color: var(--orange-400); }
.doc-row .fa-lock { margin-left: auto; color: var(--ink-500); }
.sold-note {
	background: #fff4e8; border: 1px solid #ffd9b3; color: #8a4a06;
	border-radius: var(--radius-sm); padding: 11px 14px; font-size: 13px; margin-bottom: 15px;
}
.sold-note i { margin-right: 6px; }
.agent-profile { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.agent-photo { width: 68px; height: 68px; border-radius: 14px; object-fit: cover; border: 2px solid var(--line); }
.agent-profile h4 { font-family: var(--font-head); font-size: 16px; color: var(--ink-900); }
.agent-profile p { font-size: 12.5px; color: var(--ink-500); }
.email-toggle {
	margin-top: 7px; background: var(--surface); border: 1px solid var(--line);
	border-radius: 8px; padding: 5px 11px; font-size: 12px; cursor: pointer;
	color: var(--navy-500); font-weight: 600; font-family: var(--font-body);
}
.email-toggle:hover { border-color: var(--orange-400); color: var(--orange-600); }
.agent-email { font-size: 12.5px; color: var(--ink-500); margin-top: 5px; overflow-wrap: anywhere; }
.agent-email.revealed { color: var(--navy-500); font-weight: 600; }

.mini-properties { display: flex; flex-direction: column; gap: 12px; }
.mini-property {
	display: flex; gap: 12px; align-items: center; border-radius: var(--radius-sm);
	padding: 8px; transition: .18s; border: 1px solid transparent;
}
.mini-property:hover { background: var(--surface); border-color: var(--line); }
.mini-img {
	width: 74px; height: 56px; flex-shrink: 0; border-radius: 8px;
	background-color: var(--navy-600); background-size: cover; background-position: center;
}
.mini-info b { display: block; font-size: 13px; color: var(--ink-900); line-height: 1.3; }
.mini-info i { font-size: 12px; color: var(--ink-500); font-style: normal; }

/* WhatsApp side card */
.whatsapp-side p { font-size: 13.5px; color: var(--ink-700); }

/* ============================== PAGE LAYOUT (static pages) ============================== */
.page-layout {
	display: grid; grid-template-columns: 265px minmax(0, 1fr); gap: 24px; align-items: start;
}
.page-side { position: sticky; top: 92px; }
.side-nav { padding: 18px; }
.side-nav h4 { margin: 14px 0 6px; }
.side-nav h4:first-child { margin-top: 0; }
.side-nav a {
	display: block; padding: 8px 11px; border-radius: 9px; color: var(--ink-700);
	font-size: 13.5px; font-weight: 500; transition: .15s;
}
.side-nav a i { color: var(--orange-500); margin-right: 7px; font-size: 11px; }
.side-nav a:hover { background: var(--surface); color: var(--navy-700); }
.side-nav a.active { background: var(--navy-700); color: #fff; }
.side-nav a.active i { color: var(--orange-400); }

.page-hero-image { margin: -26px -26px 22px; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.page-hero-image img { width: 100%; max-height: 330px; object-fit: cover; display: block; }

/* ============================== FORMS ============================== */
.modern-form .form-group { margin-bottom: 15px; }
.modern-form label {
	display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-700);
	margin-bottom: 6px; letter-spacing: .3px;
}
.modern-form label span { color: var(--danger); }
.form-input, .form-textarea {
	width: 100%; padding: 11px 14px; font-size: 14px; font-family: var(--font-body);
	background: var(--surface); border: 1.5px solid var(--line); border-radius: 10px;
	outline: 0; transition: .18s; color: var(--ink-900);
}
.address-suggest {
	display: none; position: absolute; left: 0; right: 0; top: 100%; z-index: 40;
	background: var(--card); border: 1.5px solid var(--line); border-radius: 10px;
	margin-top: 4px; max-height: 220px; overflow-y: auto;
	box-shadow: 0 10px 30px rgba(7,21,39,.15);
}
.address-suggest-item { padding: 10px 14px; font-size: 13.5px; cursor: pointer; border-bottom: 1px solid var(--line); }
.address-suggest-item:last-child { border-bottom: none; }
.address-suggest-item:hover { background: var(--surface); }
.form-input:focus, .form-textarea:focus {
	border-color: var(--orange-400); background: #fff;
	box-shadow: 0 0 0 3px rgba(255,122,20,.14);
}
.form-textarea { resize: vertical; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.checkbox-label {
	display: flex !important; align-items: center; gap: 9px; font-size: 13px !important;
	font-weight: 500 !important; color: var(--ink-700); margin: 4px 0 16px; cursor: pointer;
}
.checkbox-label input { accent-color: var(--orange-500); width: 16px; height: 16px; }
.form-note { font-size: 12px; color: var(--ink-500); margin-top: 10px; }
.form-note span { color: var(--danger); }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 24px; }
.contact-info-card .contact-item {
	display: flex; gap: 13px; align-items: flex-start; margin-bottom: 15px;
	font-size: 14px; color: var(--ink-700);
}
.contact-info-card .contact-item i {
	width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px;
	background: var(--surface); border: 1px solid var(--line);
	display: flex; align-items: center; justify-content: center; color: var(--orange-500);
}

/* ============================== FOOTER ============================== */
.footer {
	background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
	color: #9fb8ce; margin-top: 30px;
}
.footer-content {
	max-width: 1280px; margin: 0 auto; padding: 52px 22px 34px;
	display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px;
}
.footer-section h3 {
	font-family: var(--font-head); color: #fff; font-size: 15px; font-weight: 800;
	letter-spacing: .8px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.footer-logo img, .footer-logo .logo-mark { height: 46px; width: 46px; flex-shrink: 0; border-radius: 10px; display: block; }
.footer-logo img { width: auto; }
.footer-logo h3 { margin: 0; }
.footer-about { font-size: 13.5px; line-height: 1.7; }
.footer-badges { display: flex; gap: 9px; margin-top: 16px; flex-wrap: wrap; }
.footer-badges span {
	font-size: 11.5px; font-weight: 600; color: #ffd9b3;
	background: rgba(255,122,20,.1); border: 1px solid rgba(255,122,20,.3);
	padding: 5px 12px; border-radius: 999px;
}
.footer-badges i { margin-right: 5px; }
.footer-links a {
	display: block; color: #9fb8ce; font-size: 13.5px; padding: 4.5px 0; transition: .15s;
}
.footer-links a i { color: var(--orange-500); margin-right: 7px; font-size: 11px; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact p { font-size: 13.5px; margin-bottom: 10px; }
.footer-contact i { color: var(--orange-400); margin-right: 8px; width: 15px; }
.footer-contact a { color: #9fb8ce; }
.footer-contact a:hover { color: #fff; }
.footer-assoc { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-assoc img { background: #fff; border-radius: 6px; padding: 4px; height: 34px; }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.08); text-align: center;
	padding: 18px 22px; font-size: 12.5px; color: #6f8aa5;
}

/* ============================== REVIEWS (Trustpilot-style) ============================== */
:root { --tp-green: #00b67a; }

.reviews-section { margin-top: 10px; }
.reviews-lead {
	text-align: center; color: var(--ink-500); font-size: 13.5px;
	letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
	margin: -6px 0 22px;
}

/* Trustpilot square stars */
.tp-stars { display: inline-flex; gap: 3px; vertical-align: middle; }
.tp-star {
	width: 22px; height: 22px; border-radius: 3px;
	display: inline-flex; align-items: center; justify-content: center;
	background: #dcdce6; color: #fff; font-size: 12px;
}
.tp-star.on { background: var(--tp-green); }
.tp-stars.big .tp-star { width: 30px; height: 30px; font-size: 16px; border-radius: 4px; }

/* Summary header */
.tp-summary {
	display: grid; grid-template-columns: 300px 1fr; gap: 34px; align-items: center;
	padding: 28px 32px; margin-bottom: 26px;
}
.tp-score { text-align: center; border-right: 1px solid var(--line); padding-right: 20px; }
.tp-score-num { font-family: var(--font-head); font-size: 58px; font-weight: 800; line-height: 1; color: var(--ink-900); }
.tp-score .tp-stars { margin: 10px 0 8px; }
.tp-score-word { font-weight: 800; font-size: 18px; color: var(--ink-900); }
.tp-score-count { font-size: 13px; color: var(--ink-500); margin-top: 3px; }

.tp-dist { display: flex; flex-direction: column; gap: 7px; }
.tp-dist-row { display: flex; align-items: center; gap: 12px; }
.tp-dist-label { font-size: 12.5px; color: var(--ink-700); width: 42px; flex-shrink: 0; font-weight: 600; }
.tp-dist-label .fa-star { color: var(--tp-green); font-size: 10px; }
.tp-dist-bar { flex: 1; height: 12px; background: #ecedf3; border-radius: 3px; overflow: hidden; }
.tp-dist-bar span { display: block; height: 100%; background: var(--tp-green); }
.tp-dist-pct { font-size: 12px; color: var(--ink-500); width: 40px; text-align: right; flex-shrink: 0; }

@media (max-width: 720px) {
	.tp-summary { grid-template-columns: 1fr; gap: 20px; }
	.tp-score { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 18px; }
}

/* Cards */
.reviews-grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px; margin-bottom: 24px;
}
.reviews-grid.compact { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; margin-bottom: 0; }

.review-card {
	margin: 0; padding: 22px 22px 18px;
	display: flex; flex-direction: column; gap: 13px;
}
.reviews-grid.compact .review-card { padding: 18px; }

.review-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.review-date { font-size: 12px; color: var(--ink-500); }

.review-text {
	margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--ink-700);
	flex: 1; quotes: none;
}
.reviews-grid.compact .review-text { font-size: 13.5px; }

.review-author {
	display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
	padding-top: 13px; border-top: 1px solid var(--line);
}
.review-avatar {
	width: 42px; height: 42px; flex-shrink: 0;
	border-radius: 50%; object-fit: cover; border: 2px solid var(--line);
}
.review-avatar.initial {
	display: flex; align-items: center; justify-content: center;
	background: var(--navy-700); color: #fff; border: 0;
	font-family: var(--font-head); font-weight: 800; font-size: 17px;
}
.review-who { display: flex; flex-direction: column; min-width: 0; margin-right: auto; }
.review-who b { font-size: 14px; color: var(--ink-900); }
.review-role { font-size: 12px; color: var(--ink-500); }
.review-verified {
	display: inline-flex; align-items: center; gap: 5px;
	font-size: 11.5px; font-weight: 600; color: var(--tp-green);
	flex-shrink: 0; width: 100%;
}
.review-verified i { font-size: 13px; }

/* Testimonials page intro highlights */
.tm-highlights {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
	margin: 22px 0; text-align: center;
}
.tm-hl {
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius-sm); padding: 18px 10px;
}
.tm-hl b {
	display: block; font-family: var(--font-head); font-size: 26px; font-weight: 800;
	color: var(--orange-600); line-height: 1.1;
}
.tm-hl span { font-size: 12.5px; color: var(--ink-500); }
@media (max-width: 620px) { .tm-highlights { grid-template-columns: repeat(2, 1fr); } }

.reviews-more { text-align: center; margin: 6px 0 30px; }
.reviews-more .btn-outline { color: var(--navy-500); border-color: var(--line); background: var(--card); display: inline-flex; }
.reviews-more .btn-outline:hover { border-color: var(--orange-400); color: var(--orange-600); background: var(--card); }

@media (max-width: 560px) {
	.reviews-grid, .reviews-grid.compact { grid-template-columns: 1fr; }
}

/* ============================== WHATSAPP FLOAT ============================== */
.whatsapp-float {
	position: fixed; right: 26px; bottom: 26px; z-index: 200;
	width: 62px; height: 62px; border-radius: 50%;
	background: linear-gradient(135deg, #2ee579, #1fb958);
	color: #fff; display: flex; align-items: center; justify-content: center;
	font-size: 33px; box-shadow: 0 10px 30px rgba(37,211,102,.45);
	transition: .22s;
	animation: wa-pulse 2.6s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.whatsapp-tooltip {
	position: absolute; right: 74px; white-space: nowrap;
	background: var(--navy-800); color: #fff; font-size: 12.5px; font-weight: 600;
	padding: 8px 14px; border-radius: 10px; opacity: 0; pointer-events: none;
	transition: .2s; box-shadow: var(--shadow-md);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes wa-pulse {
	0% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.45); }
	70% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
	100% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================== RESPONSIVE ============================== */
@media (max-width: 1080px) {
	.property-layout { grid-template-columns: 1fr; }
	.property-side { position: static; }
	.page-layout { grid-template-columns: 1fr; }
	.page-side { position: static; order: 2; }
	.footer-content { grid-template-columns: 1fr 1fr; }
	.stats-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
	.nav-toggle { display: block; }
	.nav-menu {
		display: none; position: absolute; left: 0; right: 0; top: 100%;
		background: var(--navy-800); flex-direction: column; gap: 0;
		padding: 10px 16px 16px; box-shadow: var(--shadow-lg);
	}
	.nav-menu.active { display: flex; }
	.nav-menu a { text-align: left; display: flex; align-items: baseline; gap: 10px; }
	.main-image { height: 300px; }
	.hero-inner { padding: 48px 26px; }
	.page-banner .hero-inner { padding: 38px 26px; }
	.contact-grid { grid-template-columns: 1fr; }
	.form-2col { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
	.footer-content { grid-template-columns: 1fr; }
	.stats-strip { grid-template-columns: repeat(2, 1fr); }
	.search-row { flex-direction: column; }
	.topbar-inner { flex-direction: column; gap: 6px; }
	.whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px; font-size: 29px; }
	.hero-cta .btn-lg { width: 100%; }
}

/* ============================== PRINT ============================== */
@media print {
	.topbar, .navbar, .footer, .whatsapp-float, .property-side, .filter-bar, .page-side { display: none !important; }
	.hero-banner, .page-banner { background: var(--navy-700) !important; }
	body { background: #fff; }
}

/* ============================== CHECKOUT / ORDER ============================== */
.checkout-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; align-items: start; }
.checkout-form, .checkout-summary { padding: 24px; }
.checkout-summary-img { border-radius: 10px; overflow: hidden; margin-bottom: 12px; }
.checkout-summary-img img { width: 100%; height: 150px; object-fit: cover; display: block; }
.checkout-summary h4 { margin: 0 0 14px; font-size: 15px; }
.checkout-summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.checkout-summary-total { display: flex; justify-content: space-between; padding: 12px 0 4px; font-size: 16px; }
@media (max-width: 860px) { .checkout-layout { grid-template-columns: 1fr; } }

.order-card { max-width: 800px; margin: 0 auto; padding: 24px; }
.order-header { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.order-header img { width: 90px; height: 66px; object-fit: cover; border-radius: 8px; }
.order-header h3 { margin: 0 0 4px; font-size: 16px; }
.order-header p { margin: 0; font-weight: 700; color: var(--navy-700); }

.order-timeline { display: flex; overflow-x: auto; gap: 0; padding: 10px 0 22px; }
.order-timeline-step { flex: 1; min-width: 92px; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.order-timeline-step:not(:last-child):after {
	content: ''; position: absolute; top: 15px; left: 55%; width: 100%; height: 2px; background: var(--line); z-index: 0;
}
.order-timeline-step.done:not(:last-child):after { background: var(--navy-600); }
.order-timeline-dot {
	width: 30px; height: 30px; border-radius: 50%; background: var(--surface); border: 2px solid var(--line);
	display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--ink-500);
	position: relative; z-index: 1; margin-bottom: 6px;
}
.order-timeline-step.done .order-timeline-dot { background: var(--navy-600); border-color: var(--navy-600); color: #fff; }
.order-timeline-step.current .order-timeline-dot { background: var(--orange-500); border-color: var(--orange-500); color: #fff; }
.order-timeline-label { font-size: 10.5px; font-weight: 600; color: var(--ink-500); line-height: 1.3; }
.order-timeline-step.current .order-timeline-label { color: var(--ink-900); }

.order-actions-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.btn-outline-sm {
	background: var(--surface); border: 1.5px solid var(--line); color: var(--navy-700); border-radius: 999px;
	padding: 7px 14px; font-size: 12.5px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.btn-outline-sm:hover { background: var(--card); color: var(--navy-700); }
.order-note-box { border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; font-size: 13.5px; }
.order-note-box.pending { background: #fff4e5; border: 1px solid #ffd699; }
.order-note-box.approved { background: #e8f8ee; border: 1px solid #a6e3bd; }
.order-note-box.rejected { background: #fdeaea; border: 1px solid #f3b3b3; }
.order-note-box b { display: block; margin-bottom: 4px; }
.order-note-box p { margin: 0; }

.order-stage-panel { border-top: 1px solid var(--line); padding-top: 20px; }
.order-stage-panel h4 { margin: 0 0 14px; }
.order-contract-box { background: var(--surface); border-radius: 10px; padding: 16px; margin-bottom: 16px; }
.order-invoice-box { background: var(--surface); border-radius: 10px; padding: 16px; margin-bottom: 16px; }
.order-invoice-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.order-invoice-row:last-of-type { border-bottom: none; }
.order-waiting { text-align: center; padding: 20px 10px; }
.order-waiting i { font-size: 34px; color: var(--navy-600); margin-bottom: 12px; }
.order-waiting h4 { margin: 0 0 8px; }
/* ============================== ACCOUNT SIDEBAR ============================== */
.account-shell { display: grid; grid-template-columns: 250px 1fr; gap: 24px; max-width: 1080px; margin: 0 auto; align-items: start; }
.account-sidebar { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; position: sticky; top: 90px; }
.account-sidebar-user { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; margin-bottom: 10px; border-bottom: 1px solid var(--line); }
.account-sidebar-avatar {
	width: 38px; height: 38px; border-radius: 50%; background: var(--navy-700); color: #fff; font-weight: 700;
	display: flex; align-items: center; justify-content: center; flex-shrink: 0; text-transform: uppercase;
}
.account-sidebar-user b { display: block; font-size: 13px; }
.account-sidebar-user small { color: var(--ink-500); font-size: 11px; word-break: break-all; }
.account-sidebar-heading { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--ink-500); margin: 16px 0 8px; }
.account-sidebar-link {
	display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; font-size: 13px; font-weight: 600;
	color: var(--ink-700); margin-bottom: 2px;
}
.account-sidebar-link i { width: 16px; text-align: center; color: var(--ink-500); }
.account-sidebar-link:hover { background: var(--surface); }
.account-sidebar-link.active { background: var(--navy-700); color: #fff; }
.account-sidebar-link.active i { color: #fff; }
.account-sidebar-help { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12px; }
.account-sidebar-help p { margin: 0 0 4px; color: var(--ink-500); }
.account-sidebar-help a { color: var(--navy-700); font-weight: 700; }
.account-content { min-width: 0; }
@media (max-width: 860px) {
	.account-shell { grid-template-columns: 1fr; }
	.account-sidebar { position: static; }
}

/* ============================== MY ORDERS (tabbed list) ============================== */
.page-subtitle { color: rgba(255,255,255,.75); font-size: 14px; margin-top: 6px; }
.my-orders-wrap { max-width: 900px; margin: 0 auto; }
.my-orders-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.my-orders-tabs { display: flex; gap: 6px; flex-wrap: wrap; background: var(--surface); padding: 4px; border-radius: 999px; }
.my-orders-tab {
	background: none; border: none; padding: 8px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
	color: var(--ink-500); cursor: pointer;
}
.my-orders-tab.active { background: var(--navy-700); color: #fff; }
.my-orders-search { max-width: 260px; }
.my-order-card {
	display: flex; align-items: center; gap: 16px; background: var(--card); border: 1px solid var(--line);
	border-radius: 12px; padding: 14px 16px; margin-bottom: 12px; color: var(--ink-900);
}
.my-order-card:hover { border-color: var(--navy-400, var(--navy-600)); }
.my-order-card img { width: 74px; height: 54px; object-fit: cover; border-radius: 8px; background: var(--surface); flex-shrink: 0; }
.my-order-card-body { flex: 1; min-width: 0; }
.my-order-card-body h4 { margin: 0 0 3px; font-size: 14px; }
.my-order-card-body p { margin: 0; font-size: 12px; color: var(--ink-500); }
.my-order-card-price { font-weight: 700; white-space: nowrap; }

/* ============================== COMPLETE ADDRESS (post-registration step) ============================== */
.complete-address-wrap {
	display: grid; grid-template-columns: 1.15fr 1fr; min-height: 560px; max-width: 1100px; margin: 30px auto;
	border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
}
.complete-address-form { background: var(--card); padding: 44px 46px; }
.complete-address-eyebrow { color: var(--navy-600); font-weight: 700; font-size: 12px; letter-spacing: .6px; text-transform: uppercase; margin: 0 0 6px; }
.complete-address-form h1 { font-size: 28px; margin: 0 0 8px; }
.complete-address-confirmed {
	display: flex; align-items: center; gap: 12px; background: #e8f8ee; border: 1px solid #a6e3bd; border-radius: 10px;
	padding: 12px 16px; margin: 18px 0;
}
.complete-address-confirmed i { color: #1b9c5c; font-size: 20px; }
.complete-address-trust {
	background: linear-gradient(160deg, #0c1f14 0%, var(--navy-700, #14532d) 100%); color: #fff; padding: 44px 40px;
	display: flex; flex-direction: column; justify-content: center;
}
.complete-address-trust-icon {
	width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.12); display: flex;
	align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px;
}
.complete-address-trust h2 { font-size: 22px; margin: 0 0 8px; }
.complete-address-trust > p { color: rgba(255,255,255,.75); font-size: 13.5px; margin: 0 0 24px; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.trust-item i { color: #fff; background: rgba(255,255,255,.12); width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-item b { display: block; font-size: 13.5px; }
.trust-item small { color: rgba(255,255,255,.65); font-size: 12px; }
@media (max-width: 860px) { .complete-address-wrap { grid-template-columns: 1fr; } .complete-address-trust { order: -1; } }

.favorite-heart {
	position: absolute; top: 10px; right: 10px; z-index: 5; width: 32px; height: 32px; border-radius: 50%;
	background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center;
	color: var(--navy-700); font-size: 14px; transition: .15s; cursor: pointer;
}
.favorite-heart:hover { transform: scale(1.1); }
.favorite-heart.active { color: #e0335c; }
.favorite-toggle-btn {
	background: none; border: none; cursor: pointer; font-size: 12.5px; font-weight: 600;
	color: var(--ink-500); display: inline-flex; align-items: center; gap: 6px; padding: 4px;
}
.favorite-toggle-btn:hover { color: var(--ink-900); }
.favorite-toggle-btn.active { color: #e0335c; }

.order-transit-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.order-transit-stats div { background: var(--surface); border-radius: 10px; padding: 12px; text-align: center; }
.order-transit-stats span { display: block; font-size: 10.5px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px; }
.order-transit-stats b { font-size: 16px; }
@media (max-width: 560px) { .order-transit-stats { grid-template-columns: repeat(2, 1fr); } }
