/* Popup stile coerente */
.vehica-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all .25s ease;
  font-family: inherit;
}
.vehica-popup.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.vehica-popup__inner {
  background: #fff;
  color: #111;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
}
.vehica-popup__icon { font-size: 22px; color: #1fb141; }
.vehica-popup__title { font-weight: 600; font-size: 15px; }
.vehica-popup__text { font-size: 13px; opacity: .85; }
.vehica-popup__close {
  margin-left: auto;
  font-size: 20px;
  background: transparent;
  border: 0;
  color: inherit;
  line-height: 1;
  cursor: pointer;
}

/* Blocca “Pubblica” durante l’upload */
body.vehica-uploading .vehica-car-form__save-submit .vehica-button {
  pointer-events: none !important;
  opacity: .6;
  filter: saturate(.7);
}

/* Micro feedback se dropzone occupata (opzionale) */
.vehica-dropzone.is-busy { opacity: .6; pointer-events: none; }
