.box-product-block {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 10px;
    margin-top: 10px;
}

.box-product-block ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.box-product-block .box-item {
    flex: 1 1 calc(33.333% - 20px);
    /*background-color: #f9f9f9;*/
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.box-product-block .box-item a {
    display: flex;
    text-decoration: none;
    color: inherit;
    padding: 20px;
    height: 100%;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.box-product-block .box-item:hover {
    transform: translateY(-5px);
}

.box-product-block .box-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.box-product-block .box-img {
    display: block;
    margin-bottom: 10px;
    height: 80px; 
    overflow: hidden;
    border-radius: 5px;
}

.box-product-block .box-img img {
    width: auto; 
    height: 100%;
    /*filter: grayscale(100%);*/
}

.box-product-block .box-img img:hover {
    filter: none;
    filter: grayscale(100%);
}

.box-product-block .box-description {
    font-size: 0.9em;
    color: #555;
    text-align: center;
}


@media (max-width: 768px) {
    .box-product-block .box-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .box-product-block .box-item {
        flex: 1 1 100%;
    }
}