/* ============================================
   48. BOUTON ÉDITION BIEN (liste projets)
   ============================================ */
.property-row-wrap {
  position: relative;
}
.property-edit-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  min-width: 32px;
  padding: 0;
  border-radius: var(--radius-sm);
  background: white;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s, border-color 0.15s, color 0.15s;
}
.property-row-wrap:hover .property-edit-btn {
  opacity: 1;
}
.property-edit-btn:hover {
  border-color: var(--gray-400);
  color: var(--gray-800);
}


/* ============================================
   49. RESPONSIVE — Fiche bien header
   ============================================ */
@media (max-width: 768px) {
  .wizard-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .wizard-detail-row { flex-direction: column; align-items: flex-start; }
  .wizard-detail-right { align-items: flex-start; }

  /* Boutons header fiche bien */
  .property-header-actions {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .property-header-actions form { display: contents; }
  .property-header-actions .btn-text { display: none; }
  .property-header-actions .btn:not(.btn-primary) {
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
    flex-shrink: 0;
  }
  .property-header-actions .btn-primary {
    flex: 1;
    justify-content: center;
  }

  /* Bouton edit bien toujours visible sur mobile */
  .property-edit-btn { opacity: 1; }
}
@media (max-width: 480px) {
  .wizard-cat-grid { grid-template-columns: 1fr 1fr; }
  .wizard-quality-btns { flex-wrap: wrap; }
}

