/* === FILTER & PRODUCT SECTION STYLING === */

/* Filter inputs */
#sort-by, #price-filter, #search, #showing {
  border-radius: 6px;
  border: 1px solid #ced4da;
  font-size: 15px;
}

/* Search input spacing */
#search {
  padding-left: 10px;
}

/* Label styling */
.form-label {
  font-size: 14px;
  color: #495057;
  text-align: left;
  display: block;
  margin-bottom: 5px;
}

/* Make sure labels don't shift right */
.col-md-3, .col-md-4, .col-md-2 {
  text-align: left;
}

/* Product Card Enhancements */
.product-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.product-item img {
  max-height: 200px;
  object-fit: contain;
}

/* Responsive filter bar */
@media (max-width: 768px) {
  .row.align-items-end.g-3 > div {
    text-align: center;
  }
  .form-label {
    text-align: center;
  }
}

