.vehicles-wrap { max-width: 640px; margin: 0 auto; }
.v-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid rgba(17,17,17,0.1);
  border-radius: 14px;
  padding: 5px;
}
.v-tab {
  flex: 1;
  padding: 9px 8px;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  color: rgba(17,17,17,0.38);
  cursor: pointer;
}
.v-tab.active { background: #ff5a00; color: #fff; }
.v-state { padding: 36px 16px; text-align: center; color: rgba(17,17,17,0.38); }
.v-section {
  font-size: 12px;
  font-weight: 800;
  color: rgba(17,17,17,0.38);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 18px 0 8px 2px;
}
.v-form-card {
  background: #fff;
  border: 1px solid rgba(17,17,17,0.1);
  border-radius: 20px;
  padding: 16px;
}
.v-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.v-field label { font-weight: 800; font-size: 13px; }
.v-field input, .v-field select, .v-field textarea {
  width: 100%;
  padding: 12px;
  border-radius: 11px;
  border: 1px solid rgba(17,17,17,0.1);
  font-size: 14px;
}
.v-hint { font-size: 12px; color: rgba(17,17,17,0.38); min-height: 16px; }
.v-attachments { display: grid; gap: 10px; }
@media (min-width: 540px) { .v-attachments { grid-template-columns: 1fr 1fr; } }
.v-attach { padding: 12px; border: 1px solid rgba(17,17,17,0.1); border-radius: 14px; }
.v-attach-title { font-weight: 900; font-size: 13px; margin-bottom: 8px; }
.v-file-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px;
  border-radius: 12px;
  background: rgba(255,90,0,0.09);
  border: 1px solid rgba(255,90,0,0.2);
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
}
.v-file-label input { display: none; }
.v-file-empty { font-size: 12px; color: rgba(17,17,17,0.38); }
.v-file-item {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(17,17,17,0.1);
  border-radius: 10px;
  margin-top: 4px;
}
.v-file-remove {
  border: 1px solid rgba(17,17,17,0.1);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
}
.v-checks { display: flex; flex-direction: column; gap: 8px; }
.v-check-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(17,17,17,0.1);
  border-radius: 12px;
}
.v-check-title { font-weight: 900; font-size: 13px; }
.v-check-opts { display: inline-flex; gap: 8px; }
.v-radio {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,0.1);
  background: #fff;
  cursor: pointer;
}
.v-btn {
  width: 100%;
  min-height: 49px;
  border-radius: 999px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.v-btn-primary { background: #ff5a00; color: #fff; }
.v-btn:disabled:not(.is-loading) { background: rgba(0,0,0,0.15); cursor: not-allowed; }
.v-spinner {
  display: none;
  width: 1.1em;
  height: 1.1em;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: veh-spin 0.65s linear infinite;
}
.v-btn.is-loading .v-spinner { display: inline-block; }
@keyframes veh-spin { to { transform: rotate(360deg); } }
.v-card.is-locked { cursor: default; opacity: 0.92; border-style: dashed; }
.v-card.is-opening { opacity: 0.72; pointer-events: none; }
.v-card-lock-note { font-size: 11px; color: rgba(17,17,17,0.38); margin-top: 6px; }
.v-modal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 180px;
  padding: 28px 16px;
  text-align: center;
  color: rgba(17,17,17,0.45);
  font-size: 14px;
  font-weight: 700;
}
.v-modal-loading .v-spinner {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(17,17,17,0.12);
  border-top-color: #ff5a00;
}
.v-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(17,17,17,0.4);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.v-modal-overlay[hidden] { display: none !important; }
.v-modal {
  background: #f4f5f7;
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  overflow-y: auto;
}
.v-modal-head {
  position: sticky;
  top: 0;
  background: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(17,17,17,0.1);
}
.v-modal-title { font-size: 17px; font-weight: 900; }
.v-modal-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(17,17,17,0.07);
  border: none;
  cursor: pointer;
}
.v-modal-body { padding: 16px; }
.v-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(17,17,17,0.1);
}
.v-detail-row:last-child { border-bottom: none; }
.v-detail-label { font-size: 13px; color: rgba(17,17,17,0.42); }
.v-detail-val { font-size: 14px; font-weight: 600; text-align: right; max-width: 60%; }
.v-detail-link { color: #ff5a00; font-weight: 700; text-decoration: none; }
.v-status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(31,143,77,0.1);
  color: #1f8f4d;
}
