/* TekToner - estilos complementares (ícones, utilidades que não vêm do bundle Tailwind original) */

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

.mobile-nav {
  display: none;
}
.mobile-nav.open {
  display: block;
}

.star-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.product-card[data-hidden="true"] {
  display: none !important;
}

.filter-pill.active {
  background: linear-gradient(to right, #009DD8, #0077b3);
  color: #fff;
  border-color: transparent;
}

#toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: #111827;
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
#toast.show {
  transform: translateY(0);
  opacity: 1;
}
