@media (max-width: 1024px) {
    .zk-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zk-grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zk-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .zk-grid--2,
    .zk-grid--3,
    .zk-grid--4,
    .zk-product-grid {
        grid-template-columns: 1fr;
    }

    .zk-card {
        padding: 18px;
    }

    .zk-product-info-table,
    .zk-product-info-table tbody,
    .zk-product-info-table tr,
    .zk-product-info-table th,
    .zk-product-info-table td {
        display: block;
        width: 100%;
    }

    .zk-product-info-table th {
        padding-bottom: 4px;
    }

    .zk-product-info-table td {
        padding-top: 0;
    }
}