* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: 'Roboto', sans-serif;
}
  
.container-box {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
  
.box {
    flex: 1;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    background: linear-gradient(135deg, #a1c4fd, #c2e9fb); 
    color: #fff;
}
  
.box2 {
    flex: 2;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    background: linear-gradient(135deg, #a1c4fd, #c2e9fb); 
    color: #fff;
}
  
.productItem {
    width: calc(50% - 20px); 
    padding: 10px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    vertical-align: top;
}
  
.productItem img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
}
  
button {
    padding: 15px;
    background: linear-gradient(45deg, #ff416c, #ff4b2b); 
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 10px; 
    transition: 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

button:hover {
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    box-shadow: 0 8px 15px rgba(255, 75, 43, 0.4);
}
  
@media (max-width: 768px) {
    .productItem {
        width: calc(100% - 20px); 
    }

 
}
@media (max-width: 768px) {
    .box img  {
        width: calc(100% - 20px); 
    }

 
}
  
.filter-sort {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.user h5{
    font-size: 35px;
    color: #000;
}


.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
  
.search-box input {
    width: 300px;
}
  
@media (max-width: 768px) {
    .search-box input {
        width: 100%;
    }
}
