/*
Theme Name: Astra Child
Template: astra
Author: Arturo Peña
Version: 1.0
*/
/* ---- ASTRA: Encabezado ---- */

/* ===== Encabezado hover ===== */

/* --- Header responsive Pet Boutique --- */

/* Ajuste de header en móvil */
@media (max-width: 768px) {
  /* Forzamos que todo el header sea un flex container */
  header#masthead .e-con-inner {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo primero */
  header#masthead .hfe-site-logo {
    order: 2;
    flex: 1 1 auto;
  }

  /* Toggle menú (hamburguesa) segundo */
  header#masthead .hfe-nav-menu-icon {
    order: 1;
    margin-left: auto;
  }

  /* Buscador ocupa fila completa */
  header#masthead .hfe-search-submit {
    order: 3;
    flex: 1 1 100%;
    margin-top: 10px;
  }

  /* Carrito último, alineado a la derecha */
  header#masthead .hfe-site-header-cart {
    order: 4;
    margin-left: auto;
  }
}

