/* Estilos mínimos ajustados */

/* Estilos para elementos de navegação e botões */
.fp-voltar,
.fp-back,
.voltar,
.back {
  font-size: 1.3rem !important;
  color: #fff !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 16px !important;
  transition: color 0.2s ease !important;
}

.fp-voltar:hover,
.fp-back:hover,
.voltar:hover,
.back:hover {
  color: #bdbdbd !important;
}

/* Estilos para títulos e cabeçalhos */
.fp-page-title,
.fp-title,
h1,
h2,
h3 {
  font-weight: 600 !important;
  color: #fff !important;
  margin-bottom: 24px !important;
}

.fp-favorito-botao {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background-color 0.2s ease;
  padding: 0;
  margin: 0;
}

.fp-favorito-botao:hover {
  background: #161616;
}

.fp-favorito-botao svg {
  pointer-events: none;
  color: white;
  transition: color 0.2s ease, transform 0.2s ease;
}

.fp-favorito-botao svg.ativo {
  color: #4caf50 !important;
}

.fp-favoritos-lista {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 16px;
  color: white;
}

.fp-lista-container {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.fp-lista-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 16px;
  align-items: center;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  transition: background 0.2s ease;
}

.fp-lista-item:hover {
  background: #1a1a1a;
}

.fp-lista-item img {
  width: 100px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
  background: #1d1d1d;
}

.fp-lista-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fp-lista-item-info strong {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2px;
}

.fp-lista-item-info em {
  color: #bdbdbd;
  font-size: 1.2rem;
}

.fp-lista-item-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 1.2rem;
  color: #e6e6e6;
}

.fp-lista-item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fp-lista-item-remover {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  color: white;
  transition: all 0.2s ease;
}

.fp-lista-item-remover:hover {
  background: rgba(178, 30, 30, 0.15);
  border-color: rgba(178, 30, 30, 0.3);
  color: #ff5555;
}

.fp-lista-item-remover svg {
  display: block;
}

.fp-quantidade {
  font-size: 18px;
  padding: 8px 12px;
  color: white !important;
  background-color: #1c1c1c !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  width: 70px;
  text-align: center;
}

.fp-quantidade:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.15);
}

.fp-total-preco {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 16px;
}

.fp-total-preco span {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.fp-total-preco {
  font-size: 1.3rem;
}

.fp-favoritos-lista > h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  font-weight: 600;
}

.fp-reset-favoritos {
  background-color: rgba(178, 30, 30, 0.15);
  border: 1px solid rgba(178, 30, 30, 0.3);
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ff5555;
  cursor: pointer;
  display: inline-block;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.fp-reset-favoritos:hover {
  background-color: rgba(178, 30, 30, 0.25);
  border-color: rgba(178, 30, 30, 0.5);
}
