.info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 15px;
  background: var(--background-color);
  color: var(--font-color);
  font-size: 1.3rem;
}

/* Lewa sekcja - linki w jednej linii */
.info-bar__left {
  display: flex;
  gap: 15px;
  flex-grow: 0;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap; /* Zapobiega zawijaniu tekstu */
}

/* Środkowa sekcja - nie wypycha innych elementów */
.info-bar__text {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  flex-grow: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Prawa sekcja */
.info-bar__right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-grow: 0;
  justify-content: flex-end;
}

/* Numery telefonów */
.info-bar__phones {
  display: flex;
  gap: 15px;
}

.info-bar__phone {
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  color: var(--font-color);
  transition: opacity 0.2s;
}

.info-bar__phone:hover {
  opacity: 0.8;
}

.info-bar__phone-label {
  font-size: 1.1rem;
  color: #f0f0f0;
  font-weight: 500;
}

.info-bar__phone-number {
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Linki "Porady" i "Kontakt" */
.info-bar__link {
  text-decoration: none;
  color: var(--font-color);
  transition: opacity 0.2s;
  white-space: nowrap;
}

.info-bar__link:hover {
  opacity: 0.8;
}

@media (max-width: 978px) {
  .info-bar {
    flex-direction: column;
    text-align: center;
  }

  /* Umieszczenie info-bar__text na górze */
  .info-bar__text {
    order: -1;
    margin-bottom: 10px;
  }

  /* Ukrywamy linki "O nas" i "Nowości" na mobile */
  .info-bar__left a:not([href*="stocks.html"]) {
    display: none;
  }

  /* Nowa struktura dla mobile: Showroom po lewej, telefony po prawej */
  .info-bar__mobile-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 15px;
  }

  /* Showroom po lewej */
  .info-bar__left {
    display: flex;
    justify-content: flex-start;
    flex: 1;
  }

  /* Numery telefonów po prawej */
  .info-bar__phones {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 15px;
    flex: 1;
  }

  /* Każdy telefon ma tekst nad numerem */
  .info-bar__phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}