#products-container a, #products-container a:visited {
    color: #333;
}

#products-container a:hover {
    color: #f56734;
}

#products-container h3 {
    margin: 0 0 15px 0;
}

#products-container .product img {
    width: 100%;
    max-width: 250px; 
    height: 250px; 
    object-fit: cover; 
    object-position: center; 
    display: block;
    margin: 0 auto 20px auto;
    box-sizing: border-box;
    transition: transform 0.3s ease; 
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: center;
    padding: 10px; 
    box-sizing: border-box;
}

.product {
    width: calc(33.333% - 45px);
    text-align: center;
    display: none;
    overflow: hidden;
    padding: 15px;
	background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product[data-visible="true"] {
    display: block;
}


@media (max-width: 768px) {
    .product {
        flex: 1 0 100%; 
    }
    #products-container .product img {
        max-width: 250px; 
        height: 250px; 
        object-fit: cover;
        object-position: center;
    }
}