
/* 🎨 Moderní vzhled horní navigace */
.top-navigation-bar {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px;
  padding: 10px 0;
}

/* 📞📧 Kontakty */
.top-navigation-contacts {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-navigation-bar strong {
  color: #111;
  margin-right: 6px;
}

.top-navigation-bar a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  margin-left: 8px;
}

.top-navigation-contacts a::before {
  font-family: "FontAwesome";
  margin-right: 5px;
  color: #c30a07;
}

.project-phone::before {
  content: "\f095"; /* telefon */
}

.project-email::before {
  content: "\f0e0"; /* obálka */
}

/* 🛒 Menu odkazy s ikonami */
.top-navigation-bar-menu {
  display: flex;
  gap: 20px;
}

.top-navigation-bar-menu li a {
  font-weight: 500;
  color: #222;
}

.top-navigation-bar-menu li a::before {
  font-family: "FontAwesome";
  margin-right: 6px;
  color: #c30a07;
}

.top-navigation-menu-item-27 a::before {
  content: "\f07a"; /* nákupní košík */
}

.top-navigation-menu-item-39 a::before {
  content: "\f15c"; /* dokument */
}

/* 👤 Přihlášení tlačítko */
.top-nav-button-login {
  background: #c30a07;
  color: white !important;
  border-radius: 4px;
  padding: 6px 12px;
  transition: background 0.3s ease, color 0.3s ease;
}

.top-nav-button-login span::before {
  font-family: "FontAwesome";
  content: "\f007"; /* uživatel */
  margin-right: 6px;
  display: inline-block;
  color: white;
  transition: color 0.3s ease;
}

.top-nav-button-login:hover {
  background: #a30905;
  color: #000 !important;
}

.top-nav-button-login:hover span::before {
  color: #000;
}

/* === Responzivní úpravy pro menší obrazovky === */
@media (max-width: 767px) {
  .top-navigation-bar {
    font-size: 14px;
    padding: 8px 0;
  }

  .top-navigation-contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .top-navigation-bar-menu {
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }

  .top-navigation-bar-menu li a::before {
    display: inline-block;
  }

  .top-nav-button-login {
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }

  .top-nav-button-login span::before {
    font-size: 16px;
  }

  .top-navigation-tools .responsive-tools {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }

  .top-navigation-menu {
    margin-top: 10px;
  }

  /* ❌ Skrytí méně důležitých položek na mobilech */
  .top-navigation-menu-item-27,  /* Jak nakupovat */
  .top-navigation-menu-item-39 { /* Obchodní podmínky */
    display: none;
  }
}
.top-navigation-menu-item-29 a::before {
  font-family: "FontAwesome";
  content: "\f017"; /* Font Awesome ikona hodin */
  margin-right: 6px;
  color: #c30a07; /* stejná červená jako ostatní */
  display: inline-block;
}
