/* purgecss start ignore */

/* Modern Filter System */
.filter-container[data-v-ef888ba0] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 30px;
}
.filter-header[data-v-ef888ba0] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
}
.filter-title[data-v-ef888ba0] {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.filter-count[data-v-ef888ba0] {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.filter-pills[data-v-ef888ba0] {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.filter-pill[data-v-ef888ba0] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #495057;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}
.filter-pill[data-v-ef888ba0]:hover {
  background: #e9ecef;
  border-color: #dee2e6;
  transform: translateY(-1px);
}
.filter-pill--active[data-v-ef888ba0] {
  background: #cc0000;
  border-color: #cc0000;
  color: white;
}
.filter-pill--active[data-v-ef888ba0]:hover {
  background: #a00000;
  border-color: #a00000;
}
.filter-count-badge[data-v-ef888ba0] {
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
.filter-pill--active .filter-count-badge[data-v-ef888ba0] {
  background: rgba(255, 255, 255, 0.3);
}
.filter-pill:not(.filter-pill--active) .filter-count-badge[data-v-ef888ba0] {
  background: #dee2e6;
  color: #6c757d;
}
.active-filters[data-v-ef888ba0] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #e5e5e5;
}
.active-filters-label[data-v-ef888ba0] {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
}
.active-filter-tags[data-v-ef888ba0] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.active-filter-tag[data-v-ef888ba0] {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #ffeaea;
  border: 1px solid #ffcccc;
  border-radius: 16px;
  font-size: 13px;
  color: #cc0000;
  cursor: pointer;
  transition: all 0.2s ease;
}
.active-filter-tag[data-v-ef888ba0]:hover {
  background: #ffcccc;
  border-color: #ffaaaa;
}
.active-filter-tag svg[data-v-ef888ba0] {
  width: 12px;
  height: 12px;
  opacity: 0.7;
}
.active-filter-tag:hover svg[data-v-ef888ba0] {
  opacity: 1;
}

/* Responsive Filter Design */
@media (max-width: 768px) {
.filter-container[data-v-ef888ba0] {
    padding: 0 15px;
}
.filter-header[data-v-ef888ba0] {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.filter-pills[data-v-ef888ba0] {
    gap: 8px;
}
.filter-pill[data-v-ef888ba0] {
    padding: 8px 12px;
    font-size: 13px;
}
.active-filters[data-v-ef888ba0] {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
}

/* Custom Grid Container */
.vehicles-container[data-v-ef888ba0] {
  position: relative;
  margin: 40px 0;
  padding: 0 20px;
}
.vehicles-grid[data-v-ef888ba0] {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Center cards when there are few items */
.vehicles-grid.center-items[data-v-ef888ba0] {
  justify-content: center;
  overflow-x: visible;
}
.vehicles-grid[data-v-ef888ba0]::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Vehicle Card Styles */
.vehicle-card[data-v-ef888ba0] {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.vehicle-card[data-v-ef888ba0]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.vehicle-image-container[data-v-ef888ba0] {
  position: relative;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}
.vehicle-image[data-v-ef888ba0] {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Badges */
.vehicle-badges[data-v-ef888ba0] {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge[data-v-ef888ba0] {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.badge-condition[data-v-ef888ba0] {
  background-color: #333;
  color: white;
}
.badge-latest[data-v-ef888ba0] {
  background-color: #22c55e;
  color: white;
}

/* Favorite Icon */
.vehicle-favorite[data-v-ef888ba0] {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.vehicle-favorite[data-v-ef888ba0]:hover {
  background: white;
}
.vehicle-favorite svg[data-v-ef888ba0] {
  color: #666;
  transition: all 0.2s ease;
}
.vehicle-favorite.is-saved svg[data-v-ef888ba0] {
  color: #333;
  fill: #333;
}
.vehicle-favorite.is-saved[data-v-ef888ba0] {
  background: rgba(255, 255, 255, 1);
}

/* Vehicle Details */
.vehicle-details[data-v-ef888ba0] {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Price Section */
.price-and-favorite[data-v-ef888ba0] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.price-content[data-v-ef888ba0] {
  flex: 1;
}
.price-section[data-v-ef888ba0] {
  margin-bottom: 0;
}

/* Inline Heart Icon */
.vehicle-favorite-inline[data-v-ef888ba0] {
  width: 32px;
  height: 32px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 12px;
  flex-shrink: 0;
}
.vehicle-favorite-inline[data-v-ef888ba0]:hover {
  background: #e9ecef;
  border-color: #dee2e6;
}
.vehicle-favorite-inline svg[data-v-ef888ba0] {
  color: #666;
  transition: all 0.2s ease;
}
.vehicle-favorite-inline.is-saved[data-v-ef888ba0] {
  background: #cc0000;
  border-color: #cc0000;
}
.vehicle-favorite-inline.is-saved svg[data-v-ef888ba0] {
  color: white;
  fill: white;
}
.vehicle-favorite-inline.is-saved[data-v-ef888ba0]:hover {
  background: #a00000;
  border-color: #a00000;
}
.was-price[data-v-ef888ba0] {
  font-size: 14px;
  color: #666;
  margin-bottom: 2px;
}
.strikethrough[data-v-ef888ba0] {
  text-decoration: line-through;
}
.current-price[data-v-ef888ba0] {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
}
.weekly-price[data-v-ef888ba0] {
  font-size: 14px;
  color: #666;
}

/* Vehicle Title */
.vehicle-title[data-v-ef888ba0] {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Vehicle Specifications */
.vehicle-specs[data-v-ef888ba0] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.spec-item[data-v-ef888ba0] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
}
.spec-icon[data-v-ef888ba0] {
  color: #999;
  flex-shrink: 0;
}

/* Action Buttons */
.vehicle-actions[data-v-ef888ba0] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.action-buttons-row[data-v-ef888ba0] {
  display: flex;
  gap: 8px;
}
.action-btn[data-v-ef888ba0] {
  flex: 1;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.action-btn.secondary[data-v-ef888ba0] {
  background: white;
  border: 1px solid #ddd;
  color: #666;
}
.action-btn.secondary[data-v-ef888ba0]:hover {
  background: #f5f5f5;
  border-color: #ccc;
}
.action-btn.primary[data-v-ef888ba0] {
  color:#fff!important;
  background: #333;
  border: 1px solid #333;
  color: white;
}
.action-btn.primary[data-v-ef888ba0]:hover {
  background: #555;
  border-color: #555;
}
.add-to-cart-btn[data-v-ef888ba0] {
  width: 100%;
  padding: 12px;
  background: white;
  border: 2px solid #333;
  color: #333;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.add-to-cart-btn[data-v-ef888ba0]:hover {
  background: #333;
  color: white;
}

/* Navigation Arrows */
.nav-arrow[data-v-ef888ba0] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}
.nav-arrow[data-v-ef888ba0]:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}
.nav-arrow-left[data-v-ef888ba0] {
  left: 10px;
}
.nav-arrow-right[data-v-ef888ba0] {
  right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
.vehicles-container[data-v-ef888ba0] {
    padding: 0 10px;
}
.vehicles-grid[data-v-ef888ba0] {
    gap: 15px;
}
.vehicle-card-wrapper[data-v-ef888ba0] {
    flex: 0 0 280px;
    min-width: 280px;
}
.vehicle-specs[data-v-ef888ba0] {
    grid-template-columns: 1fr;
}
.action-buttons-row[data-v-ef888ba0] {
    flex-direction: column;
}
.nav-arrow[data-v-ef888ba0] {
    width: 35px;
    height: 35px;
}
.nav-arrow-left[data-v-ef888ba0] {
    left: -5px;
}
.nav-arrow-right[data-v-ef888ba0] {
    right: -5px;
}
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 959px) {
.vehicle-card-wrapper[data-v-ef888ba0] {
    flex: 0 0 320px;
    min-width: 320px;
}
}
@media (min-width: 960px) {
.vehicle-card-wrapper[data-v-ef888ba0] {
    flex: 0 0 400px;
    min-width: 400px;
}
}

/* purgecss end ignore */

