/* PAGINAÇÃO RESPONSIVA */
.pagination, .paginacao {
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 20px 0;
}
.pagination li, .paginacao li {
  display: inline-block;
}
.pagination a, .paginacao a {
  padding: 8px 12px;
  background-color: #fce8f1;
  color: #333;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
}
.pagination a:hover {
  background-color: #f9bcd0;
}
@media (max-width: 768px) {
  .pagination, .paginacao {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    white-space: nowrap;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .pagination li, .paginacao li {
    flex: 0 0 auto;
  }

  .pagination a, .paginacao a {
    min-width: 36px;
    text-align: center;
    font-size: 13px;
  }
}
/* BOTÃO DO WHATSAPP */
#whatsapp-button, .whatsapp-button {
  position: fixed !important;
  bottom: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* GRID DE PRODUTOS */
.produto-item {
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: transform 0.2s;
}
.produto-item:hover {
  transform: scale(1.02);
  border-color: #f9bcd0;
}
.produto-item .nome-produto,
.produto-item .preco-produto {
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* BOTÕES DE AÇÃO */
.botao, .botao-comprar {
  background-color: #f9bcd0 !important;
  color: #333 !important;
  border-radius: 20px !important;
  font-weight: bold;
  padding: 10px 20px !important;
  transition: all 0.3s ease-in-out;
}
.botao:hover, .botao-comprar:hover {
  background-color: #f48aa2 !important;
  color: white !important;
}

/* ETIQUETAS VISUAIS (você pode adicionar em HTML depois com classes) */
.selo-venda {
  background-color: #fce8f1;
  color: #d6336c;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 6px;
  z-index: 10;
}

/* RODAPÉ E ÍCONES DE SEGURANÇA */
footer {
  background-color: #fafafa;
  padding: 20px 0;
  font-size: 13px;
}
footer .formas-pagamento img,
footer .redes-sociais img {
  max-width: 36px;
  margin: 0 5px;
}
.pagination a.active, .paginacao a.active {
  background-color: #d6336c !important;
  color: #fff !important;
  font-weight: bold;
  border: 1px solid #d6336c;
}