.products-hero {
  background: var(--navy);
}
.catalog-section {
  padding: 3rem 1.5rem 5rem;
}
.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.category-dropdown-wrapper {
  flex: 1;
  max-width: 300px;
}
.professional-select {
  width: 100%;
  padding: 0.7rem 2.5rem 0.7rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238B929A' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.professional-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(153, 112, 0, 0.08);
}

.search-bar {
  position: relative;
  flex: 1;
  max-width: 350px;
}
.search-bar input {
  padding: 0.7rem 2.5rem 0.7rem 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  background: var(--white);
}
.search-bar input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(153, 112, 0, 0.08);
}
.search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--gray-400);
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.product-image {
  height: 180px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.product-short {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
  flex: 1;
}
.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.product-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-400);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}
.product-rating .stars {
  color: #f39c12;
}
.product-rating .rating-count {
  color: var(--gray-400);
  font-size: 0.75rem;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}
.product-actions .btn {
  flex: 1;
  padding: 0.5rem 0.5rem;
  font-size: 0.8rem;
}
.no-results {
  text-align: center;
  padding: 3rem;
  color: var(--gray-400);
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .category-dropdown-wrapper,
  .search-bar {
    max-width: none;
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
