:root {
  --bg: #080808;
  --surface: #11110f;
  --surface-2: #171612;
  --surface-3: #211d16;
  --text: #f7f3eb;
  --muted: #b9b1a4;
  --gold: #dca54c;
  --gold-light: #f5d98c;
  --gold-dark: #8c5b1e;
  --line: rgba(225, 177, 86, 0.25);
  --success: #48c78e;
  --danger: #ff7a7a;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --font: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.75;
  transition: background .25s ease, color .25s ease;
}
body.light {
  --bg: #f7f3e9;
  --surface: #fffdf7;
  --surface-2: #f0e8d9;
  --surface-3: #e8dcc7;
  --text: #18140f;
  --muted: #665e52;
  --line: rgba(140, 91, 30, 0.25);
  --shadow: 0 28px 70px rgba(68, 47, 17, 0.12);
}

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--gold); color: #080808; }

.page-shell { overflow: hidden; }
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: minmax(170px, 250px) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 10px clamp(20px, 5vw, 76px);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; width: clamp(178px, 18vw, 245px); }
.brand img { width: 100%; height: 70px; object-fit: cover; object-position: center 51%; border-radius: 9px; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: clamp(15px, 2.1vw, 32px); }
.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.main-nav a::after { content: ""; position: absolute; inset-inline: 15%; bottom: -10px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--gold-light); }
.main-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.icon-button, .text-button { border: 0; background: transparent; cursor: pointer; font-weight: 700; }
.icon-button { display: inline-grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); font-size: 21px; }
.text-button { color: var(--gold-light); font-size: 15px; padding: 8px; }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #17100a; background: linear-gradient(135deg, var(--gold-light), var(--gold), #a76b22); box-shadow: 0 10px 30px rgba(222, 169, 75, .18); }
.button-dark { background: #0b0b0a; color: #fff; border-color: rgba(255,255,255,.16); }
.button-outline { background: var(--surface); border-color: var(--line); color: var(--gold-light); }
.button-small { min-height: 44px; padding: 9px 15px; font-size: 14px; }
.full-width { width: 100%; }

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(25px, 5vw, 80px);
  padding: clamp(70px, 9vw, 140px) clamp(24px, 7vw, 110px);
  isolation: isolate;
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background: radial-gradient(circle at 60% 45%, rgba(154,96,25,.14), transparent 34%), linear-gradient(120deg, rgba(255,255,255,.015), transparent 50%); }
.hero::after { content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }
.hero-glow { position: absolute; z-index: -2; border-radius: 50%; filter: blur(20px); pointer-events: none; }
.hero-glow-one { width: 310px; height: 310px; top: 18%; right: 47%; background: rgba(218,157,65,.08); }
.hero-glow-two { width: 180px; height: 180px; left: 10%; bottom: 16%; background: rgba(218,157,65,.05); }
.eyebrow, .kicker { color: var(--gold); font-size: 14px; font-weight: 900; letter-spacing: .12em; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.eyebrow span { width: 38px; height: 1px; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 22px; font-size: clamp(46px, 5.5vw, 86px); line-height: 1.13; letter-spacing: -.04em; }
h1 em { color: var(--gold); font-style: normal; }
.hero-content > p { max-width: 680px; color: var(--muted); font-size: clamp(18px, 1.35vw, 22px); line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 0; margin-top: 52px; }
.trust-row div { display: flex; flex-direction: column; min-width: 140px; padding-inline: 22px; border-inline-start: 1px solid var(--line); }
.trust-row div:first-child { padding-inline-start: 0; border-inline-start: 0; }
.trust-row strong { color: var(--gold-light); font-size: 24px; line-height: 1.2; }
.trust-row span { color: var(--muted); font-size: 14px; margin-top: 5px; }

.hero-visual { position: relative; min-height: 480px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; z-index: -1; width: 83%; aspect-ratio: 1; border: 1px solid rgba(216,161,74,.16); border-radius: 50%; box-shadow: inset 0 0 90px rgba(217,158,65,.05), 0 0 100px rgba(217,158,65,.05); }
.hero-car { width: min(100%, 790px); overflow: visible; filter: drop-shadow(0 28px 25px rgba(0,0,0,.65)); }
.visual-badge, .price-tag, .plate-tag { position: absolute; z-index: 3; border: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 88%, transparent); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.visual-badge { top: 9%; inset-inline-start: 1%; display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 14px; }
.visual-badge > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(218,162,73,.13); color: var(--gold); }
.visual-badge div { display: flex; flex-direction: column; }
.visual-badge b { font-size: 14px; }.visual-badge small { color: var(--muted); font-size: 12px; }
.price-tag { bottom: 9%; inset-inline-end: 2%; display: flex; flex-direction: column; padding: 12px 18px; border-radius: 14px; }
.price-tag small { color: var(--muted); font-size: 13px; }.price-tag b { color: var(--gold-light); font-size: 20px; }
.plate-tag { bottom: 8%; inset-inline-start: 3%; display: grid; grid-template-columns: auto auto; gap: 0 11px; min-width: 180px; padding: 10px 18px; border: 3px solid #ddd9d0; border-radius: 8px; color: #111; background: #f5f2e9; text-align: center; direction: rtl; }
.plate-tag span, .plate-tag strong { font-size: 18px; line-height: 1.2; }.plate-tag small { grid-column: 1/-1; font-size: 9px; letter-spacing: .35em; }

.section-pad { padding: clamp(80px, 9vw, 135px) clamp(24px, 7vw, 110px); }
.section-heading { margin-bottom: 45px; }
.section-heading h2 { margin: 8px 0 13px; font-size: clamp(34px, 4vw, 57px); line-height: 1.25; }
.section-heading p { max-width: 720px; color: var(--muted); font-size: 18px; }
.centered { max-width: 860px; margin-inline: auto; margin-bottom: 52px; text-align: center; }
.centered p { margin-inline: auto; }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.split-heading h2 { margin-bottom: 6px; }
.split-heading p { margin-bottom: 0; }
.compact-heading { margin-top: 75px; margin-bottom: 30px; }

.quick-services { background: var(--surface); }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; max-width: 1420px; margin: auto; }
.service-card { position: relative; min-height: 325px; padding: 35px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, color-mix(in srgb, var(--surface-2) 88%, transparent), var(--surface)); transition: transform .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: var(--gold); }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid var(--line); border-radius: 17px; background: rgba(218,162,73,.1); color: var(--gold-light); font-size: 28px; }
.service-number { position: absolute; top: 22px; inset-inline-end: 28px; color: rgba(220,165,76,.16); font-size: 58px; font-weight: 900; }
.service-card h3 { margin: 35px 0 12px; font-size: 28px; }.service-card p { color: var(--muted); font-size: 17px; }.service-card b { display: block; margin-top: 27px; color: var(--gold); font-size: 15px; }

.market-section { background: linear-gradient(180deg, var(--bg), var(--surface)); }
.filter-bar { display: grid; grid-template-columns: 1.7fr 1fr 1fr auto; align-items: end; gap: 13px; margin-bottom: 28px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
label > span, legend { display: block; margin-bottom: 7px; color: var(--muted); font-size: 14px; font-weight: 800; }
input, select, textarea { width: 100%; min-height: 52px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 12px; outline: 0; background: var(--surface-2); color: var(--text); font-size: 17px; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(220,165,76,.12); }
input::placeholder, textarea::placeholder { color: color-mix(in srgb, var(--muted) 65%, transparent); }
.listing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.listing-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .25s ease, border-color .25s ease; }
.listing-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--gold) 68%, transparent); }
.car-art { position: relative; height: 230px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 62%, var(--car-glow), transparent 45%), linear-gradient(145deg, #1e1d1a, #090909); }
.car-art::after { content: ""; position: absolute; bottom: 29px; width: 72%; height: 18px; border-radius: 50%; background: #000; filter: blur(10px); opacity: .75; }
.car-art svg { position: relative; z-index: 2; width: 82%; filter: drop-shadow(0 14px 10px rgba(0,0,0,.6)); }
.car-art .tag { position: absolute; z-index: 3; top: 14px; inset-inline-start: 14px; padding: 6px 11px; border-radius: 999px; background: rgba(7,7,7,.72); color: #fff; font-size: 13px; font-weight: 800; backdrop-filter: blur(8px); }
.favorite { position: absolute; z-index: 3; top: 12px; inset-inline-end: 12px; display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(7,7,7,.72); color: #fff; font-size: 20px; cursor: pointer; }.favorite.saved { color: #ef6c75; }
.listing-body { padding: 22px; }.listing-body h3 { margin-bottom: 5px; font-size: 23px; }.listing-body > p { margin-bottom: 15px; color: var(--muted); font-size: 15px; }
.spec-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 16px 0; }.spec-row span { padding: 8px; border-radius: 9px; background: var(--surface-2); color: var(--muted); text-align: center; font-size: 13px; }
.listing-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }.listing-footer strong { color: var(--gold-light); font-size: 21px; }.listing-footer button { min-height: 42px; }
.empty-state { grid-column: 1/-1; padding: 55px; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--muted); text-align: center; }

.plate-section { background: var(--surface); }
.plate-studio { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 22px; max-width: 1230px; margin: auto; }
.plate-builder, .plate-help { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); }
.plate-builder { padding: clamp(22px, 4vw, 44px); }.plate-help { padding: 32px; }
.form-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }.form-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.live-plate { display: grid; grid-template-columns: 105px 1fr; width: min(100%, 690px); min-height: 220px; margin: 36px auto 26px; overflow: hidden; border: 8px solid #1e1e1e; border-radius: 20px; background: #f8f6ed; color: #101010; box-shadow: 0 22px 45px rgba(0,0,0,.3), inset 0 0 0 3px #c8c5bb; direction: ltr; }
.plate-country { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 12px; border-right: 2px solid #b9b6ad; text-align: center; }.plate-country strong { font-size: 32px; }.plate-country span { font-size: 8px; font-weight: 800; line-height: 1.45; }
.plate-values { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 2px 25px; padding: 18px 35px; direction: rtl; }.plate-values > b { font-size: clamp(34px, 5vw, 65px); line-height: 1; text-align: center; }.plate-values small { grid-column: 1/-1; display: grid; grid-template-columns: 1fr 1fr; direction: ltr; font-size: 17px; font-weight: 800; text-align: center; letter-spacing: .25em; }
.builder-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 11px; }
.help-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(220,165,76,.12); color: var(--gold); font-family: serif; font-size: 24px; font-weight: 900; }.plate-help h3 { margin: 24px 0 16px; font-size: 24px; }.plate-help ol { padding-inline-start: 23px; color: var(--muted); font-size: 16px; }.plate-help li { margin: 12px 0; padding-inline-start: 6px; }.plate-help li::marker { color: var(--gold); font-weight: 900; }.plate-help p { margin-top: 25px; padding: 15px; border-inline-start: 3px solid var(--gold); background: var(--surface-2); color: var(--muted); font-size: 14px; }
.plate-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plate-card { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--bg); }.plate-card .mini-plate { display: grid; grid-template-columns: 1fr 1fr; padding: 17px; border: 4px solid #222; border-radius: 12px; background: #f7f4e9; color: #111; text-align: center; direction: rtl; }.mini-plate b { font-size: 27px; }.mini-plate small { grid-column: 1/-1; font-size: 8px; letter-spacing: .28em; }.plate-card h3 { margin: 20px 0 3px; font-size: 21px; }.plate-card > p { color: var(--muted); font-size: 14px; }.plate-card .listing-footer { margin-top: 14px; }

.maintenance-section { background: var(--bg); }
.maintenance-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; }
.tracking-card, .map-card { min-height: 500px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.tracking-card { padding: clamp(22px, 3vw, 38px); }.tracking-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }.tracking-head div { display: flex; flex-direction: column; }.tracking-head small { color: var(--muted); font-size: 13px; }.tracking-head strong { font-size: 24px; }.status-pill { padding: 7px 13px; border-radius: 999px; background: rgba(220,165,76,.13); color: var(--gold-light); font-size: 14px; font-weight: 800; }
.progress-track { display: flex; align-items: flex-start; margin: 42px 0; }.track-step { min-width: 115px; display: flex; flex: 0 0 auto; flex-direction: column; align-items: center; text-align: center; }.track-step > span { display: grid; place-items: center; width: 48px; height: 48px; border: 2px solid var(--line); border-radius: 50%; background: var(--surface-2); color: var(--muted); font-weight: 900; }.track-step div { display: flex; flex-direction: column; margin-top: 10px; }.track-step b { font-size: 14px; }.track-step small { color: var(--muted); font-size: 12px; }.track-step.done > span, .track-step.active > span { border-color: var(--gold); background: var(--gold); color: #15100a; }.track-step.active > span { box-shadow: 0 0 0 7px rgba(220,165,76,.12); }.track-line { flex: 1; height: 2px; margin-top: 24px; background: var(--line); }.track-line.done { background: var(--gold); }
.tracking-info { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }.tracking-info > div { display: flex; align-items: center; gap: 12px; min-height: 86px; padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-2); }.tracking-info > div > span { display: grid; place-items: center; flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px; color: var(--gold); background: rgba(220,165,76,.1); }.tracking-info p { display: flex; flex-direction: column; margin: 0; }.tracking-info small { color: var(--muted); font-size: 12px; }.tracking-info b { font-size: 14px; }.tracking-info a { margin-inline-start: auto; color: var(--gold); font-size: 12px; font-weight: 800; }
.map-card { position: relative; overflow: hidden; background: #181811; isolation: isolate; }.map-grid { position: absolute; inset: 0; z-index: -2; background-image: linear-gradient(rgba(220,165,76,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(220,165,76,.08) 1px, transparent 1px); background-size: 42px 42px; transform: rotate(5deg) scale(1.2); }.road { position: absolute; z-index: -1; display: block; border-radius: 100%; background: #333129; border: 1px solid #5c513d; }.road-one { width: 620px; height: 32px; top: 32%; left: -15%; transform: rotate(-19deg); }.road-two { width: 620px; height: 42px; top: 62%; left: -17%; transform: rotate(26deg); }.road-three { width: 35px; height: 650px; left: 57%; top: -20%; transform: rotate(9deg); }.map-pin { position: absolute; top: 40%; left: 48%; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; color: var(--gold-light); }.map-pin span { display: grid; place-items: center; width: 64px; height: 64px; border: 3px solid var(--gold); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--surface); font-size: 31px; box-shadow: 0 0 0 10px rgba(220,165,76,.12); }.map-pin span::first-letter { transform: rotate(45deg); }.map-pin b { margin-top: 21px; padding: 4px 10px; border-radius: 8px; background: #0a0908; font-size: 14px; }.map-action { position: absolute; right: 24px; left: 24px; bottom: 24px; }

.dashboard-section { background: var(--surface); }.demo-label { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--gold-light); background: rgba(220,165,76,.08); font-size: 13px; font-weight: 800; }.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }.stat-grid > div { display: grid; grid-template-columns: 50px 1fr auto; align-items: center; gap: 12px; padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: var(--bg); }.stat-grid > div > span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: rgba(220,165,76,.1); color: var(--gold); font-size: 24px; }.stat-grid p { display: flex; flex-direction: column; margin: 0; }.stat-grid small { color: var(--muted); font-size: 13px; }.stat-grid strong { font-size: 28px; line-height: 1.2; }.stat-grid em { color: var(--success); font-size: 13px; font-style: normal; }.stat-grid i { font-style: normal; }
.admin-grid { display: grid; grid-template-columns: 1.5fr .5fr; gap: 20px; }.admin-table-card, .admin-actions-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); }.card-title { display: flex; align-items: center; justify-content: space-between; }.card-title h3, .admin-actions-card h3 { font-size: 23px; }.table-wrap { overflow-x: auto; }table { width: 100%; border-collapse: collapse; font-size: 15px; }th, td { padding: 15px 11px; border-bottom: 1px solid var(--line); text-align: start; white-space: nowrap; }th { color: var(--muted); font-size: 13px; }td .status-pill { font-size: 12px; }.admin-actions-card > button { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; width: 100%; gap: 11px; margin-top: 10px; padding: 13px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-2); color: var(--text); text-align: start; cursor: pointer; }.admin-actions-card > button > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: rgba(220,165,76,.1); color: var(--gold); }.admin-actions-card p { display: flex; flex-direction: column; margin: 0; }.admin-actions-card b { font-size: 15px; }.admin-actions-card small { color: var(--muted); font-size: 12px; }.admin-actions-card em { color: var(--gold); font-style: normal; }

footer { display: grid; justify-items: center; gap: 18px; padding: 60px 24px 30px; border-top: 1px solid var(--line); background: #070706; color: #f8f5ed; text-align: center; }.footer-brand { width: 230px; }.footer-brand img { object-position: center 51%; }.footer-brand + p { max-width: 580px; margin: 0; color: #aaa298; font-size: 16px; }footer > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; font-size: 15px; }footer > div a, footer > div button { color: #d4c6ac; }footer > small { width: min(100%, 1000px); margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #817b71; font-size: 13px; }

.modal { position: fixed; z-index: 100; inset: 0; display: none; place-items: center; padding: 20px; }.modal.open { display: grid; }.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.76); backdrop-filter: blur(7px); }.modal-card { position: relative; z-index: 2; width: min(100%, 510px); max-height: calc(100vh - 40px); overflow-y: auto; padding: clamp(25px, 4vw, 42px); border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: 0 35px 100px rgba(0,0,0,.55); }.modal-card h2 { margin-bottom: 9px; font-size: clamp(28px, 4vw, 39px); line-height: 1.25; }.modal-card > p { color: var(--muted); font-size: 16px; }.modal-close { position: absolute; top: 13px; inset-inline-end: 13px; display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface-2); color: var(--text); font-size: 27px; cursor: pointer; }.modal-logo { width: 230px; height: 88px; margin: -5px auto 17px; object-fit: cover; object-position: center 51%; border-radius: 10px; }.google-button { display: flex; align-items: center; justify-content: center; gap: 13px; width: 100%; min-height: 54px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-2); color: var(--text); cursor: pointer; }.google-button > span { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: #fff; color: #4285f4; font-family: Arial, sans-serif; font-weight: 900; }.google-button b { font-size: 16px; }.divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; color: var(--muted); font-size: 13px; }.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }.auth-card form { display: grid; gap: 14px; }.password-wrap { position: relative; display: block; }.password-wrap button { position: absolute; top: 50%; inset-inline-end: 9px; transform: translateY(-50%); width: 40px; height: 40px; border: 0; background: transparent; color: var(--muted); cursor: pointer; }.form-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; }.check-label { display: flex; align-items: center; gap: 7px; }.check-label input { width: 19px; min-height: 19px; }.check-label span { margin: 0; font-size: 14px; }.account-switch { margin: 18px 0 0; text-align: center; }
.listing-modal-card, .wide-modal { width: min(100%, 820px); }.modal-listing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }.modal-listing-layout .car-art { min-height: 300px; border-radius: 18px; }.modal-listing-content h2 { margin-top: 15px; }.detail-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 21px 0; }.detail-list span { display: flex; flex-direction: column; padding: 12px; border-radius: 10px; background: var(--surface-2); color: var(--muted); font-size: 13px; }.detail-list b { color: var(--text); font-size: 16px; }.checkout-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }.checkout-row strong { color: var(--gold-light); font-size: 26px; }.maintenance-form { display: grid; gap: 16px; margin-top: 25px; }.maintenance-form fieldset { margin: 0; padding: 17px; border: 1px solid var(--line); border-radius: 14px; }.choice-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }.choice { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100px; padding: 11px; border: 1px solid var(--line); border-radius: 12px; text-align: center; cursor: pointer; }.choice input { position: absolute; opacity: 0; pointer-events: none; }.choice:has(input:checked) { border-color: var(--gold); background: rgba(220,165,76,.08); }.choice > span { color: var(--gold); font-size: 25px; }.choice b { font-size: 14px; }
.toast-region { position: fixed; z-index: 200; inset-inline-start: 24px; bottom: 24px; display: grid; gap: 9px; width: min(90vw, 390px); }.toast { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 11px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); color: var(--text); box-shadow: var(--shadow); animation: toastIn .25s ease both; }.toast > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(72,199,142,.12); color: var(--success); }.toast p { margin: 0; font-size: 15px; font-weight: 700; }.toast button { border: 0; background: transparent; color: var(--muted); cursor: pointer; }.toast.removing { animation: toastOut .2s ease both; }
.about-section { background: linear-gradient(150deg, var(--surface), var(--bg)); }
.about-layout { max-width: 1180px; margin: auto; }
.about-copy { max-width: 1020px; margin: auto; }
.about-copy h2 { margin: 10px 0 22px; font-size: clamp(35px, 4vw, 60px); line-height: 1.25; }
.about-copy p { color: var(--muted); font-size: 17px; line-height: 1.95; }
.about-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.profile-number-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1380px; margin: 65px auto 0; }
.profile-number-grid article { display: flex; flex-direction: column; min-height: 170px; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.profile-number-grid strong { color: var(--gold-light); font-size: clamp(32px, 3vw, 46px); line-height: 1.2; }.profile-number-grid span { margin-top: 11px; font-weight: 800; }.profile-number-grid small { margin-top: auto; color: var(--muted); font-size: 13px; }
.care-delivery-section { background: var(--surface); }.care-delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1240px; margin: auto; }
.profile-detail-card { display: grid; grid-template-columns: 68px 1fr; gap: 20px; padding: clamp(25px, 4vw, 42px); border: 1px solid var(--line); border-radius: 22px; background: var(--bg); }
.profile-detail-card > span { display: grid; place-items: center; width: 66px; height: 66px; border-radius: 18px; background: rgba(220,165,76,.1); color: var(--gold); font-size: 32px; }.profile-detail-card small { color: var(--gold); font-weight: 900; letter-spacing: .17em; }.profile-detail-card h3 { margin: 5px 0 12px; font-size: 29px; }.profile-detail-card p, .profile-detail-card li { color: var(--muted); font-size: 16px; }.profile-detail-card ul { margin: 18px 0 0; padding-inline-start: 21px; }.profile-detail-card li { margin: 7px 0; }.profile-detail-card li::marker { color: var(--gold); }
.coverage-note { max-width: 1240px; margin: 18px auto 0; padding: 17px 20px; border-inline-start: 4px solid var(--gold); background: var(--bg); color: var(--muted); font-size: 14px; }
.whatsapp-payment-section { padding-top: 45px; padding-bottom: 70px; background: var(--surface); }.whatsapp-payment-card { display: grid; grid-template-columns: 82px 1fr auto; align-items: center; gap: 25px; max-width: 1250px; margin: auto; padding: 32px; border: 1px solid rgba(49,203,109,.3); border-radius: 22px; background: linear-gradient(120deg, var(--bg), color-mix(in srgb, #173a25 35%, var(--surface))); }
.whatsapp-symbol { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 21px; background: #1fbb61; color: #fff; font-size: 42px; }.whatsapp-payment-card h2 { margin: 5px 0; font-size: clamp(25px, 3vw, 39px); }.whatsapp-payment-card p { max-width: 730px; margin: 0; color: var(--muted); font-size: 16px; }
.whatsapp-button { border: 0; background: #21b960; color: #fff; box-shadow: 0 12px 30px rgba(33,185,96,.2); }.whatsapp-button:hover { background: #169d4e; }
.profile-details-section { background: var(--bg); }.vision-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1240px; margin: auto; }.vision-mission-grid article { min-height: 260px; padding: 36px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }.vision-mission-grid small { color: var(--gold); font-weight: 900; letter-spacing: .18em; }.vision-mission-grid h3 { margin: 22px 0 12px; font-size: 30px; }.vision-mission-grid p { color: var(--muted); font-size: 18px; line-height: 1.9; }
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1240px; margin: 22px auto 90px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }.roadmap article { display: flex; flex-direction: column; gap: 7px; padding: 24px; border-inline-start: 1px solid var(--line); }.roadmap article:first-child { border-inline-start: 0; }.roadmap strong { color: var(--gold-light); font-size: 28px; }.roadmap span { color: var(--muted); font-size: 15px; }
.values-heading { margin-top: 0; }.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; max-width: 1420px; margin: auto; }.values-grid article { min-height: 265px; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }.values-grid article > span { color: rgba(220,165,76,.36); font-size: 34px; font-weight: 900; }.values-grid h3 { margin: 30px 0 10px; font-size: 23px; }.values-grid p { color: var(--muted); font-size: 15px; }
.contact-section { background: var(--surface); }.contact-card { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 50px; max-width: 1250px; margin: auto; padding: clamp(28px, 5vw, 60px); border: 1px solid var(--line); border-radius: 24px; background: var(--bg); }.contact-card h2 { margin: 8px 0 12px; font-size: clamp(34px, 4vw, 54px); }.contact-card > div > p { color: var(--muted); font-size: 17px; }.contact-card dl { margin: 0; }.contact-card dl > div { display: grid; grid-template-columns: 145px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }.contact-card dl > div:last-child { border-bottom: 0; }.contact-card dt { color: var(--muted); font-size: 13px; font-weight: 800; }.contact-card dd { margin: 0; font-size: 16px; font-weight: 700; }.contact-card dd a { color: var(--gold-light); }
.footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin: 0; color: #a9a197; font-size: 13px; }
.auth-action-tabs, .auth-method-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 6px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-2); }
.auth-action-tabs { margin: 24px 0 10px; }
.auth-method-tabs { margin: 10px 0 20px; }
.auth-action-tabs button, .auth-method-tabs button { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border: 1px solid transparent; border-radius: 10px; background: transparent; color: var(--muted); cursor: pointer; font-weight: 800; }
.auth-action-tabs button.active, .auth-method-tabs button.active { border-color: var(--line); background: var(--surface); color: var(--gold-light); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.auth-method-tabs b { font-size: 14px; }.auth-method-form { display: grid; gap: 14px; }.phone-input-wrap { display: grid; grid-template-columns: 76px 1fr; direction: ltr; }.phone-input-wrap b { display: grid; place-items: center; border: 1px solid var(--line); border-inline-end: 0; border-radius: 12px 0 0 12px; background: var(--surface-3); color: var(--gold-light); }.phone-input-wrap input { border-radius: 0 12px 12px 0; }
.auth-account-view h2 { margin-top: 12px; }.account-identity { display: grid; grid-template-columns: 56px 1fr; align-items: center; gap: 14px; margin: 24px 0; padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface-2); }.account-identity > span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; background: rgba(220,165,76,.12); color: var(--gold-light); font-size: 27px; }.account-identity div { display: flex; min-width: 0; flex-direction: column; }.account-identity strong { overflow: hidden; font-size: 18px; text-overflow: ellipsis; white-space: nowrap; }.account-identity small { overflow: hidden; color: var(--muted); text-overflow: ellipsis; white-space: nowrap; }.auth-submit:disabled, .admin-login-card button:disabled { cursor: wait; opacity: .7; }
.floating-whatsapp { position: fixed; z-index: 80; inset-inline-end: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; min-height: 52px; padding: 10px 17px; border: 2px solid rgba(255,255,255,.18); border-radius: 999px; background: #20b65d; color: #fff; box-shadow: 0 16px 35px rgba(0,0,0,.28); }.floating-whatsapp span { font-size: 25px; }.floating-whatsapp b { font-size: 14px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }.reveal.visible { opacity: 1; transform: none; }
@keyframes toastIn { from { opacity:0; transform:translateY(12px) scale(.97); } } @keyframes toastOut { to { opacity:0; transform:translateX(-15px); } }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 190px 1fr auto; padding-inline: 22px; }.main-nav { gap: 15px; }.main-nav a { font-size: 14px; }.header-actions .button { padding-inline: 11px; }
  .hero { grid-template-columns: 1fr 1fr; padding-inline: 40px; }.hero-visual { min-height: 420px; }.service-grid { grid-template-columns: repeat(2, 1fr); }.listing-grid, .plate-listing-grid { grid-template-columns: repeat(2, 1fr); }.stat-grid { grid-template-columns: repeat(2, 1fr); }.values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 930px) {
  .site-header { grid-template-columns: 1fr auto auto; }.menu-toggle { display: grid; }.main-nav { position: absolute; top: 100%; right: 16px; left: 16px; display: none; flex-direction: column; align-items: stretch; padding: 15px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow); }.main-nav.open { display: flex; }.main-nav a { padding: 10px 12px; }.main-nav a::after { display: none; }.header-actions .button span:not(:first-child) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 80px; }.hero-content { max-width: 760px; }.hero-visual { min-height: 430px; }.service-grid { grid-template-columns: 1fr; }.service-card { min-height: auto; }.care-delivery-grid, .vision-mission-grid, .contact-card { grid-template-columns: 1fr; }.profile-number-grid { grid-template-columns: repeat(2, 1fr); }.values-grid { grid-template-columns: repeat(2, 1fr); }.filter-bar { grid-template-columns: 1fr 1fr; }.plate-studio, .maintenance-layout { grid-template-columns: 1fr; }.plate-help { order: -1; }.whatsapp-payment-card { grid-template-columns: 65px 1fr; }.whatsapp-payment-card .whatsapp-button { grid-column: 1/-1; width: 100%; }.admin-grid { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  body { font-size: 17px; }.site-header { min-height: 82px; padding: 7px 14px; gap: 8px; }.brand { width: 148px; }.brand img { height: 62px; }.header-actions { gap: 5px; }.header-actions .text-button { font-size: 13px; }.header-actions .button { display: none; }.icon-button { width: 43px; height: 43px; }
  .hero { padding: 65px 20px 75px; }.hero h1 { font-size: clamp(38px, 12vw, 58px); }.hero-content > p { font-size: 18px; }.hero-actions .button { flex: 1; }.trust-row { margin-top: 38px; }.trust-row div { min-width: 33%; padding-inline: 10px; }.trust-row strong { font-size: 20px; }.trust-row span { font-size: 12px; }.hero-visual { min-height: 320px; }.visual-badge { top: 2%; }.price-tag { bottom: 1%; }.plate-tag { display: none; }
  .section-pad { padding-inline: 18px; }.section-heading h2 { font-size: 35px; }.split-heading { align-items: stretch; flex-direction: column; }.split-heading .button { width: 100%; }.listing-grid, .plate-listing-grid, .stat-grid, .profile-number-grid, .values-grid { grid-template-columns: 1fr; }.profile-detail-card { grid-template-columns: 1fr; }.roadmap { grid-template-columns: 1fr; }.roadmap article { border-inline-start: 0; border-top: 1px solid var(--line); }.roadmap article:first-child { border-top: 0; }.contact-card dl > div { grid-template-columns: 1fr; gap: 4px; }.whatsapp-payment-card { grid-template-columns: 1fr; text-align: center; }.whatsapp-symbol { margin: auto; }.whatsapp-payment-card .whatsapp-button { grid-column: auto; }.filter-bar { grid-template-columns: 1fr; }.form-grid, .form-grid.two { grid-template-columns: 1fr; }.live-plate { grid-template-columns: 70px 1fr; min-height: 160px; border-width: 6px; }.plate-country { padding: 6px; }.plate-country strong { font-size: 24px; }.plate-country span { font-size: 6px; }.plate-values { padding: 12px; gap: 2px 8px; }.plate-values > b { font-size: clamp(28px, 10vw, 48px); }.plate-values small { font-size: 11px; }.builder-actions .button { width: 100%; }
  .tracking-card, .map-card { min-height: auto; }.map-card { min-height: 430px; }.progress-track { overflow-x: auto; padding-bottom: 10px; }.track-step { min-width: 105px; }.tracking-info { grid-template-columns: 1fr; }.admin-table-card, .admin-actions-card { padding: 17px; }
  .modal { padding: 8px; }.modal-card { max-height: calc(100vh - 16px); border-radius: 18px; padding: 24px 18px; }.modal-listing-layout { grid-template-columns: 1fr; }.modal-listing-layout .car-art { min-height: 230px; }.checkout-row { grid-template-columns: 1fr; }.choice-row { grid-template-columns: 1fr; }.choice { min-height: 75px; flex-direction: row; gap: 12px; }.form-row { align-items: flex-start; flex-direction: column; }.floating-whatsapp { inset-inline-end: 11px; bottom: 11px; padding-inline: 13px; }.floating-whatsapp b { display: none; }.toast-region { inset-inline: 10px; bottom: 75px; width: auto; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

/* Separate administration page */
.admin-page { min-height: 100vh; background: radial-gradient(circle at 20% 10%, rgba(220,165,76,.13), transparent 35%), var(--bg); }
.admin-shell { width: min(100% - 32px, 1320px); min-height: 100vh; margin: auto; }
.admin-login { display: grid; place-items: center; min-height: 100vh; padding: 70px 0; }
.admin-back { position: fixed; top: 24px; inset-inline-start: 28px; color: var(--muted); }
.admin-login-card { width: min(100%, 510px); padding: clamp(28px, 5vw, 48px); border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: 0 35px 100px rgba(0,0,0,.4); }
.admin-login-card > img { display: block; width: 260px; height: 104px; margin: 0 auto 24px; border-radius: 12px; object-fit: cover; object-position: center; }
.admin-login-card h1 { margin: 8px 0; font-size: clamp(34px, 6vw, 50px); }
.admin-login-card > p, .admin-login-card > small { color: var(--muted); }
.admin-login-card form { display: grid; gap: 15px; margin: 26px 0 20px; }
.admin-error { margin: 0; color: #ff8d8d; font-size: 14px; }
.admin-dashboard { padding: 32px 0 70px; }
.admin-dashboard-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 38px; }
.admin-dashboard-header > div { display: flex; align-items: center; gap: 12px; }
.admin-dashboard .section-heading { margin-bottom: 28px; }
.admin-notice { position: fixed; z-index: 20; inset-inline-start: 50%; bottom: 28px; transform: translateX(-50%); width: max-content; max-width: calc(100% - 32px); padding: 14px 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); color: var(--gold-light); box-shadow: 0 15px 45px rgba(0,0,0,.35); }
.admin-notice[data-type="error"] { border-color: rgba(255,95,95,.45); color: #ff9d9d; }
.admin-heading { align-items: center; }
.admin-heading h1 { margin: 8px 0 10px; font-size: clamp(38px, 5vw, 68px); }
.admin-heading-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.admin-listings-card { padding: clamp(20px, 3vw, 32px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.admin-listings-title { gap: 20px; margin-bottom: 24px; }
.admin-listings-title h2 { margin-bottom: 4px; font-size: 30px; }
.admin-listings-title p { margin: 0; color: var(--muted); font-size: 15px; }
.admin-filter-tabs { display: flex; flex-wrap: wrap; gap: 7px; }
.admin-filter-tabs button { min-height: 42px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); color: var(--muted); cursor: pointer; font-weight: 800; }
.admin-filter-tabs button.active { border-color: var(--gold); color: var(--gold-light); background: rgba(220,165,76,.1); }
.admin-listing-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.admin-listing-item { display: grid; grid-template-columns: 180px 1fr; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--bg); }
.admin-listing-thumb { position: relative; display: grid; place-items: center; min-height: 220px; overflow: hidden; background: radial-gradient(circle, rgba(220,165,76,.18), transparent 60%), #111; color: var(--gold); font-size: 48px; }
.admin-listing-thumb img { width: 100%; height: 100%; object-fit: cover; }
.admin-listing-body { min-width: 0; padding: 18px; }
.admin-listing-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.admin-listing-top small { color: var(--gold); font-size: 12px; font-weight: 900; }
.admin-listing-top h3 { margin: 2px 0 0; overflow: hidden; font-size: 22px; text-overflow: ellipsis; white-space: nowrap; }
.admin-listing-body > p { margin: 9px 0 14px; color: var(--muted); font-size: 14px; }
.admin-status { flex: 0 0 auto; padding: 5px 10px; border-radius: 999px; font-size: 12px; font-weight: 900; }
.admin-status-active { background: rgba(40,190,105,.13); color: #65dd98; }
.admin-status-pending { background: rgba(220,165,76,.13); color: var(--gold-light); }
.admin-status-sold { background: rgba(100,160,255,.13); color: #9dc3ff; }
.admin-status-rejected { background: rgba(255,90,90,.13); color: #ff9d9d; }
.admin-listing-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 14px; }
.admin-listing-meta strong { color: var(--gold-light); font-size: 20px; }
.admin-listing-meta > span { color: var(--muted); font-size: 12px; }
.admin-whatsapp { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; border-radius: 999px; background: rgba(32,182,93,.13); color: #5add8e; font-size: 13px; font-weight: 900; }
.admin-no-whatsapp { color: #ff9d9d !important; }
.admin-listing-actions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.admin-listing-actions .button { min-height: 40px; padding: 8px 12px; font-size: 13px; }
.admin-danger-button { border-color: rgba(255,90,90,.35); background: rgba(255,90,90,.08); color: #ff9d9d; }
.admin-empty { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 60px 20px; border: 1px dashed var(--line); border-radius: 16px; color: var(--muted); text-align: center; }
.admin-empty strong { color: var(--text); font-size: 22px; }
.admin-listing-modal { width: min(100%, 880px); }
.admin-listing-modal form { display: grid; gap: 16px; margin-top: 24px; }
.admin-image-preview { display: grid; place-items: center; min-height: 170px; overflow: hidden; border: 1px dashed var(--line); border-radius: 14px; background: var(--bg); color: var(--muted); }
.admin-image-preview img { width: 100%; max-height: 320px; object-fit: contain; }
.admin-image-preview span { padding: 10px; font-size: 13px; }
.admin-form-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 4px; }
.admin-confirm-card { width: min(100%, 470px); }
.listing-photo, .plate-photo { width: 100%; height: 100%; object-fit: cover; }
.listing-photo { position: relative; z-index: 2; }
.car-art .listing-photo { min-height: 230px; }
.modal-photo { min-height: 300px; }
.plate-photo { height: 190px; border-radius: 12px; }

@media (max-width: 700px) {
  .admin-dashboard-header, .admin-dashboard .split-heading { align-items: stretch; flex-direction: column; }
  .admin-dashboard-header > div { justify-content: space-between; }
  .admin-dashboard .stat-grid { grid-template-columns: 1fr; }
  .admin-login-card > img { width: 220px; }
  .admin-heading-actions .button { width: 100%; }
  .admin-listings-title { align-items: stretch; flex-direction: column; }
  .admin-listing-grid { grid-template-columns: 1fr; }
  .admin-listing-item { grid-template-columns: 1fr; }
  .admin-listing-thumb { min-height: 190px; }
  .admin-listing-actions .button { flex: 1; }
}
