﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --bg: #080808;
  --panel: rgba(18, 18, 18, 0.94);
  --panel-strong: linear-gradient(180deg, rgba(17, 17, 17, 0.95), rgba(9, 9, 9, 0.92));
  --text: #f5ecd3;
  --muted: #dbc28e;
  --gold: #c9a24a;
  --gold-soft: #e6c873;
  --gold-strong: var(--gold-soft);
  --gold-deep: #9d7630;
  --gold-rgb: 201, 162, 74;
  --line: rgba(var(--gold-rgb), 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --button-muted: rgba(255, 255, 255, 0.02);
  --card-bg: linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(12, 10, 7, 0.95));
  --hero-glow-top: rgba(var(--gold-rgb), 0.14);
  --hero-glow-bottom: rgba(255, 255, 255, 0.02);
  --logo-bg: #060606;
  --price-text: #000000;
}

:root[data-theme="light"] {
  --bg: #f6f1e7;
  --panel: rgba(255, 252, 247, 0.96);
  --panel-strong: linear-gradient(180deg, rgba(255, 253, 249, 0.99), rgba(241, 233, 220, 0.97));
  --text: #1d1811;
  --muted: #5e4a22;
  --gold: #b88935;
  --gold-soft: #d9ba67;
  --gold-strong: var(--gold-soft);
  --gold-deep: #8b6728;
  --gold-rgb: 184, 137, 53;
  --line: rgba(var(--gold-rgb), 0.16);
  --shadow: 0 22px 55px rgba(106, 74, 20, 0.14);
  --button-muted: rgba(var(--gold-rgb), 0.07);
  --card-bg: linear-gradient(180deg, rgba(255, 253, 249, 0.99), rgba(242, 234, 220, 0.96));
  --hero-glow-top: rgba(var(--gold-rgb), 0.2);
  --hero-glow-bottom: rgba(255, 255, 255, 0.58);
  --logo-bg: #111111;
  --price-text: #000000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

:root[data-theme="light"] {
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Poppins", sans-serif;
  transition: background-color 320ms ease, color 320ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, var(--hero-glow-top), transparent 28%),
    linear-gradient(180deg, var(--hero-glow-bottom), transparent 30%);
  pointer-events: none;
  transition: opacity 320ms ease, background 320ms ease;
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at top left, rgba(214, 161, 41, 0.09), transparent 26%),
    radial-gradient(circle at bottom right, rgba(184, 130, 12, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf7ef 0%, #f4ecdf 100%);
}

.hero,
main {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  perspective: none;
}

.detail-page {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar,
.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 12;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
  justify-content: space-between;
  transition: background 320ms ease, border-color 320ms ease, box-shadow 320ms ease, padding 220ms ease;
}

.theme-switching *,
.theme-switching *::before,
.theme-switching *::after {
  transition:
    background-color 320ms ease,
    background 320ms ease,
    color 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease,
    opacity 320ms ease !important;
  animation: none !important;
}

.topbar.is-scrolled {
  padding: 12px 18px;
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

:root[data-theme="light"] .topbar {
  background: rgba(255, 252, 247, 0.78);
  box-shadow: 0 18px 36px rgba(116, 83, 23, 0.1);
}

:root[data-theme="light"] .topbar.is-scrolled {
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 14px 28px rgba(116, 83, 23, 0.12);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.logo-wrap > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  flex: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.brand-head {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  width: 100%;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--logo-bg);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.logo-mark img {
  width: 84%;
  height: 84%;
  display: block;
  object-fit: contain;
}

.logo-title,
.logo-subtitle,
.hero-tag,
.owner,
.section-tag,
.listing-badge,
.mini-title {
  margin: 0;
}

.logo-title {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--gold-strong);
  text-shadow: 0 0 18px rgba(var(--gold-rgb), 0.18);
  font-family: "Montserrat", sans-serif;
  line-height: 1.05;
  text-align: center;
  transition: text-shadow 220ms ease, color 260ms ease;
}

.logo-subtitle,
.hero-text,
.section-heading p,
.listing-body p,
.contact-panel p,
.feature-list li,
.detail-content p,
.detail-list li {
  color: var(--muted);
  line-height: 1.75;
}

.logo-subtitle {
  margin-top: 4px;
  font-size: 0.8rem;
  line-height: 1.35;
  text-align: center;
  transition: color 260ms ease;
}

.back-link {
  color: var(--text);
  text-decoration: none;
  transition: color 220ms ease;
}

.hero-panel,
.contact-panel,
.detail-layout {
  display: grid;
  gap: 24px;
}

.hero-panel {
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.8fr);
  padding: 34px 0 54px;
}

.hero-panel-single {
  grid-template-columns: 1fr;
}


.hero-copy,
.hero-card,
.contact-panel,
.contact-box,
.listing-card,
.detail-panel,
.detail-summary,
.detail-gallery,
.back-link {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card,
.contact-panel,
.detail-panel,
.detail-summary {
  background: var(--panel-strong);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.hero-copy,
.hero-card,
.contact-box,
.detail-panel,
.detail-summary {
  padding: 28px;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 34px;
}

:root[data-theme="light"] .hero-copy::before {
  background: radial-gradient(circle, rgba(214, 161, 41, 0.16), transparent 65%);
}

:root[data-theme="light"] .hero-copy::after {
  border-color: rgba(184, 130, 12, 0.08);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 207, 119, 0.14), transparent 65%);
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(240, 207, 119, 0.08);
  border-radius: 26px;
  pointer-events: none;
}

.hero-tag,
.section-tag,
.listing-badge,
.mini-title {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

h1 {
  max-width: 11ch;
  margin-top: 16px;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.owner {
  margin-top: 20px;
  color: var(--gold-strong);
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}

.hero-text {
  max-width: 720px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 160ms ease, background-color 260ms ease, color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  font-family: "Montserrat", sans-serif;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--button-muted);
  color: var(--gold-strong);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background-color 260ms ease, color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.button,
.back-link,
.theme-toggle {
  box-shadow:
    0 8px 0 rgba(0, 0, 0, 0.18),
    0 16px 28px rgba(var(--gold-rgb), 0.12);
}

.theme-icon {
  position: absolute;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--gold-strong);
  text-shadow: 0 0 12px rgba(var(--gold-rgb), 0.28);
  transition: opacity 220ms ease, transform 220ms ease;
}

.theme-sun {
  opacity: 0;
  transform: scale(0.75) rotate(-20deg);
}

.theme-moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

:root[data-theme="light"] .theme-sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

:root[data-theme="light"] .theme-moon {
  opacity: 0;
  transform: scale(0.75) rotate(20deg);
}

.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #16120a;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(var(--gold-rgb), 0.2);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.button:hover,
.back-link:hover,
.listing-card:hover {
  transform: translateY(-2px);
}

.button:hover,
.back-link:hover,
.theme-toggle:hover,
.gallery-button:hover {
  border-color: rgba(var(--gold-rgb), 0.34);
  box-shadow:
    0 10px 0 rgba(0, 0, 0, 0.15),
    0 18px 30px rgba(var(--gold-rgb), 0.14);
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

.button:active,
.back-link:active,
.theme-toggle:active {
  transform: translateY(2px);
  box-shadow:
    0 3px 0 rgba(0, 0, 0, 0.16),
    0 8px 16px rgba(0, 0, 0, 0.1);
}

.primary {
  color: #16120a;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 34px rgba(var(--gold-rgb), 0.24);
}

:root[data-theme="light"] .primary {
  color: #17120b;
  box-shadow: 0 16px 30px rgba(184, 130, 12, 0.18);
}

.secondary,
.back-link {
  background: var(--button-muted);
  color: var(--gold-strong);
}

.secondary {
  color: #ffffff;
}

.feature-list,
.detail-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0 24px;
  text-align: center;
}

.section-heading h2,
.contact-panel h2,
.detail-content h1 {
  margin-top: 0;
  font-size: clamp(1.55rem, 3.2vw, 2.4rem);
}

.section-heading h2 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-strong);
  text-shadow: 0 0 16px rgba(var(--gold-rgb), 0.1);
}

.section-heading p {
  max-width: 700px;
  margin-top: 14px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.vehicle-heading {
  padding-top: 54px;
}

.vehicle-strip {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.vehicle-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glare-x: 50%;
  --glare-y: 50%;
  --card-shadow-x: 0px;
  --card-shadow-y: 18px;
  --card-shadow-blur: 30px;
  min-width: min(420px, 88vw);
  flex: 0 0 min(420px, 88vw);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow:
    var(--card-shadow-x) var(--card-shadow-y) var(--card-shadow-blur) rgba(0, 0, 0, 0.22),
    0 8px 18px rgba(var(--gold-rgb), 0.06);
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  will-change: transform, box-shadow;
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 260ms ease, background 260ms ease;
  position: relative;
}

.vehicle-card-placeholder {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.84), rgba(10, 10, 10, 0.88));
}

.vehicle-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 180ms ease;
}

.vehicle-body {
  padding: 22px;
  position: relative;
  z-index: 2;
  transform: none;
}

.vehicle-card:hover .vehicle-image {
  transform: scale(1.02);
}

.vehicle-body h3 {
  margin-top: 10px;
  font-size: clamp(1.16rem, 2.1vw, 1.4rem);
  line-height: 1.08;
}

.vehicle-meta,
.vehicle-note {
  margin: 10px 0 0;
  color: var(--muted);
}

.vehicle-placeholder {
  background:
    linear-gradient(135deg, rgba(201, 164, 76, 0.16), rgba(0, 0, 0, 0.45)),
    linear-gradient(180deg, rgba(32, 32, 32, 0.8), rgba(10, 10, 10, 0.92));
}

.listing-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glare-x: 50%;
  --glare-y: 50%;
  --card-shadow-x: 0px;
  --card-shadow-y: 18px;
  --card-shadow-blur: 30px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--card-bg);
  transition: transform 180ms ease, background 260ms ease, border-color 260ms ease, box-shadow 220ms ease;
  border-radius: 28px;
  position: relative;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  will-change: transform, box-shadow;
  box-shadow:
    var(--card-shadow-x) var(--card-shadow-y) var(--card-shadow-blur) rgba(0, 0, 0, 0.24),
    0 8px 18px rgba(var(--gold-rgb), 0.06);
}

.listing-card::before,
.vehicle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--glare-x) var(--glare-y), rgba(255, 255, 255, 0.1), transparent 28%);
  transition: opacity 160ms ease;
  z-index: 3;
}

.listing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12));
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.listing-card:hover::after {
  opacity: 1;
}

.listing-card:hover::before,
.vehicle-card:hover::before {
  opacity: 1;
}

:root[data-theme="light"] .listing-card {
  box-shadow: 0 24px 44px rgba(113, 81, 24, 0.12);
}

:root[data-theme="light"] .listing-card::after {
  background: linear-gradient(180deg, transparent, rgba(184, 130, 12, 0.06));
}

:root[data-theme="light"] .listing-card::before,
:root[data-theme="light"] .vehicle-card::before {
  background: radial-gradient(circle at var(--glare-x) var(--glare-y), rgba(255, 255, 255, 0.22), transparent 34%);
}

.listing-image,
.detail-gallery {
  position: relative;
  background-size: cover;
  background-position: center;
}

.listing-image {
  height: 270px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transform: scale(1);
  transition: transform 180ms ease;
}

.detail-gallery {
  min-height: 340px;
}

.listing-image::after,
.detail-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.listing-card:hover .listing-image {
  transform: scale(1.02);
}

.listing-image span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #16120a;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  font-weight: 700;
}

.listing-1 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.16), rgba(0, 0, 0, 0.45)), url("https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=1200&q=80"); }
.listing-1-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-01/foto-05.jpg"); }
.listing-2 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.18), rgba(0, 0, 0, 0.5)), url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1200&q=80"); }
.listing-2-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-02/foto-02.jpg"); }
.listing-3 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.12), rgba(0, 0, 0, 0.52)), url("assets/ilan-03/foto-01.jpg"); }
.listing-3-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-03/foto-01.jpg"); }
.listing-4 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.12), rgba(0, 0, 0, 0.52)), url("assets/ilan-04/foto-01.jpg"); }
.listing-4-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-04/foto-03.jpg"); }
.listing-5 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.14), rgba(0, 0, 0, 0.54)), url("assets/ilan-05-current/foto-01.jpg"); }
.listing-5-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-05-current/foto-01.jpg"); }
.listing-6 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.15), rgba(0, 0, 0, 0.54)), url("assets/ilan-06/foto-01.jpg"); }
.listing-6-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-06/foto-02.jpg"); }
.listing-7 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.15), rgba(0, 0, 0, 0.58)), url("assets/ilan-07/foto-01.jpg"); }
.listing-7-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-07/foto-07.jpg"); }
.listing-8 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.14), rgba(0, 0, 0, 0.5)), url("assets/ilan-08/foto-01.jpg"); }
.listing-8-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-08/foto-04.jpg"); }
.listing-9 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.14), rgba(0, 0, 0, 0.56)), url("assets/ilan-09/foto-01.jpg"); }
.listing-9-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-09/foto-07.jpg"); }
.listing-10 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.18), rgba(0, 0, 0, 0.54)), url("assets/ilan-10/foto-01.jpg"); }
.listing-10-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-10/foto-04.jpg"); }
.listing-11 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.18), rgba(0, 0, 0, 0.54)), url("assets/ilan-11/foto-01.jpeg"); }
.listing-11-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-11/foto-01.jpeg"); }
.listing-12 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.18), rgba(0, 0, 0, 0.54)), url("assets/ilan-12/foto-01.jpeg"); }
.listing-12-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-12/foto-01.jpeg"); }
.listing-13 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.18), rgba(0, 0, 0, 0.54)), url("assets/ilan-13/foto-01.jpeg"); }
.listing-13-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-13/foto-01.jpeg"); }
.vehicle-01-cover {
  background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/arac-01/foto-04.jpg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #111111;
}
.vehicle-02-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/arac-02/foto-01.jpg"); }
.vehicle-03-cover {
  background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/arac-03/foto-01.jpeg");
}

.listing-body {
  padding: 22px 22px 24px;
  position: relative;
  z-index: 2;
  transform: none;
}

.listing-body h3 {
  margin-top: 10px;
  font-size: clamp(1.16rem, 2.2vw, 1.45rem);
  color: var(--text);
  transition: color 260ms ease;
  line-height: 1.08;
}

.listing-size {
  display: inline-block;
  margin-left: 8px;
  color: var(--text);
  font-size: 0.9em;
}

.listing-type {
  color: var(--gold-strong);
}

.listing-room {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  transition: color 260ms ease;
}

.listing-price {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 12px 18px;
  border: 1px solid rgba(240, 207, 119, 0.34);
  border-radius: 999px;
  color: var(--price-text) !important;
  text-shadow: none;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow:
    0 12px 24px rgba(var(--gold-rgb), 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  letter-spacing: 0.03em;
  font-family: "Montserrat", sans-serif;
}

:root[data-theme="light"] .listing-price {
  box-shadow:
    0 14px 24px rgba(184, 130, 12, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.contact-panel {
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  margin: 42px 0 56px;
  padding: 34px;
  border-radius: 30px;
}

.detail-contact {
  margin-top: 28px;
}

.about-page {
  padding-top: 22px;
}

.about-panel {
  border-radius: 32px;
}

.about-grid {
  margin-top: 28px;
}

.about-text {
  max-width: 860px;
  margin-top: 20px;
}

.about-text p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.03rem;
}

.contact-box {
  border-radius: 24px;
}

.site-footer {
  margin: 8px 0 56px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-title {
  margin: 0 0 6px;
  color: var(--gold-strong);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.7;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold-strong);
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
}

:root[data-theme="light"] .contact-box,
:root[data-theme="light"] .info-card,
:root[data-theme="light"] .gallery-shell,
:root[data-theme="light"] .detail-summary,
:root[data-theme="light"] .detail-panel,
:root[data-theme="light"] .contact-panel {
  box-shadow: 0 18px 42px rgba(113, 81, 24, 0.1);
}

.detail-page {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 56px;
}

.detail-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
}

.detail-content {
  margin-top: 24px;
}

.detail-lead {
  max-width: 52ch;
  margin: 16px 0 0;
  font-size: 1.02rem;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.detail-chip {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-strong);
  font-size: 0.9rem;
  background: rgba(var(--gold-rgb), 0.06);
  transition: color 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.detail-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(var(--gold-rgb), 0.08);
}

.gallery-shell {
  padding: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(26, 22, 14, 0.12), rgba(8, 8, 8, 0.04));
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  border-radius: 24px;
}

.gallery-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.gallery-actions {
  display: flex;
  gap: 10px;
}

.gallery-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.05);
  color: var(--gold-strong);
  font: inherit;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 160ms ease;
}

.gallery-button:hover,
.theme-toggle:hover {
  transform: translateY(-2px);
}

.photo-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(240, 207, 119, 0.5) transparent;
}

.photo-strip img {
  flex: 0 0 100%;
  width: 100%;
  height: clamp(260px, 48vw, 520px);
  object-fit: contain;
  display: block;
  border: 1px solid var(--line);
  background: #0d0d0d;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.info-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--button-muted);
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  border-radius: 20px;
}

.detail-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-header .logo-title,
.detail-header .logo-subtitle {
  text-align: center;
}

.detail-header .logo-wrap {
  flex: 1;
}

.detail-header .brand-copy {
  align-items: center;
  justify-content: center;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0 20px;
  padding: 12px 24px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold-strong);
}

.info-card p {
  margin: 0;
}

.info-card p + p {
  margin-top: 8px;
}

.info-label {
  color: var(--gold-strong);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 260ms ease;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 980px) {
  .hero-panel,
  .contact-panel,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    display: block;
    text-align: center;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .detail-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .topbar {
    position: sticky;
    top: 8px;
    padding: 12px 14px;
    border-radius: 20px;
    gap: 10px;
  }

  .topbar.is-scrolled {
    padding: 11px 14px;
  }

  .logo-title {
    font-size: 1.12rem;
    letter-spacing: 0.1em;
  }

  .logo-subtitle {
    font-size: 0.72rem;
  }

  .brand-head {
    gap: 8px;
  }

  .logo-wrap {
    gap: 10px;
    min-width: 0;
    flex: 1;
  }

  .logo-mark {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
  }

  .brand-copy {
    min-width: 0;
    flex: 1;
  }

  .theme-toggle {
    width: 38px;
    height: 38px;
    margin-left: 8px;
  }

  .detail-back-link {
    display: inline-flex;
    margin: 12px 0 18px;
  }

  .hero,
  main,
  .detail-page {
    width: min(100% - 20px, 1200px);
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .listing-card,
  .vehicle-card {
    transform: none;
    box-shadow:
      0 16px 28px rgba(0, 0, 0, 0.2),
      0 6px 18px rgba(201, 164, 76, 0.08);
  }

  .listing-card::before,
  .vehicle-card::before {
    display: none;
  }

  .listing-card::after {
    opacity: 0.7;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.18));
  }

  .listing-card:active,
  .vehicle-card:active {
    transform: translateY(-1px);
    box-shadow:
      0 18px 28px rgba(0, 0, 0, 0.22),
      0 8px 18px rgba(201, 164, 76, 0.1);
  }

  .listing-card:active .listing-image,
  .vehicle-card:active .vehicle-image {
    transform: scale(1.015);
  }

  .vehicle-strip {
    gap: 14px;
    padding: 0 22px 14px 0;
  }

  .vehicle-card {
    min-width: min(82vw, 336px);
    flex-basis: min(82vw, 336px);
  }

  .vehicle-image {
    height: 196px;
  }

  .vehicle-body {
    padding: 18px;
    transform: none;
  }

  .listing-body {
    padding: 16px;
    transform: none;
  }

  .listing-body h3 {
    font-size: 1.08rem;
    line-height: 1.12;
  }

  .vehicle-body h3 {
    line-height: 1.12;
  }

  .listing-body p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .listing-room {
    font-size: 0.88rem;
  }

  .listing-price {
    margin-top: 12px;
    padding: 9px 12px;
    font-size: 0.92rem;
  }

  .listing-image {
    height: 150px;
    transform: none;
  }

  .site-footer {
    padding: 22px;
    border-radius: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-copy {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .hero-copy::after {
    inset: 12px;
    border-radius: 18px;
  }

  .gallery-shell,
  .detail-panel,
  .detail-summary {
    padding: 18px;
  }

  .gallery-top {
    margin-bottom: 12px;
  }

  .detail-content h1 {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .logo-wrap > div:last-child,
  .brand-copy {
    align-items: center;
    text-align: center;
  }

  .detail-chip {
    font-size: 0.82rem;
  }

  .photo-strip img {
    height: 260px;
  }

  .whatsapp-float {
    left: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (hover: none), (pointer: coarse) {
  .listing-card,
  .vehicle-card {
    transform: none;
  }

  .listing-card::before,
  .vehicle-card::before {
    display: none;
  }

  .vehicle-image {
    transform: none;
  }
}

@media (max-width: 430px) {
  .hero,
  main,
  .detail-page {
    width: min(100% - 18px, 1200px);
  }

  .topbar {
    padding: 11px 12px;
    gap: 10px;
  }

  .logo-title {
    font-size: 0.98rem;
    letter-spacing: 0.07em;
  }

  .logo-subtitle {
    font-size: 0.66rem;
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .vehicle-strip,
  .footer-grid,
  .info-grid {
    gap: 12px;
  }

  .listing-image,
  .vehicle-image {
    height: 184px;
  }

  .vehicle-card {
    min-width: 80vw;
    flex-basis: 80vw;
  }

  .listing-body,
  .vehicle-body,
  .hero-copy,
  .gallery-shell,
  .detail-panel,
  .detail-summary,
  .contact-panel,
  .site-footer {
    padding: 17px;
  }

  .listing-body h3,
  .vehicle-body h3 {
    font-size: 1rem;
  }

  .listing-price {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 390px) {
  .topbar {
    padding: 10px 11px;
    border-radius: 18px;
  }

  .logo-mark {
    width: 46px;
    height: 46px;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
  }

  .section-heading {
    padding: 14px 0 18px;
  }

  .section-heading h2 {
    font-size: 0.9rem;
    letter-spacing: 0.17em;
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .listing-image,
  .vehicle-image {
    height: 176px;
  }

  .vehicle-card {
    min-width: 79vw;
    flex-basis: 79vw;
  }

  .listing-body p,
  .vehicle-meta,
  .vehicle-note,
  .footer-column a,
  .footer-bottom p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .photo-strip img {
    height: min(72vw, 280px);
  }
}

@media (max-width: 375px) {
  .hero,
  main,
  .detail-page {
    width: min(100% - 14px, 1200px);
  }

  .topbar {
    padding: 9px 10px;
    gap: 8px;
  }

  .logo-title {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
  }

  .logo-subtitle {
    font-size: 0.62rem;
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .listing-image,
  .vehicle-image {
    height: 168px;
  }

  .vehicle-card {
    min-width: 78vw;
    flex-basis: 78vw;
  }

  .listing-body,
  .vehicle-body,
  .hero-copy,
  .gallery-shell,
  .detail-panel,
  .detail-summary,
  .contact-panel,
  .site-footer {
    padding: 15px;
  }

  .listing-body h3,
  .vehicle-body h3 {
    font-size: 0.96rem;
    line-height: 1.14;
  }

  .listing-price {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    left: 12px;
    bottom: 12px;
  }
}

@media (max-width: 320px) {
  .hero,
  main,
  .detail-page {
    width: min(100% - 12px, 1200px);
  }

  .topbar {
    padding: 8px 9px;
    border-radius: 16px;
  }

  .logo-wrap {
    gap: 7px;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
  }

  .logo-title {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
  }

  .logo-subtitle {
    font-size: 0.58rem;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
  }

  .section-heading h2 {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .listing-image,
  .vehicle-image {
    height: 156px;
  }

  .vehicle-card {
    min-width: 77vw;
    flex-basis: 77vw;
  }

  .listing-body,
  .vehicle-body,
  .hero-copy,
  .gallery-shell,
  .detail-panel,
  .detail-summary,
  .contact-panel,
  .site-footer {
    padding: 13px;
  }

  .listing-body h3,
  .vehicle-body h3 {
    font-size: 0.9rem;
  }

  .listing-badge,
  .hero-tag,
  .section-tag,
  .mini-title {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .listing-price,
  .button,
  .back-link,
  .gallery-button {
    min-height: 40px;
  }

  .photo-strip img {
    height: min(76vw, 240px);
  }
}

.listing-14 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.18), rgba(0, 0, 0, 0.54)), url("assets/ilan-14/foto-01.jpeg"); }
.listing-14-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-14/foto-01.jpeg"); }
.listing-15 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.18), rgba(0, 0, 0, 0.54)), url("assets/ilan-15/foto-01.jpeg"); }
.listing-15-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-15/foto-01.jpeg"); }
.listing-16 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.18), rgba(0, 0, 0, 0.54)), url("assets/ilan-16/foto-06.jpeg"); }
.listing-16-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-16/foto-06.jpeg"); }
.listing-17 { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.18), rgba(0, 0, 0, 0.54)), url("assets/ilan-17/foto-01.jpeg"); }
.listing-17-cover { background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/ilan-17/foto-01.jpeg"); }

/* === UI POLISH 2026-04-08 START === */
:root[data-theme="dark"] {
  color-scheme: dark;
}
html,
body {
  max-width: 100%;
  overflow-x: clip;
}
body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  max-width: 100%;
}
main {
  padding-bottom: clamp(84px, 10vw, 120px);
}
.hero,
main,
.detail-page {
  width: min(1200px, calc(100% - 40px));
}
.topbar,
.detail-header {
  align-items: center;
}
.topbar {
  width: 100%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}
.topbar.is-scrolled {
  top: 10px;
}
.section-heading {
  padding: 28px 0 26px;
}
.section-heading h2 {
  margin: 0;
}
.vehicle-heading {
  padding-top: clamp(52px, 7vw, 86px);
}
.listing-grid {
  align-items: stretch;
}
.listing-card,
.vehicle-card {
  min-width: 0;
  border-radius: 28px;
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow:
    var(--card-shadow-x, 0px) var(--card-shadow-y, 18px) var(--card-shadow-blur, 30px) rgba(0, 0, 0, 0.22),
    0 16px 32px rgba(0, 0, 0, 0.08);
}
.listing-body,
.vehicle-body {
  padding: 22px 22px 24px;
}
.listing-image,
.vehicle-image {
  background-repeat: no-repeat;
  background-position: center center;
}
.listing-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  line-height: 1;
}
.vehicle-strip {
  padding: 4px 0 12px;
  scroll-padding-inline: 8px;
}
.vehicle-card {
  scroll-snap-align: start;
}
.site-footer {
  padding: clamp(24px, 4vw, 34px);
}
.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
}
.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
}
.contact-panel,
.detail-layout {
  align-items: start;
}
.contact-box {
  min-height: 100%;
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.detail-summary {
  position: sticky;
  top: 108px;
}
.about-text {
  display: grid;
  gap: 18px;
  max-width: 76ch;
}
.photo-strip {
  scroll-padding-inline: 4px;
}
.photo-strip img {
  border-radius: 24px;
}
.whatsapp-float {
  transition: transform 180ms ease, box-shadow 220ms ease, background 260ms ease;
}
.is-touch-active {
  transform: translateY(1px) scale(0.995) !important;
}
@media (max-width: 1100px) {
  .hero,
  main,
  .detail-page {
    width: min(100% - 24px, 1200px);
  }
  .detail-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .detail-summary {
    position: static;
  }
}
@media (max-width: 980px) {
  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .topbar,
  .detail-header {
    gap: 16px;
  }
}
@media (max-width: 720px) {
  .hero,
  main,
  .detail-page {
    width: min(100% - 20px, 1200px);
  }
  .topbar,
  .detail-header {
    margin-top: 12px;
    padding: 12px 14px;
    gap: 10px;
    border-radius: 18px;
  }
  .logo-wrap {
    gap: 10px;
  }
  .logo-mark {
    width: 50px;
    height: 50px;
  }
  .logo-title {
    font-size: 1.08rem;
    letter-spacing: 0.1em;
  }
  .logo-subtitle {
    font-size: 0.74rem;
  }
  .theme-toggle {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
  .section-heading {
    padding: 22px 0 18px;
  }
  .section-heading h2 {
    font-size: 0.96rem;
    letter-spacing: 0.2em;
  }
  .listing-card,
  .vehicle-card {
    border-radius: 24px;
  }
  .listing-body,
  .vehicle-body,
  .contact-panel,
  .detail-panel,
  .detail-summary,
  .contact-box,
  .site-footer {
    padding: 18px;
  }
  .listing-image {
    height: clamp(180px, 48vw, 260px);
  }
  .vehicle-strip {
    gap: 16px;
    margin-right: -2px;
  }
  .vehicle-card {
    min-width: min(312px, 84vw);
    flex: 0 0 min(312px, 84vw);
  }
  .vehicle-image {
    height: 180px;
    background-size: cover;
  }
  .listing-price {
    min-height: 48px;
    padding: 0 16px;
    font-size: 1rem;
  }
  .contact-panel {
    margin: 24px 0 40px;
  }
  .site-footer {
    margin: 8px 0 90px;
  }
  .footer-grid {
    gap: 16px;
  }
  .photo-strip {
    gap: 12px;
  }
  .photo-strip img {
    height: clamp(220px, 62vw, 360px);
    border-radius: 20px;
  }
  .gallery-top {
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
  }
  .gallery-actions {
    margin-left: auto;
  }
  .detail-content h1,
  .contact-panel h2 {
    font-size: clamp(1.42rem, 7vw, 2rem);
    line-height: 1.08;
  }
  .detail-lead {
    font-size: 0.98rem;
  }
  .back-link {
    min-height: 46px;
    padding: 0 16px;
  }
  .whatsapp-float {
    width: 54px;
    height: 54px;
    left: 14px;
    bottom: 14px;
  }
}
@media (hover: none), (pointer: coarse) {
  .listing-card,
  .vehicle-card {
    transform: none !important;
  }
  .listing-card::before,
  .listing-card::after,
  .vehicle-card::before {
    display: none;
  }
  .listing-image,
  .vehicle-image {
    transform: none !important;
  }
}
@media (max-width: 430px) {
  .hero,
  main,
  .detail-page {
    width: min(100% - 16px, 1200px);
  }
  .topbar,
  .detail-header {
    padding: 11px 12px;
    gap: 8px;
  }
  .logo-title {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }
  .logo-subtitle {
    font-size: 0.72rem;
  }
  .listing-body h3,
  .vehicle-body h3 {
    font-size: clamp(1.02rem, 5.2vw, 1.18rem);
  }
  .listing-price {
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.96rem;
  }
  .vehicle-card {
    min-width: min(290px, 82vw);
    flex: 0 0 min(290px, 82vw);
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 390px) {
  .logo-mark {
    width: 46px;
    height: 46px;
  }
  .theme-toggle {
    width: 42px;
    height: 42px;
  }
  .listing-body,
  .vehicle-body,
  .contact-panel,
  .detail-panel,
  .detail-summary,
  .contact-box,
  .site-footer {
    padding: 16px;
  }
  .vehicle-image,
  .listing-image {
    height: 170px;
  }
  .vehicle-note,
  .vehicle-meta,
  .listing-body p {
    font-size: 0.94rem;
  }
}
@media (max-width: 375px) {
  .logo-title {
    font-size: 0.94rem;
  }
  .logo-subtitle {
    font-size: 0.69rem;
  }
  .listing-price {
    width: 100%;
    justify-content: center;
  }
  .detail-content h1,
  .contact-panel h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 320px) {
  .hero,
  main,
  .detail-page {
    width: min(100% - 12px, 1200px);
  }
  .topbar,
  .detail-header {
    padding: 10px;
  }
  .logo-title {
    font-size: 0.88rem;
  }
  .logo-subtitle {
    font-size: 0.66rem;
  }
  .theme-toggle {
    width: 40px;
    height: 40px;
  }
  .listing-body,
  .vehicle-body,
  .contact-panel,
  .detail-panel,
  .detail-summary,
  .contact-box,
  .site-footer {
    padding: 14px;
  }
  .vehicle-card {
    min-width: 84vw;
    flex: 0 0 84vw;
  }
}
/* === UI POLISH 2026-04-08 END === */




.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-easter-link {
  display: none;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(var(--gold-rgb), 0.36) 0 1px, transparent 2px), rgba(var(--gold-rgb), 0.03);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset;
  opacity: 0.42;
  transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.site-easter-link:hover,
.site-easter-link:focus-visible {
  opacity: 0.78;
  border-color: rgba(var(--gold-rgb), 0.34);
  transform: translateY(-1px);
  outline: none;
}

@media (min-width: 1180px) and (hover: hover) and (pointer: fine) {
  .site-easter-link {
    display: inline-flex;
  }
}

@media (max-width: 1179px), (hover: none), (pointer: coarse) {
  .site-easter-link {
    display: none !important;
  }
}
.vehicle-04-cover {
  background-image: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(0, 0, 0, 0.4)), url("assets/arac-04/foto-01.jpeg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
