
.container-product {
  display: flex;
  padding: 30px;
}

/* Sidebar */
.sidebar {
  width: 260px;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}

.sidebar h2 {
  margin-bottom: 20px;
  font-size: 18px;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h4 {
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  color: #777;
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  cursor: pointer;
}

.filter-group input[type="checkbox"] {
  margin-right: 6px;
}

.filter-group input[type="range"] {
  width: 100%;
}

/* Products Section */
.products {
  flex: 1;
  margin-left: 30px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 6px;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.card h3 {
  margin: 10px 0 5px;
  font-size: 16px;
}

.price {
  color: #e63946;
  font-weight: bold;
  margin-bottom: 8px;
}

.category {
  font-size: 13px;
  color: #777;
}

button.add-cart {
  margin-top: 10px;
  padding: 8px 15px;
  border: none;
  background: #ff6b00;
  color: white;
  cursor: pointer;
  border-radius: 4px;
}
