/* ============================================
   NAVIGATION PAR CHIPS - VEHICULES
   ============================================ */

.vehicles-nav-chips {
  display: flex;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid #e2e8f0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.vehicles-nav-chips::-webkit-scrollbar {
  display: none;
}

.vehicles-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.vehicles-chip:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #374151;
}

.vehicles-chip:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.vehicles-chip.active {
  background: linear-gradient(135deg, var(--primary, #D4AF37), #b8960c);
  border-color: transparent;
  color: white;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.vehicles-chip i {
  font-size: 1rem;
}

.vehicles-chip.active i {
  color: white;
}

/* Badge de notification sur les chips */
.chip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: #ef4444;
  color: white;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 4px;
}

.vehicles-chip.active .chip-badge {
  background: white;
  color: var(--primary, #D4AF37);
}

/* Sous-sections */
.vehicles-subsection {
  animation: fadeInSection 0.3s ease;
}

.subsection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.subsection-description {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

@keyframes fadeInSection {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 640px) {
  .vehicles-nav-chips {
    padding: 12px 16px;
    gap: 8px;
  }

  .vehicles-chip {
    padding: 10px 16px;
    font-size: 0.9rem;
    flex: 1;
    justify-content: center;
  }

  .subsection-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .subsection-header .btn-premium {
    width: 100%;
  }
}
