
.vehicle-filters {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}
.vehicle-filters select {
  padding: 8px;
  font-size: 1em;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.vehicle-listings-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 25px;
}
.vehicle-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
}
.gallery {
  position: relative;
}
.gallery img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.gallery-controls {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.gallery-controls button {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}
.vehicle-card h3 {
  margin-top: 10px;
}
.vehicle-card .price {
  font-weight: bold;
  color: #c00;
}
.vehicle-card .description {
  font-size: 0.9em;
}
.vehicle-specs {
  text-align: left;
  font-size: 0.9em;
  margin: 10px 0;
}
.spec {
  margin: 2px 0;
}
.enquire-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}
.enquire-btn:hover {
  background: #444;
}
