
/* PAGE */
.products-page {
  background: #ffffff;
  padding: 40px 20px;
}

.products-content {
  max-width: 1300px;
  margin: auto;
}

/* CENTERED TITLE */
.page-title {
  text-align: center;
  color: #E9762B;
}

.page-title {
  font-size: 30px;
  margin-bottom: 10px;
}

/* FILTER BAR */
.filter-sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.filters-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.filters-right {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.filter-group label {
  margin-bottom: 6px;
  color: #caa34d;
  font-size: 13px;
}

.filter-group select {
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  min-width: 160px;
}

.filter-group select:focus
 {
  outline: none;
  border-color: #000;
}

/* GRID - 4 COLUMN */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* PRODUCT CARD */
.product-card {
  text-decoration: none;
  color: #000;
  display: block;
}

.product-inner {
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 15px;
  transition: all 0.25s ease;
  background: #fff;
}

.product-inner:hover {
  border-color: #ccc;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* IMAGE */
.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 15px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-inner:hover img {
  transform: scale(1.05);
}

/* NAME */
.product-name {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* PRICE */
.product-price {
  font-weight: 600;
  font-size: 14px;
}

/* PAGINATION */
.static-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.static-pagination a {
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.static-pagination a.active {
  background: #E9762B;
  color: #fff;
  border-color: #E9762B;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .filter-sort-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filters-right {
    justify-content: space-between;
  }
}
