.location-hero-card {
  border: none;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #f6f8ff, #ffffff);
}

.location-hero-card .card-body {
  padding: 2rem;
}

.location-meta-chips .location-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.08);
  font-size: 0.85rem;
  font-weight: 500;
}

.reserved-callout {
  border-radius: 1rem;
  background-color: rgba(13, 110, 253, 0.08);
}

.location-map {
  width: 100%;
  min-height: 320px;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
}

.quick-stats .stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.quick-stats .value {
  font-size: 1rem;
}

.stat-card-grid .card {
  height: 100%;
}

.stat-chip-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.stat-chip {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.85rem;
  padding: 0.6rem 0.85rem;
  background-color: #f9fafc;
  font-size: 0.9rem;
}

.stat-chip .stat-value {
  font-weight: 600;
}

.carpark-level {
  background-color: #f8f9fb;
}

.carpark-level .lot-badges .badge {
  font-weight: 600;
}

.vehicle-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.1rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.vehicle-card .vehicle-thumb {
  width: 100%;
  min-height: 190px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
}

.vehicle-card .vehicle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vehicle-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.vehicle-card .vehicle-meta {
  margin-bottom: 0.25rem;
}

.vehicle-card.inactive {
  opacity: 0.75;
  border-style: dashed;
}

.vehicle-card.inactive .card-body {
  gap: 0.5rem;
}

.vehicle-card a.btn {
  margin-top: auto;
}

.inactive-vehicles summary {
  cursor: pointer;
}

.inactive-vehicles summary::-webkit-details-marker {
  display: none;
}

.inactive-vehicles summary::after {
  content: "Show / hide";
  font-size: 0.75rem;
  color: var(--bs-secondary);
}

@media (max-width: 992px) {
  .location-hero-card .card-body {
    padding: 1.5rem;
  }

  .location-map {
    min-height: 260px;
  }
}
