    .custom-product-grid-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        height: fit-content;
    }
    .custom-product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
        padding: 1rem 0;
    }
    .custom-pagination {
        display: flex;
        justify-content: flex-end;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .pagination-button {
        padding: 0.4rem 0.75rem;
        background: #eee;
        border-radius: 4px;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: background 0.2s ease;
    }

    .pagination-button:hover {
        background: #ddd;
    }

    .pagination-button.active {
        background: #333;
        color: #fff;
    }
    @media only screen and (max-width: 600px) {
        .custom-product-grid-container {
            align-items: center;
            font-size: 1.25rem;
        }
        .custom-product-grid {
            display: grid;
            grid-template-columns: 1fr;
        }
        .custom-product-card {
            max-width: 100% !important;
            width: 100%;
        }
    }