.products-page{
  display: flex;
  margin-bottom: 30px;
}
.vertical-menu {
  width: 250px;
}

.vertical-menu a {
  border: 1px solid;
  border-radius: 10px;
  color: black;
  display: block;
  padding: 12px;
  text-decoration: none;
  margin-bottom: 5px;
}

.vertical-menu a:hover {
  background-color: #ccc;
}

.vertical-menu a.active {
  background-color: gold;
  color: green;
}
.category-filter{
 width: 20%; 
 padding: 1rem;  
}

.product-list{
  width: 60%; 
  padding: 1rem;
   display: flex; 
   flex-direction: column;
}

 .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}


.product-card {
  width: 250px;
  height: 460px;
  border: 1px solid #ccc;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  background: #fdfdfd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: border 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.02); /* optional, pentru efect vizual ușor */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}


.product-card img {
  max-width: 100%;
  height: 50%;
  border-radius: 4px;
}

.right-sidebar{
  width: 20%;

}


