/* products.css - Additional styles for Products list page */

.products-layout {
  display: flex;
  gap: 40px;
  padding: 60px 0;
}

.sidebar {
  flex: 0 0 220px;
}

.sidebar h4 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  display: block;
  padding: 8px 12px;
  background: #f5f7fa;
  border-radius: 4px;
  color: #2c3e50;
  font-weight: 500;
}

.category-list a:hover {
  background: #e74c3c;
  color: white;
  text-decoration: none;
}

.products-main {
  flex: 1;
}

.product-grid {
  margin-bottom: 50px;
}

.product-grid h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  border-left: 4px solid #e74c3c;
  padding-left: 10px;
}

.product-card {
  background: white;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.product-card h4 a {
  color: #2c3e50;
}

.product-card h4 a:hover {
  color: #e74c3c;
  text-decoration: none;
}

.product-card p {
  margin: 0;
  color: #7f8c8d;
  font-size: 14px;
}

@media (max-width: 768px) {
  .products-layout {
    flex-direction: column;
  }

  .sidebar {
    flex: 1;
    margin-bottom: 30px;
  }
}