/* ===== ESTILOS ELEGANTES: BRANCO, LARANJA ÂMBAR NOBRE E CINZA — DR. SAMUEL BARRETO ===== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Scrollbar Refinada em Cinza e Laranja Âmbar */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: #F8FAFC;
}

::-webkit-scrollbar-thumb {
  background: #D95D1E;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #B44610;
}

/* Pílulas de Filtro Ativas em Laranja Âmbar Nobre */
.active-pill {
  background-color: #D95D1E !important;
  color: #FFFFFF !important;
  border-color: #D95D1E !important;
  box-shadow: 0 4px 12px -2px rgba(217, 93, 30, 0.25);
}

/* Estilização dos Detalhes / FAQ */
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}

/* Linha com Clamp */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

/* Cards com Sombra e Transição Refinada em Laranja Âmbar */
.product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px -6px rgba(217, 93, 30, 0.12);
  border-color: #D95D1E;
}