#navToggle {
  display: none !important;
}

@media (max-width: 767.98px) {
  .navbar-collapse {
    display: none;
    flex-basis: 100%;
    flex-grow: 1;
    padding-top: 0.5rem;
  }

  #navToggle:checked ~ .navbar-collapse {
    display: block;
  }

  .navbar-collapse .navbar-nav {
    flex-direction: column;
    gap: 0;
  }
}

/* Sorting/filter inputs removed so the buttons remain visible but do nothing. */

.site-logo {
  max-height: 56px;
  width: auto;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid #198754;
  border-radius: 0.375rem;
  color: #198754;
  background: transparent;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
  user-select: none;
  text-decoration: none;
}

.filter-btn:hover {
  background-color: #198754;
  color: #fff;
}

.product-card {
  transition: none;
}

.product-card:hover {
  transform: none;
  box-shadow: none !important;
}

.product-card img {
  transition: none;
}

.product-card:hover img {
  transform: none;
}
