/* ---- START: Finální oprava hlavičky v6 (s košíkem) ---- */

@media (max-width: 991px) {
  
  /* Prevent flickering by hiding elements that will be moved or removed.
     We hide the whole contact block and the old search bar. */
  .search-in-header,
  .header-contact,
  .header-phone,
  .header-bottom .text-right { /* Hide container where cart was */
    display: none !important;
  }
  
  /* This is the final state after JavaScript finishes its job and adds the class. */
  
  /* Hide the now-empty original containers */
  body.mobil-hlavicka-hotova .header-bottom {
    display: none !important;
  }
  
  /* Style the main top bar which now holds everything */
  body.mobil-hlavicka-hotova .header-top {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    padding: 0 10px;
    position: relative;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
  }

  /* --- Element Styling --- */
  
  /* MENU (Left) */
  body.mobil-hlavicka-hotova .main-menu-trigger {
    order: 1; /* First item */
    position: static !important;
  }
  body.mobil-hlavicka-hotova .main-menu-trigger .menu-label { display: none !important; }
  body.mobil-hlavicka-hotova .main-menu-trigger .fa-bars { font-size: 26px !important; }

  /* LOGO (Center) */
  body.mobil-hlavicka-hotova .logo {
    order: 2; /* Second item */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  body.mobil-hlavicka-hotova .logo img { max-height: 45px !important; }

  /* ICONS (Right) */
  body.mobil-hlavicka-hotova .header-top-right {
    order: 3; /* Third item */
    position: static !important;
    display: flex !important;
    align-items: center;
  }
  /* Style all icons inside the right container uniformly */
  body.mobil-hlavicka-hotova .header-top-right a {
    font-size: 26px !important;
    padding: 0 6px; /* Space between icons */
    color: #333 !important;
  }
  /* Ensure the cart fits in with the other icons */
  body.mobil-hlavicka-hotova .header-top-right .cart-widget {
    margin-left: 6px;
  }
}

/* ---- END: Finální oprava hlavičky ---- */