.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.producto {
    background-color: white;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.2s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.producto:hover {
    transform: translateY(-5px);
}

.producto img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

.producto h3 {
    font-size: 18px;
    margin: 10px 0;
}

.producto .precio {
    font-weight: bold;
    color: #28a745;
    margin: 5px 0;
}

.producto .comprar {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.producto .comprar:hover {
    background-color: #218838;
}

@media (max-width: 768px) {
    .productos-grid {
        grid-template-columns: 1fr;
    }

    .producto {
        max-width: 100%;
        margin: 0 auto;
    }

    .producto img {
        height: auto;
        max-height: 200px;
    }
}

