.alergenos-button {
  display: flex;
  align-items: center;
  gap: 8px;
  color: orange;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.alergenos-icon {
  font-size: 1.3rem;
  font-weight: bold;
}

.alergenos-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.alergenos-popup-content {
  background-color: #222;
  padding: 20px;
  border-radius: 12px;
  color: white;
  max-width: 80%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  text-align: center;
}

.alergenos-popup-content h3 {
  margin-bottom: 10px;
}

.alergenos-popup-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.alergenos-popup-list li {
  font-size: 1rem;
  margin-bottom: 6px;
}

.alergenos-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
}
