@font-face {
  font-family: "Gilroy";
  src: url("https://static.tildacdn.pro/tild3034-3635-4437-a137-343238373230/Gilroy-Regular_1.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("https://static.tildacdn.pro/tild3535-3731-4631-b037-646335393336/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("https://static.tildacdn.pro/tild6439-6461-4564-a236-383333653633/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("https://static.tildacdn.pro/tild3962-3639-4930-a264-646663633063/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("https://static.tildacdn.pro/tild3962-3639-4930-a264-646663633063/Gilroy-Bold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("https://static.tildacdn.pro/tild3962-3639-4930-a264-646663633063/Gilroy-Bold.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --sidebar-w: 304px;
  --topbar-h: 66px;

  --font-brand: "Gilroy", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --brand-green: #518746;
  --brand-green-deep: #213a21;
  --brand-green-hover: #6baa5f;
  --brand-green-soft: rgba(81, 135, 70, 0.11);
  --brand-cream: #f7f4ec;
  --brand-paper: #fffdf8;
  --brand-line: rgba(33, 58, 33, 0.14);

  --accent: var(--brand-green);
  --accent-hover: var(--brand-green-hover);
  --bg-dark: #0d1f13;
  --bg-panel: rgba(255, 253, 248, 0.94);
  --bg-card: rgba(255, 253, 248, 0.82);
  --bg-card-hover: rgba(81, 135, 70, 0.10);
  --text-primary: #1d321f;
  --text-secondary: #4e5f4a;
  --text-muted: #7d8977;
  --border: var(--brand-line);
  --border-hover: rgba(81, 135, 70, 0.38);

  --radius-panel: 24px;
  --radius-card: 8px;
  --radius-control: 999px;
  --shadow-panel: 0 18px 42px rgba(13, 31, 19, 0.20);
  --shadow-card: 0 8px 22px rgba(13, 31, 19, 0.10);
  --shadow-button: 0 10px 22px rgba(81, 135, 70, 0.20);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
}

body {
  font-family: var(--font-brand);
  color: var(--text-primary);
  letter-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(81, 135, 70, 0.72);
  outline-offset: 3px;
}

/* Pannellum appends hotspots to the render container, while SVG borders use 20. */
#panorama .pnlm-dragfix {
  z-index: 25;
  pointer-events: auto;
  touch-action: none;
}

#panorama .pnlm-hotspot-base {
  z-index: 30 !important;
}

#panorama .pnlm-render-container > .pnlm-hotspot-base.site-info-hotspot,
#panorama .pnlm-render-container > .pnlm-hotspot-base.overview-sector-hotspot {
  z-index: 30 !important;
}

body.editor-mode #lotPolygonLayer {
  z-index: 40;
}

.topbar,
.sidebar,
.lot-card-panel,
.lot-group-panel,
.editor-panel,
.polygon-tooltip,
.counter-badge,
.coords-badge {
  background: var(--bg-panel);
  border-color: var(--brand-line);
  box-shadow: var(--shadow-panel);
}

.topbar {
  top: 16px;
  left: 16px;
  right: 16px;
  border-radius: var(--radius-control);
  padding: 0 var(--space-4);
  gap: var(--space-4);
  background: rgba(255, 253, 248, 0.94);
}

.brand-logo-img {
  width: 112px;
  height: 52px;
}

.topbar-logo {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.brand-kicker {
  gap: 2px;
}

.brand-kicker span:last-child,
.topbar-title::before {
  color: var(--text-muted);
}

.topbar-title {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-left-color: rgba(33, 58, 33, 0.16);
}

.btn-icon,
.btn-search-lot,
.map-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--brand-green);
  background: var(--brand-green);
  color: #fff;
  box-shadow: var(--shadow-button);
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-icon:hover,
.btn-search-lot:hover,
.map-button:hover,
.map-button:focus {
  background: var(--brand-green-hover);
  border-color: var(--brand-green-hover);
  color: #fff;
  box-shadow: 0 12px 26px rgba(81, 135, 70, 0.28);
  transform: translateY(-1px);
}

.sidebar {
  top: 96px;
  left: 16px;
  bottom: 16px;
  border-radius: var(--radius-panel);
  background: rgba(255, 253, 248, 0.95);
}

.sidebar-brand {
  padding: var(--space-4);
  background: linear-gradient(180deg, rgba(81, 135, 70, 0.08), rgba(255, 253, 248, 0));
}

.sidebar-brand img {
  height: 78px;
  border-radius: var(--radius-card);
  background: #fff;
  border: 1px solid rgba(33, 58, 33, 0.08);
  padding: var(--space-2);
}

.sidebar-brand-meta,
.lot-tools-title,
.lot-card-kicker,
.lot-card-label,
.editor-calibration-title {
  color: var(--brand-green-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.sidebar-search,
.lot-tools,
.lot-group-head,
.editor-header {
  border-bottom-color: rgba(33, 58, 33, 0.10);
}

.sidebar-search input,
.topbar-search-lot.expanded,
.calibration-control input[type="number"] {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(33, 58, 33, 0.18);
  border-radius: var(--radius-control);
  color: var(--text-primary);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.sidebar-search input {
  min-height: 42px;
  padding: 0 14px 0 38px;
  font-size: 13px;
  font-weight: 600;
}

.sidebar-search input:focus,
.topbar-search-lot.expanded.has-match {
  border-color: rgba(81, 135, 70, 0.48);
  box-shadow: 0 0 0 3px rgba(81, 135, 70, 0.14);
}

.status-filter,
.lot-group-action,
.lot-action,
.mobile-action,
.editor-controls button,
.saved-poly-actions button,
.calibration-nudge {
  border-radius: var(--radius-control);
  font-weight: 800;
  letter-spacing: 0;
}

.status-filter {
  min-height: 34px;
  padding: 0 12px;
  background: rgba(255, 253, 248, 0.84);
  border-color: rgba(33, 58, 33, 0.16);
  color: var(--text-secondary);
}

.status-filter.is-active {
  background: rgba(81, 135, 70, 0.13);
  border-color: rgba(81, 135, 70, 0.42);
  color: var(--brand-green-deep);
}

.scene-group-label {
  color: rgba(33, 58, 33, 0.50);
  font-size: 10px;
  font-weight: 800;
}

.scene-card {
  border-radius: var(--radius-card);
  padding: 10px;
  margin-bottom: 6px;
  background: rgba(255, 253, 248, 0.50);
  border-color: rgba(33, 58, 33, 0.08);
}

.scene-card:hover,
.scene-card.active {
  background: rgba(81, 135, 70, 0.11);
  border-color: rgba(81, 135, 70, 0.32);
  box-shadow: var(--shadow-card);
}

.scene-name {
  color: var(--brand-green-deep);
  font-size: 13px;
  font-weight: 700;
}

.scene-desc,
.scene-num,
.lot-tools-hint,
.lot-stats {
  color: var(--text-muted);
}

.lot-card-panel {
  border-radius: 34px;
  width: min(360px, calc(100vw - 36px));
  background: rgba(255, 253, 248, 0.93);
}

.lot-card-head {
  padding: 18px 18px 10px;
  background: linear-gradient(180deg, rgba(81, 135, 70, 0.10), rgba(255, 253, 248, 0));
}

.lot-card-title {
  color: var(--brand-green-deep);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.08;
}

.lot-card-close {
  border-radius: 50%;
  background: #fff;
  border-color: rgba(33, 58, 33, 0.16);
  color: var(--brand-green-deep);
}

.lot-card-price {
  color: var(--brand-green);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.08;
  margin: 2px 0 12px;
}

.lot-card-grid {
  gap: var(--space-2);
}

.lot-card-field,
.lot-group-card,
.editor-calibration,
.saved-poly-card,
.editor-current-points {
  border-radius: var(--radius-card);
  background: rgba(247, 244, 236, 0.70);
  border-color: rgba(33, 58, 33, 0.12);
}

.lot-card-value,
.lot-group-name,
.lot-group-counts strong {
  color: var(--brand-green-deep);
  font-weight: 800;
}

.lot-card-text {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.btn-secondary,
.lot-group-action {
  min-height: 40px;
  background: transparent;
  color: var(--brand-green-deep);
  border: 2px solid var(--brand-green-deep);
  box-shadow: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.lot-card-actions {
  gap: 12px;
  align-items: center;
  justify-items: center;
}

.lot-action {
  min-height: 50px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.56);
  color: var(--brand-green-deep);
  border: 1px solid rgba(81, 135, 70, 0.82);
  box-shadow: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.lot-action.primary,
.btn-primary,
.btn-goto-lot:not(:disabled),
.mobile-action.primary,
.lot-group-card-action {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
  box-shadow: var(--shadow-button);
}

.lot-action.primary {
  border-width: 1px;
  font-size: 15px;
}

.btn-secondary:hover:not(:disabled),
.lot-group-action:hover,
.btn-primary:hover:not(:disabled),
.btn-goto-lot:not(:disabled):hover,
.mobile-action.primary:hover {
  background: var(--brand-green-hover);
  border-color: var(--brand-green-hover);
  color: #fff;
  transform: translateY(-1px);
}

.lot-action:not(.primary):hover,
.lot-action:not(.primary):focus {
  background: rgba(81, 135, 70, 0.06);
  border-color: var(--brand-green);
  color: var(--brand-green-deep);
  transform: translateY(-1px);
}

.lot-action.primary:hover,
.lot-action.primary:focus {
  background: var(--brand-green-hover);
  border-color: var(--brand-green-hover);
  color: #fff;
  transform: translateY(-1px);
}

.topbar-search-lot.expanded {
  height: 48px;
  width: min(250px, calc(100vw - 118px));
  max-width: min(250px, calc(100vw - 118px));
  flex-basis: min(250px, calc(100vw - 118px));
  padding: 4px 12px 4px 4px;
  gap: 8px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(33, 58, 33, 0.14);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(13, 31, 19, 0.10);
}

.topbar-search-lot.expanded.has-match {
  border-color: rgba(81, 135, 70, 0.36);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 10px 26px rgba(13, 31, 19, 0.10), 0 0 0 3px rgba(81, 135, 70, 0.08);
}

.topbar-search-lot.expanded.no-match {
  border-color: rgba(157, 77, 66, 0.30);
  box-shadow: 0 10px 26px rgba(13, 31, 19, 0.10), 0 0 0 3px rgba(157, 77, 66, 0.08);
}

.topbar-search-lot.expanded .btn-search-lot {
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin-left: 0;
  background: rgba(255, 253, 248, 0.96);
  border-color: var(--brand-green);
  color: var(--brand-green-deep);
  box-shadow: none;
}

.topbar-search-lot.expanded .btn-search-lot.is-ready {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
}

.topbar-search-lot input {
  font-family: var(--font-brand);
}

.topbar-search-lot.expanded input {
  align-self: stretch;
  min-height: 40px;
  padding: 0 4px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--brand-green-deep);
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 700;
  line-height: 40px;
}

.topbar-search-lot.expanded input:focus {
  outline: none;
}

.topbar-search-lot input::placeholder {
  color: rgba(33, 58, 33, 0.50);
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 700;
}

.btn-goto-lot {
  display: none !important;
}

.btn-goto-lot:disabled {
  background: rgba(33, 58, 33, 0.08);
  color: rgba(33, 58, 33, 0.42);
  border: 1px solid transparent;
  box-shadow: none;
}

.btn-goto-lot:not(:disabled) {
  background: var(--brand-green);
  border: 1px solid var(--brand-green);
  color: #fff;
  box-shadow: none;
}

.lot-group-panel {
  border-radius: var(--radius-panel);
  background: rgba(255, 253, 248, 0.95);
}

.lot-group-card {
  padding: 12px;
  box-shadow: none;
}

.lot-group-card:hover,
.lot-group-card:focus {
  background: rgba(81, 135, 70, 0.10);
  border-color: rgba(81, 135, 70, 0.34);
}

.polygon-tooltip {
  width: min(198px, calc(100vw - 24px));
  padding: 10px 12px 12px 13px;
  border-radius: 17px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(33, 58, 33, 0.12);
  box-shadow: 0 18px 44px rgba(13, 31, 19, 0.18);
  color: var(--brand-green-deep);
  font-family: var(--font-brand);
  line-height: 1.42;
}

.polygon-tooltip::after {
  width: 22px;
  height: 22px;
  bottom: -11px;
  background: rgba(255, 253, 248, 0.94);
  border-color: rgba(33, 58, 33, 0.12);
}

.polygon-tooltip.below::after {
  top: -11px;
}

.polygon-tooltip-title {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(33, 58, 33, 0.12);
  color: var(--brand-green-deep);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.08;
}

.polygon-tooltip-row {
  display: flex;
  justify-content: space-between;
  gap: 7px;
  margin-bottom: 4px;
  color: var(--text-secondary);
  font-size: 10px;
  line-height: 1.35;
}

.polygon-tooltip-row strong {
  color: var(--brand-green-deep);
  font-size: 10px;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.polygon-tooltip-row:not(:has(strong)) {
  display: block;
  margin-top: 2px;
  margin-bottom: 7px;
  color: var(--text-secondary);
}

.polygon-tooltip-status {
  margin-top: 0;
  min-height: 22px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
}

.polygon-tooltip-status.available {
  background: rgba(81, 135, 70, 0.12);
  color: var(--brand-green);
}

.polygon-tooltip-status.reserved {
  background: rgba(255, 176, 0, 0.16);
  color: #b37300;
}

.polygon-tooltip-status.sold {
  background: rgba(255, 0, 10, 0.12);
  color: #c70a12;
}

.sector-card-bg,
.sector-card-arrow {
  fill: rgba(255, 253, 248, 0.97);
  stroke: rgba(33, 58, 33, 0.12);
  stroke-width: 1;
  filter: drop-shadow(0 14px 32px rgba(13, 31, 19, 0.16));
}

.sector-card-title {
  fill: var(--brand-green-deep);
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 900;
}

.sector-card-subtitle {
  stroke: rgba(33, 58, 33, 0.12);
  stroke-width: 1;
}

.sector-card-row-label {
  fill: var(--text-secondary);
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 500;
}

.sector-card-row-value {
  fill: var(--brand-green-deep);
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 800;
}

.pnlm-hotspot-base.pnlm-scene {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  background:
    url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s6.3-5.15 6.3-11.05A6.3 6.3 0 0 0 5.7 9.95C5.7 15.85 12 21 12 21Z' stroke='rgba(255,255,255,0.88)' stroke-width='2.05' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='9.95' r='2.15' stroke='rgba(255,255,255,0.88)' stroke-width='2.05'/%3E%3C/svg%3E") center / 32px 32px no-repeat,
    var(--brand-green) !important;
  box-shadow: none !important;
  filter: drop-shadow(0 10px 18px rgba(16, 35, 22, 0.24)) !important;
  /* Never animate or replace Pannellum's coordinate transform. */
  transition: filter 0.14s ease !important;
}

.pnlm-hotspot-base.pnlm-scene::before,
.pnlm-hotspot-base.pnlm-scene::after {
  content: none !important;
}

.pnlm-hotspot-base.pnlm-scene:hover,
.pnlm-hotspot-base.pnlm-scene:focus {
  filter: drop-shadow(0 10px 18px rgba(16, 35, 22, 0.28)) !important;
}

.pnlm-hotspot-base.pnlm-scene.scene-image-hotspot {
  border-radius: 0;
  background: transparent !important;
}

.scene-number-marker {
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.pnlm-hotspot-base.site-info-hotspot,
.pnlm-hotspot-base.overview-sector-hotspot {
  filter: none !important;
  transition: none !important;
  backface-visibility: hidden;
}

.pnlm-hotspot-base.overview-sector-hotspot {
  width: 128px !important;
  height: 58px !important;
  border: 0 !important;
  background: transparent !important;
  cursor: pointer;
}

.overview-sector-label {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex !important;
  align-items: center;
  width: 120px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(33, 58, 33, 0.14);
  border-radius: 20px;
  color: var(--brand-green-deep);
  background: rgba(249, 249, 247, 0.97);
  box-shadow: 0 8px 18px rgba(16, 35, 22, 0.2);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.overview-sector-label strong {
  display: grid;
  width: 39px;
  height: 20px;
  flex: 0 0 39px;
  place-items: center;
  border-right: 1px solid rgba(33, 58, 33, 0.16);
  color: var(--brand-green);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  box-sizing: border-box;
}

.overview-sector-label span {
  display: inline !important;
  padding-left: 14px;
  font-size: 12px;
  font-weight: 700;
}

.overview-sector-info {
  position: absolute;
  left: 50%;
  bottom: calc(50% + 34px);
  display: block !important;
  width: 218px;
  height: 86px;
  padding: 14px;
  border: 1px solid rgba(33, 58, 33, 0.12);
  border-radius: 12px;
  color: var(--brand-green-deep);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 20px rgba(16, 35, 22, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity 0.14s ease, transform 0.14s ease, visibility 0.14s ease;
  pointer-events: none;
  box-sizing: border-box;
}

.overview-sector-info::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(33, 58, 33, 0.12);
  border-bottom: 1px solid rgba(33, 58, 33, 0.12);
  background: rgba(255, 255, 255, 0.97);
  transform: translateX(-50%) rotate(45deg);
}

.overview-sector-hotspot:hover .overview-sector-info,
.overview-sector-hotspot:focus .overview-sector-info,
.overview-sector-hotspot:focus-visible .overview-sector-info {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.overview-sector-info-title {
  display: block !important;
  height: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(33, 58, 33, 0.1);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.overview-sector-info-stats {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 9px;
}

.overview-sector-info-stats > span {
  display: grid !important;
  justify-items: center;
  gap: 3px;
}

.overview-sector-info-stats > span + span {
  border-left: 1px solid rgba(33, 58, 33, 0.1);
}

.overview-sector-info-stats strong,
.overview-sector-info-stats small {
  display: block !important;
  line-height: 1;
}

.overview-sector-info-stats strong {
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 800;
}

.overview-sector-info-stats small {
  color: var(--text-muted);
  font-size: 8px;
  font-weight: 600;
}

.pnlm-controls-container,
.pnlm-zoom-controls,
.pnlm-fullscreen-toggle-button {
  display: none !important;
}

.pnlm-hotspot-base.pnlm-scene span,
.pnlm-tooltip,
.pnlm-tooltip span {
  display: none !important;
}

.pnlm-panorama-info,
.pnlm-title-box,
.pnlm-author-box {
  display: none !important;
}

.loading-screen {
  background: linear-gradient(135deg, #f7f4ec 0%, #fffdf8 48%, #eef5ea 100%);
}

.loading-screen::after {
  background: rgba(81, 135, 70, 0.07);
}

.loading-text {
  color: var(--brand-green-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.error-screen {
  background: linear-gradient(135deg, rgba(33, 58, 33, 0.92), rgba(13, 31, 19, 0.94));
}

.error-title {
  color: #fff;
}

.error-msg {
  color: rgba(255, 255, 255, 0.76);
}

.error-link {
  border-radius: var(--radius-control);
  background: var(--brand-green);
  color: #fff;
  font-weight: 800;
}

.mobile-action.map-only {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(33, 58, 33, 0.14);
  color: var(--brand-green-deep);
}

@media (max-width: 768px) {
  :root {
    --sidebar-w: min(286px, calc(100vw - 24px));
    --topbar-h: 58px;
  }

  .topbar {
    top: calc(10px + env(safe-area-inset-top, 0px));
    left: calc(10px + env(safe-area-inset-left, 0px));
    right: calc(10px + env(safe-area-inset-right, 0px));
    padding: 0 10px;
    gap: 8px;
  }

  .topbar-search-lot.expanded {
    width: min(230px, calc(100vw - 72px));
    max-width: min(230px, calc(100vw - 72px));
    flex-basis: min(230px, calc(100vw - 72px));
  }

  .topbar.search-open .topbar-search-lot.expanded {
    width: min(230px, calc(100vw - 72px));
    max-width: min(230px, calc(100vw - 72px));
    flex: 0 0 min(230px, calc(100vw - 72px));
  }

  .brand-logo-img {
    width: 86px;
    height: 42px;
  }

  .sidebar {
    top: calc(78px + env(safe-area-inset-top, 0px));
    left: calc(10px + env(safe-area-inset-left, 0px));
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    border-radius: 20px;
  }

  .sidebar-brand,
  .sidebar-search,
  .lot-tools {
    padding: 12px;
  }

  .lot-card-panel {
    left: 10px;
    right: 10px;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    border-radius: 20px;
  }

  .lot-card-title {
    font-size: 18px;
  }

  .lot-card-price {
    font-size: 22px;
  }

  .lot-card-actions {
    grid-template-columns: 1fr;
  }

  .lot-action {
    min-height: 44px;
  }

  .lot-group-panel {
    left: 10px;
    right: 10px;
    bottom: calc(74px + env(safe-area-inset-bottom, 0px));
    border-radius: 18px;
  }

  .mobile-actions {
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
  }

  .mobile-action.primary {
    min-width: 132px;
    padding: 0 16px;
  }
}

/* LANDJER style: hover changes color only, without lift motion. */
.btn-icon:hover,
.btn-icon:focus,
.btn-search-lot:hover,
.btn-search-lot:focus,
.btn-search-lot.is-ready,
.map-button:hover,
.map-button:focus,
.back-overview-button:hover,
.back-overview-button:focus,
.status-filter:hover,
.scene-card:hover,
.lot-group-card:hover,
.lot-group-card:focus,
.lot-action:hover,
.lot-action:focus,
.btn-primary:hover:not(:disabled),
.btn-secondary:hover:not(:disabled),
.lot-group-action:hover,
.btn-goto-lot:not(:disabled):hover,
.mobile-action:hover,
.mobile-action:focus,
.mobile-action.primary:hover,
.mobile-action.primary:focus {
  transform: none !important;
}
