/**
 * DeMV Platform - Responsive Vehicle Cards
 * Enhanced cyberpunk-themed styling for vehicle cards across all device sizes and orientations
 */

/* Base vehicle card styling */
.vehicle-card {
  background: rgba(20, 20, 35, 0.95);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 5px rgba(108, 99, 255, 0.1);
  position: relative;
  backdrop-filter: blur(5px);
  margin-bottom: 20px;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(108, 99, 255, 0.3);
  border-color: rgba(108, 99, 255, 0.7);
  background: rgba(25, 25, 40, 0.98);
}

/* Add a subtle glow effect on hover */
.vehicle-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.5) 0%, rgba(0, 0, 0, 0) 50%, rgba(108, 99, 255, 0.3) 100%);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.vehicle-card:hover::before {
  opacity: 0.6;
}

/* Add a subtle glow effect on hover */
.vehicle-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 0 rgba(108, 99, 255, 0);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.5s ease, box-shadow 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.vehicle-card:hover::after {
  opacity: 1;
  box-shadow: 0 0 30px 5px rgba(108, 99, 255, 0.25);
}

/* Image container with overlay/* Vehicle image */
.vehicle-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid rgba(108, 99, 255, 0.2);
}

.vehicle-image-link {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

.vehicle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0.9;
  filter: contrast(1.1) saturate(1.1);
}

.vehicle-card:hover .vehicle-image {
  transform: scale(1.08);
  opacity: 1;
  filter: contrast(1.2) saturate(1.2);
}

/* Add a subtle overlay gradient */
.vehicle-image-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.3) 100%);
  z-index: 3;
  transition: opacity 0.3s ease;
}

.vehicle-card:hover .vehicle-image-link::after {
  opacity: 0.7;
}

/* Image zoom indicator */
.image-zoom-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(108, 99, 255, 0.3);
}

.vehicle-image-container:hover .image-zoom-indicator {
  opacity: 1;
  transform: scale(1.1);
  background: rgba(108, 99, 255, 0.8);
}

/* Overlay effect on hover */
.vehicle-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(18,18,30,0.7) 100%);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.vehicle-card:hover .vehicle-image-container::after {
  opacity: 0.7;
}

/* Vehicle details */
.vehicle-details {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, rgba(30, 30, 45, 0.9) 0%, rgba(20, 20, 35, 0.95) 100%);
}

.vehicle-title {
  font-size: 1.4rem;
  margin: 0 0 10px;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
}

/* Add a subtle underline effect on hover */
.vehicle-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(108, 99, 255, 0.8) 0%, rgba(108, 99, 255, 0.2) 100%);
  transition: width 0.3s ease;
}

.vehicle-card:hover .vehicle-title::after {
  width: 100%;
}

/* Vehicle specifications */
.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.vehicle-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, transform 0.2s ease;
  padding: 3px 0;
}

.vehicle-specs span:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateX(2px);
}

.vehicle-specs i {
  color: rgba(108, 99, 255, 0.8);
  transition: color 0.3s ease;
}

.vehicle-specs span:hover i {
  color: rgba(108, 99, 255, 1);
}

/* Price container */
.vehicle-price-container {
  display: block !important;
  text-align: left !important;
  width: auto !important;
  margin: 25px 0 10px 0 !important;
  position: relative !important;
  z-index: 20 !important;
  clear: both !important;
  margin-left: -50px !important;
}

.vehicle-price {
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  color: #00e5ff !important;
  text-shadow: 0 0 5px rgba(0, 229, 255, 0.5) !important;
  background: rgba(108, 99, 255, 0.2) !important;
  border: 1px solid rgba(0, 229, 255, 0.3) !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 4px 10px !important;
  border-radius: 4px !important;
}

/* Vehicle actions */
.vehicle-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: auto !important;
  padding-top: 15px !important;
  border-top: 1px solid rgba(108, 99, 255, 0.2) !important;
  position: relative !important;
  z-index: 10 !important;
  justify-content: center !important;
  width: 100% !important;
}

/* Add a subtle glow to the action section */
.vehicle-actions::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(108, 99, 255, 0) 0%, rgba(108, 99, 255, 0.5) 50%, rgba(108, 99, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vehicle-card:hover .vehicle-actions::before {
  opacity: 1;
}

.vehicle-actions .btn {
  flex: 1;
  min-width: 100px;
  padding: 8px 12px;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Add button shine effect */
.vehicle-actions .btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.6s ease;
}

.vehicle-actions .btn:hover::after {
  opacity: 1;
  transform: rotate(45deg) translate(100%, 100%);
}

.vehicle-actions .btn-primary {
  background: linear-gradient(135deg, #6c63ff 0%, #3a36b1 100%);
  border: 1px solid #6c63ff;
  color: white;
  box-shadow: 0 0 10px rgba(108, 99, 255, 0.3);
}

.vehicle-actions .btn-primary:hover {
  background: linear-gradient(135deg, #7c73ff 0%, #4a46c1 100%);
  box-shadow: 0 0 15px rgba(108, 99, 255, 0.5);
  transform: translateY(-2px);
}

.vehicle-actions .btn-outline {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(108, 99, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.vehicle-actions .btn-outline:hover {
  background: rgba(108, 99, 255, 0.1);
  border-color: rgba(108, 99, 255, 0.5);
  color: white;
  transform: translateY(-2px);
}

/* Dropdown for more actions */
.vehicle-actions-dropdown {
  position: relative;
}

.more-actions-btn {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(108, 99, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 38px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
}

/* Hover functionality removed as requested */

/* Dropdown menu positioning and styling */
.vehicle-actions-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 100%;
  margin-bottom: 5px;
  max-height: none;
  overflow: visible;
  z-index: 1500;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(108, 99, 255, 0.2);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 4px;
  background: rgba(25, 25, 40, 0.95);
  width: 200px;
  padding: 5px 0;
  transform: translateX(-50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 576px) {
  .dropdown-menu {
    width: 250%;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .dropdown-menu {
    width: 220%;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .dropdown-menu {
    width: 180%;
  }
}

@media (min-width: 993px) {
  .dropdown-menu {
    width: 160%;
  }
}

.dropdown-menu.show {
  display: block;
  animation: fadeInDropdown 0.2s ease forwards;
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Dropdown menu items */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: visible;
  white-space: normal;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.5;
  text-align: left;
}

.dropdown-item:hover {
  background: rgba(108, 99, 255, 0.1);
  color: white;
  text-decoration: none;
  padding-left: 16px;
}

.dropdown-item i {
  color: rgba(108, 99, 255, 0.8);
  width: 16px;
  text-align: center;
  transition: all 0.2s ease;
}

.dropdown-item:hover i {
  color: rgba(108, 99, 255, 1);
  transform: scale(1.1);
}

/* Add a subtle line indicator on hover */
.dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: rgba(108, 99, 255, 0.8);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.dropdown-item:hover::before {
  transform: scaleY(1);
}

/* For cards in the bottom row, show dropdown above */
.vehicle-card:nth-last-child(-n+3) .dropdown-menu {
  bottom: 100%;
  top: auto;
}

/* For cards not in the bottom row, show dropdown below */
.vehicle-card:not(:nth-last-child(-n+3)) .dropdown-menu {
  top: 100%;
  bottom: auto;
  margin-top: 5px;
  margin-bottom: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(108, 99, 255, 0.2);
}

/* Ensure the dropdown menu is centered with the car card */
.vehicle-card .vehicle-actions-dropdown {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: visible;
}

/* Make the dropdown button take full width of its container */
.vehicle-card .more-actions-btn {
  width: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(108, 99, 255, 0.1);
  color: white;
}

.dropdown-item i {
  color: rgba(108, 99, 255, 0.8);
  width: 16px;
  text-align: center;
}

/* Status badges */
.status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.status-badge.pending {
  background: rgba(255, 152, 0, 0.8);
  color: white;
}

.status-badge.sold {
  background: rgba(244, 67, 54, 0.8);
  color: white;
}

.status-badge.rental {
  background: rgba(33, 150, 243, 0.8);
  color: white;
}

.featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  background: rgba(156, 39, 176, 0.8);
  color: white;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.blockchain-verified {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 4px 8px;
  background: rgba(0, 200, 83, 0.8);
  color: white;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Vehicle Grid Layout */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.vehicle-grid-container {
  padding: 20px;
  background: rgba(15, 15, 25, 0.7);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(108, 99, 255, 0.2);
}

.vehicle-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(108, 99, 255, 0.2);
  padding-bottom: 15px;
}

.vehicle-grid-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  text-shadow: 0 0 10px rgba(108, 99, 255, 0.3);
  margin: 0;
}

.vehicle-grid-actions {
  display: flex;
  gap: 10px;
}

.vehicle-grid-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-item {
  background: rgba(25, 25, 40, 0.8);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-item i {
  color: rgba(108, 99, 255, 0.8);
}

.filter-item.active {
  background: rgba(108, 99, 255, 0.2);
  border-color: rgba(108, 99, 255, 0.5);
  color: white;
}

.vehicle-grid-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 20px;
  background: rgba(25, 25, 40, 0.5);
  border-radius: 8px;
  border: 1px dashed rgba(108, 99, 255, 0.3);
}

.vehicle-grid-empty i {
  font-size: 3rem;
  color: rgba(108, 99, 255, 0.5);
  margin-bottom: 15px;
  display: block;
}

.vehicle-grid-empty h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 10px;
}

.vehicle-grid-empty p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .vehicle-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .vehicle-card {
    min-height: 380px;
  }
}

@media (max-width: 992px) {
  .vehicle-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 15px;
  }
  
  .vehicle-card {
    min-height: 360px;
  }
  
  .vehicle-image-container {
    height: 180px;
  }
  
  .vehicle-title {
    font-size: 1.2rem;
  }
  
  .vehicle-grid-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .vehicle-grid-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .vehicle-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
  }
  
  .vehicle-card {
    min-height: 340px;
  }
  
  .vehicle-actions {
    flex-direction: column;
  }
  
  .vehicle-actions button {
    width: 100%;
  }
  
  .vehicle-actions-dropdown {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
  }
  
  .more-actions-btn {
    background: rgba(0, 0, 0, 0.5);
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  
  .vehicle-grid-filters {
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 15px;
    flex-wrap: nowrap;
  }
  
  .filter-item {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
  
  .vehicle-card {
    min-height: auto;
  }
  
  .vehicle-specs {
    flex-direction: column;
    gap: 5px;
  }
  
  .vehicle-grid-container {
    padding: 15px 10px;
  }
}

.vehicle-card .vehicle-price {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00ffcc;
}

.vehicle-card .vehicle-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.vehicle-card .vehicle-btn {
  flex: 1;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
}

/* Orientation-specific styles */
@media screen and (orientation: landscape) {
  /* Landscape-specific vehicle card layout */
  .vehicle-grid {
    display: grid;
    gap: 20px;
  }
  
  /* Special case for small height landscape (mobile phones) */
  @media (max-height: 500px) {
    .vehicle-card {
      display: grid;
      grid-template-columns: 120px 1fr;
      height: auto;
    }
    
    .vehicle-card .vehicle-image {
      height: 100%;
      border-bottom: none;
      border-right: 1px solid rgba(108, 99, 255, 0.2);
    }
    
    .vehicle-card .vehicle-content {
      padding: 10px;
    }
    
    .vehicle-card .vehicle-title {
      font-size: 1.1rem;
      margin-bottom: 5px;
    }
    
    .vehicle-card .vehicle-meta {
      margin-bottom: 8px;
      font-size: 0.8rem;
      flex-wrap: wrap;
      gap: 8px;
    }
    
    .vehicle-card .vehicle-price {
      font-size: 1rem;
      margin-bottom: 8px;
    }
    
    .vehicle-card .vehicle-actions {
      gap: 5px;
    }
    
    .vehicle-card .vehicle-btn {
      padding: 5px 10px;
      font-size: 0.8rem;
    }
  }
}

@media screen and (orientation: portrait) {
  /* Portrait-specific vehicle card layout */
  .vehicle-grid {
    display: grid;
    gap: 20px;
  }
  
  .vehicle-card {
    height: 100%;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .vehicle-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .vehicle-card .vehicle-image {
    height: 180px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
  .vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .vehicle-card .vehicle-image {
    height: 170px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vehicle-card .vehicle-image {
    height: 160px;
  }
  
  .vehicle-card .vehicle-title {
    font-size: 1.3rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .vehicle-card .vehicle-image {
    height: 140px;
  }
  
  .vehicle-card .vehicle-title {
    font-size: 1.2rem;
  }
  
  .vehicle-card .vehicle-meta {
    gap: 10px;
    font-size: 0.8rem;
    flex-wrap: wrap;
  }
  
  .vehicle-card .vehicle-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .vehicle-card .vehicle-btn {
    width: 100%;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .vehicle-card .vehicle-image {
    height: 180px;
  }
  
  .vehicle-card .vehicle-title {
    font-size: 1.2rem;
  }
  
  .vehicle-card .vehicle-meta {
    gap: 10px;
    font-size: 0.8rem;
    flex-wrap: wrap;
  }
  
  .vehicle-card .vehicle-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .vehicle-card .vehicle-btn {
    width: 100%;
  }
}

/* Touch device optimizations */
@media (hover: none) {
  .vehicle-card {
    cursor: pointer;
  }
  
  .vehicle-card:hover {
    transform: none;
  }
  
  .vehicle-card:active {
    transform: translateY(-2px);
  }
  
  .vehicle-card .vehicle-btn {
    padding: 12px 15px; /* Larger touch targets */
  }
}
