/* Desktop */
@media (min-width: 769px) {
  .header__row {
    justify-content: space-between;
  }

  .logo {
    order: 0;
    margin-right: auto;
  }

  .logo img {
    max-height: 120px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .header__row {
    justify-content: center; /* centraliza o conteúdo */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
  }

  .logo {
    order: 0; /* deixar logo como primeiro */
    margin: 0 auto; /* centraliza */
  }

  .logo img {
    max-height: 60px !important;
  }

  .menu > ul > li > a {
    font-size: 12px !important;
    padding: 0 8px !important;
  }

  .header__search input {
    height: 28px;
    font-size: 12px;
    padding: 4px 8px;
    max-width: 120px;
  }

  .header__user-area {
    font-size: 12px;
    gap: 4px;
  }

  .header__cart {
    margin-left: 5px !important;
  }

  .header__row > * {
    margin-right: 8px;
  }
}
