
.left_part{
     flex-grow: 20;
     max-width: 70%;

   }
   .right_part{
     flex-grow: 0;
     height:100%;
     align-items: start;
     justify-items: start;
     align-content: start;
     justify-content: start;
     position: sticky;
     top:9rem;
   }
   .cart_container{
       display: flex;
       justify-content: space-evenly;
       flex-wrap: wrap;
       
   }
   .right_part_item{
     justify-content: space-between;
   }

   .product_image{
     width:50%;
   }



   .sidebar {
 flex: 0 0 260px;
 background: #fff;
 border-radius: 12px;
 box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.sidebar h3 {
 margin-top: 0;
 font-size: 1.2rem;
 margin-bottom: 1rem;
}

.filter-group {
 margin-bottom: 1.5rem;
}

.filter-group label {
 display: block;
 margin-bottom: 0.5rem;
 font-weight: 500;
}

.filter-group input,
.filter-group select {
 width: 100%;
 padding: 0.5rem;
 border-radius: 8px;
 border: 1px solid #ccc;
}

.filter-group button {
 margin-top: 0.5rem;
 width: 100%;
 background-color: #0077cc;
 color: white;
 border: none;
 padding: 0.75rem;
 border-radius: 8px;
 cursor: pointer;
 transition: background 0.3s;
}

.filter-group button:hover {
 background-color: #005fa3;
}




@media (max-width: 600px) {
 .right_part{
   position: relative;
 }
 .cart_container{
   gap:10rem;
 }
 .left_part{
   max-width: 100%;
   padding:0px;
 }
}


