/*!
 * Don Geppi Restaurant - Mobile Order Layout
 * Copyright (c) 2025 Manolo De Angelis - Mdaweb
 * All rights reserved.
 */

/* CSS MINIMO - Solo inverte ordine e centra testo, NON tocca dimensioni */

@media (max-width: 768px) {
  /* Solo se il parent contiene sia firma che chef */
  .blocco-custom:has(#firma):has(#chef) {
    display: flex !important;
    flex-direction: column !important;
    /* Mantiene tutte le altre proprietà esistenti */
  }
  
  /* Inverti ordine: chef prima */
  #chef {
    order: -1;
  }
  
  /* Centra solo il testo in firma */
  #firma {
    text-align: center;
  }
}