.agro-romeral-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
}

.agro-romeral-grid-item {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Sistema de columnas */
.agro-col-1 { width: 100%; }
.agro-col-2 { width: calc(50% - 15px); }
.agro-col-3 { width: calc(33.333% - 20px); }
.agro-col-4 { width: calc(25% - 22.5px); }

/* Responsividad para móviles */
@media (max-width: 992px) {
    .agro-col-3, .agro-col-4 {
        width: calc(50% - 15px);
    }
}
@media (max-width: 576px) {
    .agro-col-2, .agro-col-3, .agro-col-4 {
        width: 100%;
    }
}

/* Tarjeta de Producto - Diseño Limpio y Moderno */
.agro-romeral-grid-item .agro-romeral-content {
    background-color: #ffffff;
    padding: 30px 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agro-romeral-grid-item:hover .agro-romeral-content {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.agro-romeral-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.agro-romeral-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.agro-romeral-grid-item:hover .agro-romeral-img {
    transform: scale(1.05);
}

.agro-romeral-no-img {
    color: #999;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agro-romeral-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.35em;
    font-weight: 700;
    color: #222222;
    letter-spacing: -0.5px;
}

.agro-romeral-desc {
    margin-bottom: 25px;
    color: #555555;
    font-size: 0.95em;
    line-height: 1.6;
    flex-grow: 1;
}

/* Botón estilo "CONTÁCTENOS" de la imagen */
.agro-romeral-btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: auto;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.agro-romeral-btn:hover {
    background-color: #0b4e0f !important; /* Un verde un poco más oscuro al pasar el mouse, !important para asegurar que pise a Elementor si es necesario en hover */
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(11, 78, 15, 0.3);
}

.agro-romeral-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #cccccc !important;
    box-shadow: none;
}

/* Filtros Frontend */
.agro-romeral-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.agro-filter-btn {
    background-color: #f1f1f1;
    color: #333333;
    border: none;
    padding: 10px 20px;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.agro-filter-btn:hover {
    background-color: #e0e0e0;
}

.agro-filter-btn.active {
    background-color: #0f6b14;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(15, 107, 20, 0.2);
}

