* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
}
 
.search-sort-filter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.search-sort-filter input,
.search-sort-filter select {
    padding: 10px;
    font-size: 16px;
    width: 30%;
    border: 1px solid #ccc;
    border-radius: 5px;
}
 
#product {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-box img {
    width: 60%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.title{
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-style: italic;
    font-weight:bold;
}

h3 {
    margin: 10px 0;
    /* color: #333; */
    font-weight: 200;
}

.searchBTN{
    position: relative;
    left: -1%;
    padding: 10px 15px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer; 

}

.abc{
    display: block;
    margin: 10px 0;
}