.pkf-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 768px) {
    .pkf-products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.pkf-product {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    background: #fff;
    border-radius: 6px; /* Rounded corners */
    transition: all 0.3s ease; /* Smooth transition for the hover effect */
    box-shadow: none; /* Default state without shadow */
}

.pkf-product:hover {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

.pkf-product img {
    max-width: 100%;
    height: auto;
}

.pkf-product h3 {
    font-size: 16px;
}