/* Horní kontaktní lišta */
#np-contact-bar {
  width: 100%;
  background: #f4d1d3;
  border-top: 5px solid #292929;
  color: #111111;
  font-size: 14px;
  position: relative;
  z-index: 50;
}

#np-contact-bar .np-contact-inner {
  max-width: 1170px;
  min-height: 35px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#np-contact-bar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #111111 !important;
  text-decoration: none !important;
  font-weight: 500;
}

#np-contact-bar a:hover {
  text-decoration: underline !important;
}

#np-contact-bar svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

/* Viditelné vyhledávací pole */
.np-header-search {
  width: 100%;
  max-width: 370px;
  height: 46px;
  margin: 0 !important;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid #ece8e6;
  border-radius: 25px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.np-header-search:focus-within {
  border-color: #d9aaa8;
  box-shadow: 0 0 0 3px rgba(217, 170, 168, 0.16);
}

.np-header-search input[type="search"] {
  flex: 1;
  min-width: 0;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 8px 0 19px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #111111 !important;
  font-size: 14px !important;
  outline: none !important;
}

.np-header-search input::placeholder {
  color: #777777;
  opacity: 1;
}

.np-header-search button {
  width: 52px;
  height: 44px;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: 0 !important;
  color: #111111 !important;
  cursor: pointer;
}

.np-header-search button:hover {
  background: #f7eeee !important;
}

.np-header-search button svg {
  width: 21px;
  height: 21px;
}

/* Rozložení hlavičky na počítači */
@media (min-width: 992px) {
  #header .header-top-wrapper > .site-name {
    order: 1;
  }

  #header .header-top-wrapper > .navigation-tools {
    order: 2;
    align-self: stretch;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #header .header-top-wrapper > .navigation-buttons {
    order: 3;
  }

  #header .header-top-wrapper > .user-action {
    order: 4;
  }
}

/* Mobil – zůstane původní ikona hledání */
@media (max-width: 991px) {
  .np-header-search {
    display: none !important;
  }

  #np-contact-bar {
    font-size: 12px;
  }

  #np-contact-bar .np-contact-inner {
    min-height: 34px;
    gap: 10px;
    padding: 0 10px;
  }

  #np-contact-bar .np-contact-label {
    display: none;
  }

  #np-contact-bar svg {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }
}
