/* ====== FINÁLNÍ OPRAVENÝ KÓD ====== */
#header-placeholder {
    display: none;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

@media (min-width: 992px) {
    #header-placeholder {
      display: block;
      background-color: #fff;
    }
    
    #header-placeholder .placeholder-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
    }

  /* --- Horní lišta --- */
    #header-placeholder .placeholder-top-bar {
      height: 48.04px;
      background-color: #f8f8f8;
      border-bottom: 1px solid #e0e0e0;
      font-size: 14px;
      font-weight: 600;
    }
    #header-placeholder .placeholder-top-bar .placeholder-container {
      justify-content: space-between;
      height: 100%;
      padding: 0 15px;
    }
    #header-placeholder .placeholder-top-contacts {
      display: flex;
      align-items: center;
      gap: 15px;
      white-space: nowrap;
    }
    #header-placeholder .placeholder-top-contacts a {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: #333;
    }
    #header-placeholder .placeholder-top-contacts a svg { color: #e50000; }
    
    /* --- OPRAVA PŘIHLÁŠENÍ (PROTI VERTIKÁLNÍMU SKÁKÁNÍ) --- */
    #header-placeholder .placeholder-top-tools-wrapper {
      display: flex;
      justify-content: flex-end;
    }
    #header-placeholder .placeholder-top-tool-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      padding: 8px 12px;
      border-radius: 5px;
      background-color: #e50000;
      color: #fff !important;
      border: 1px solid #e50000;
      white-space: nowrap;
    }
    #header-placeholder .placeholder-top-tools-logged-in {
      display: none;
      align-items: center;
      gap: 15px;
    }
    /* Sjednocení vzhledu odkazu a tlačítka, aby měly stejnou výšku */
    #header-placeholder .placeholder-top-tools-logged-in a {
        text-decoration: none;
        color: #333;
        font-weight: 700;
        padding: 8px 12px; /* Důležité pro stejnou výšku */
    }
    /* Speciální styl pro tlačítko "Odhlásit se" */
    #header-placeholder .placeholder-top-tools-logged-in .placeholder-top-tool-btn {
        color: #fff !important;
    }
    #header-placeholder .placeholder-top-tools-logged-out {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    body.user-logged-in #header-placeholder .placeholder-top-tools-logged-out { display: none; }
    body.user-logged-in #header-placeholder .placeholder-top-tools-logged-in { display: flex; }
    /* --- KONEC OPRAVY PŘIHLÁŠENÍ --- */
    
  /* --- Druhá lišta --- */
    #header-placeholder .placeholder-secondary-bar {
      height: 34.88px;
      background-color: #fff;
      border-bottom: 1px solid #f0f0f0;
      font-size: 13px;
      font-weight: 600;
    }
    #header-placeholder .placeholder-secondary-bar .placeholder-container {
      justify-content: center;
      gap: 5px;
      height: 100%;
    }
    #header-placeholder .placeholder-secondary-bar a {
      color: #333;
      text-decoration: none;
      padding: 8px 10px;
    }
  /* --- Hlavní část --- */
    #header-placeholder .placeholder-main-header {
      height: 122px;
    }
    #header-placeholder .placeholder-main-header .placeholder-container {
      gap: 15px;
      padding: 15px 15px;
      height: 100%;
    }
    #header-placeholder .placeholder-logo-wrapper {
      margin-left: 10px;
    }
    #header-placeholder .placeholder-logo-wrapper img {
      width: 379px;
      height: 92px;
      display: block;
    }
    #header-placeholder .placeholder-search-form {
      display: flex;
      flex-grow: 1;
      height: 60px;
      max-width: 500px;
      margin-left: -15px;
    }
    #header-placeholder .placeholder-search-form input {
      flex-grow: 1;
      border: 1px solid #ccc;
      border-right: none;
      padding: 0 20px;
      font-size: 16px;
      height: 54px;
      margin-top: 6px;
      border-radius: 0;
    }
    #header-placeholder .placeholder-search-form button {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background-color: #e50000;
      color: white;
      border: 1px solid #e50000;
      padding: 0 25px;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      height: 54px;
      margin-top: 6px;
      border-radius: 0 8px 8px 0;
    }
    .admin-bar + #header-placeholder {
        padding-top: 25px; /* Výška vaší admin lišty */
    }
  /* --- Hlavní navigace --- */
    #header-placeholder .placeholder-navigation {
      height: 57.65px;
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      border-top: 1px solid #f0f0f0;
      font-size: 15px;
      text-transform: uppercase;
      font-weight: 700;
    }
    #header-placeholder .placeholder-navigation .placeholder-container {
        justify-content: center;
        height: 100%;
    }
    #header-placeholder .placeholder-navigation a {
        display: block;
        padding: 18px 20px;
        text-decoration: none;
        color: #333;
    }
}