/* Grid mode */
.wc-product-table-wrapper.is-grid table.wc-product-table {
    display: block;
}

.wc-product-table-wrapper.is-grid table.wc-product-table thead {
    display: none;
}

.wc-product-table-wrapper.is-grid table.wc-product-table tbody {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.wc-product-table-wrapper.is-grid table.wc-product-table tbody tr {
    display: block;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
}

.wc-product-table-wrapper.is-grid table.wc-product-table tbody td {
    display: block;
    margin-bottom: 8px;
}

.wc-product-table-wrapper.is-grid table.wc-product-table tbody td:last-child {
    margin-bottom: 0;
}