body {
  font-family: "Inter", sans-serif;
}

#loader {
  position: fixed;
  inset: 0;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#searchInput:focus {
  outline: none;
}

.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background-color: #2563eb;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: fadeInOut 4s ease forwards;
  font-size: 0.875rem;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  10% {
    opacity: 1;
    transform: translateY(0);
  }

  90% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

#logo {
  background: linear-gradient(135deg, #84fab0, #8fd3f4);

  object-fit: contain;
  background-color: white;
  overflow: visible;
  padding: 0.5rem; /* menor padding = imagem maior */
}

#categorias {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.step {
  transition: all 0.3s ease-in-out;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
