body {
    font-family: Arial, sans-serif;
}
#categoriesContainer{
    display:flex;
    flex-direction:column;

}

.category-section {
    margin:10px 0px;
    padding: 6px 0px;
        background-color: rgb(190,190,190);

}

.category-header {
    display: flex;
    background-color:white;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
    padding:10px;
    
}

h3 {
    background-color:white;
}

.show-more-link {
    background-color:white;
    text-decoration: none;
    color: #007bff;
}

.show-more-link:hover {
    color: coral;
}

.product-container {
    padding:10px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    
    margin:5px 0;
    background-color:white;
    align-items:center;
    justify-content:flex-start;
}

.product-card {
    margin:10px;
    border: 1px solid #ddd;
    padding: 10px;
    width: 200px;
    height:250;
    text-align: center;
    cursor: pointer;
    overflow:hidden;
    background-color:white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.product-card:hover > .product-image{
    transform: scale(1.02);
}

.product-card h4 {
    background-color: white;
    width: 200px;
}

.product-card p {
    background-color: white;
    width: 200px;
}

.product-image {
    background-color: white;
    width: 200px;
    height: 200px;
    object-fit: contain;
}

@media only screen and (max-width: 768px) {
  .product-container {
    padding:10px;
    display: flex;
    flex-wrap: wrap;
    margin:10px;
    /*background-color:white;*/
    align-items:center;
    justify-content:center;
}
}