.plantila-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.plantila-product {
    width: 23%;
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: center;
    background-color: #fff;
    padding: 15px;
    transition: transform 0.3s ease;
}

.plantila-product a {
    text-decoration: none;
    color: inherit;
}

.plantila-product:hover {
    transform: translateY(-10px);
    border: 1px solid #e1e1e1;
}

.plantila-product .product-image {
    height: 200px;
    overflow: hidden;
}

.plantila-product .product-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.plantila-product h2 {
    font-size: 1em;
    margin: 10px 0;
    min-height: 68px;
}

.plantila-product .price {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 0px;
    display: block;
}

.plantila-product .buy-now {
    background-color: #fff;
    color: #222;
    padding: 0px;
    line-height: 10px;
}

@media (max-width: 768px) {
    .plantila-product {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .plantila-product {
        width: 100%;
    }
}

/* Editor Styles */
.products-in-article-notice {
    padding: 15px;
    background: #f8f9fa;
    border: 1px dashed #ccc;
    text-align: center;
}