#vehicleGrid .car-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(27, 27, 27, 0.95),
    rgba(14, 14, 14, 0.95)
  );
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  transition: all 0.3s ease;
  padding-bottom: 16px;
  margin: 8px 0;
}

#vehicleGrid .car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
}

#vehicleGrid .car-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

#vehicleGrid .car-card .discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffc40c;
  color: #000;
  padding: 3px 10px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
}

#vehicleGrid .car-card .car-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 10px;
  color: #fff;
}

#vehicleGrid .car-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffc40c;
}

#vehicleGrid .car-card .old-price {
  text-decoration: line-through;
  color: #aaa;
  margin-left: 8px;
}

/* 🔥 Tags Section */
#vehicleGrid .car-card .car-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  margin-bottom: 10px;
}

#vehicleGrid .car-card .car-tags .tag {
  background: rgba(255, 196, 12, 0.1); /* soft yellow tint */
  border: 1px solid #ffc40c;
  color: #ffc40c;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.2s ease;
}

#vehicleGrid .car-card .car-tags .tag:hover {
  background: #ffc40c;
  color: #000;
}

#vehicleGrid .car-card .book-btn {
  width: 80%;
  margin-top: 10px;
  border: 2px solid #ffc40c;
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 8px;
  transition: 0.2s;
}

#vehicleGrid .car-card .book-btn:hover {
  background-color: #e6af00;
  color: #000;
}
