/* Esconde o cabeçalho original da Loja Integrada */
  height: 46px;
  width: 56px;
  border: none;
  background: #ffd400;
  font-size: 20px;
  cursor: pointer;
  border-radius: 0 10px 10px 0;
}

/* Ações */
.ng-actions {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}

.ng-actions a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.ng-actions a:hover {
  color: #ffd400;
}

/* Menu */
.ng-menu {
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ng-menu-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 12px 15px;
  flex-wrap: wrap;
}

.ng-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.ng-menu a:hover {
  color: #ffd400;
}

/* Responsivo */
@media (max-width: 768px) {
  .ng-header-row {
    flex-direction: column;
    gap: 16px;
  }

  .ng-logo {
    text-align: center;
  }

  .ng-logo img {
    max-height: 52px;
  }

  .ng-search {
    width: 100%;
  }

  .ng-actions {
    width: 100%;
    justify-content: center;
    gap: 16px;
  }

  .ng-menu-links {
    gap: 16px;
    font-size: 13px;
  }
}